/* ============================================================
   SERVICES PAGE — Luxury Hero Section
   ============================================================ */

/* ── Primary header: truly centre the nav links on services page ── */
body.has-subnav .header__container {
  justify-content: space-between; /* keep logo left, toggle right */
  position: relative;
}

body.has-subnav .header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Mobile: revert to normal flow */
@media (max-width: 768px) {
  body.has-subnav .header__nav {
    position: static;
    transform: none;
  }
}

/* ── Secondary Navigation ────────────────────────────────── */
.services-subnav {
  position: fixed;
  top: 80px;               /* sits flush below the 80px primary header */
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-light);
}

.services-subnav__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.services-subnav__link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  position: relative;
  transition: color 0.25s ease;
}

/* Active-highlight underline */
.services-subnav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.services-subnav__link:hover {
  color: var(--color-accent);
}

.services-subnav__link:hover::after,
.services-subnav__link.is-active::after {
  width: calc(100% - 56px);   /* matches the horizontal padding */
}

.services-subnav__link.is-active {
  color: var(--color-accent);
}

/* Push the services hero down to clear both fixed headers
   Primary header: 80px  +  subnav: 44px  =  124px total fixed chrome
   Original hero padding-top was 120px, so bump to 164px             */
body.has-subnav .portfolio-hero {
  padding-top: 164px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .services-subnav__container {
    padding: 0 16px;
    overflow-x: auto;
    gap: 0;
    /* hide scrollbar but keep scrollable */
    scrollbar-width: none;
  }
  .services-subnav__container::-webkit-scrollbar {
    display: none;
  }
  .services-subnav__link {
    font-size: 0.72rem;
    padding: 12px 16px;
    white-space: nowrap;
  }
}

/* ── Font Scale (5 sizes only) ────────────────────────────────
   XL  clamp(2.5rem, 5vw, 4rem)      — Section hero titles (CFO/CRO/CHRO h2)
   LG  clamp(1.75rem, 3vw, 2.5rem)   — Client profile titles, message text
   MD  clamp(1.25rem, 2vw, 1.75rem)  — Sub-headings, subtitles, KPI values,
                                        cases/services section titles
   SM  1rem                           — Card/category titles, body text,
                                        nav descriptions, feature text
   XS  0.8rem                         — Labels, notes, meta text, stage/flow
   ─────────────────────────────────────────────────────────── */

/* ── Services hero tagline override (3× portfolio size) ───── */
#services-hero .portfolio-hero__tagline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

/* ── Services Hero Section ────────────────────────────────── */
.services-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

/* Background Layers */
.services-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.services-hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 30% 40%, 
    rgba(255, 130, 134, 0.08) 0%, 
    transparent 60%
  ),
  radial-gradient(
    ellipse at 70% 60%, 
    rgba(255, 130, 134, 0.05) 0%, 
    transparent 60%
  );
  animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

.services-hero__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.01) 2px,
      rgba(255, 255, 255, 0.01) 4px
    );
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}

/* Decorative Elements */
.services-hero__deco {
  position: absolute;
  border: 1px solid rgba(255, 130, 134, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.services-hero__deco--1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -100px;
  animation: float1 20s ease-in-out infinite;
}

.services-hero__deco--2 {
  width: 300px;
  height: 300px;
  bottom: 15%;
  right: -80px;
  animation: float2 18s ease-in-out infinite;
}

.services-hero__deco--3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 10%;
  animation: float3 22s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.5;
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-40px, 40px) scale(1.15);
    opacity: 0.6;
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translate(-25px, -35px) scale(1.2);
    opacity: 0.45;
  }
}

/* Container */
.services-hero__container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 120px 60px;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.services-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 56px;
}

/* Label */
.services-hero__label {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards 0.3s;
}

.services-hero__label-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 130, 134, 0.6) 50%,
    transparent 100%
  );
  animation: lineExpand 1.5s ease forwards 0.5s;
}

.services-hero__label-text {
  font-family: var(--font-cardo);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 130, 134, 0.9);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

@keyframes lineExpand {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

/* Title */
.services-hero__title {
  font-family: var(--font-mincho);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-hero__title-line {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

.services-hero__title-line:nth-child(1) {
  animation: titleSlideIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.6s;
}

.services-hero__title-line:nth-child(2) {
  animation: titleSlideIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.9s;
}

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

/* Glowing text effect */
.services-hero__title-line::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 130, 134, 0.8),
    rgba(255, 130, 134, 0.4),
    rgba(255, 130, 134, 0.8)
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% {
    opacity: 0;
    background-position: 0% 50%;
  }
  50% {
    opacity: 0.4;
    background-position: 100% 50%;
  }
}

/* Scroll Indicator */
.services-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 1.2s;
  z-index: 20;
}

.services-hero__scroll-text {
  font-family: var(--font-cardo);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.services-hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(
    to bottom,
    rgba(255, 130, 134, 0.6),
    transparent
  );
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(15px);
    opacity: 0.3;
  }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 968px) {
  .services-hero__container {
    padding: 0 40px 100px 40px;
  }

  .services-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
  }

  .services-hero__label-line {
    width: 40px;
  }

  .services-hero__deco--1 {
    width: 300px;
    height: 300px;
  }

  .services-hero__deco--2 {
    width: 200px;
    height: 200px;
  }

  .services-hero__deco--3 {
    display: none;
  }

  .services-hero__scroll {
    bottom: 30px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    min-height: 90vh;
  }

  .services-hero__container {
    padding: 0 24px 80px 24px;
  }

  .services-hero__content {
    gap: 36px;
  }

  .services-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    gap: 8px;
  }

  .services-hero__label {
    gap: 16px;
  }

  .services-hero__label-line {
    width: 30px;
  }

  .services-hero__label-text {
    font-size: 0.8rem;
  }

  .services-hero__scroll {
    bottom: 24px;
  }

  .services-hero__scroll-line {
    height: 40px;
  }

  .services-hero__deco--1,
  .services-hero__deco--2 {
    display: none;
  }
}

@media (max-width: 600px) {
  .services-hero__title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }

  .services-hero__scroll {
    bottom: 20px;
  }

  .services-hero__scroll-text {
    font-size: 0.8rem;
  }

  .services-hero__scroll-line {
    height: 35px;
  }
}

/* ── Client Profiles Section ──────────────────────────────── */
.client-profiles {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  padding: 0;
  overflow: hidden;
}

.client-profiles__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  min-height: 700px;
}

/* Individual Profile Card */
.client-profile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Startup - Left Side */
.client-profile[data-profile="startup"] {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.client-profile[data-profile="startup"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 130, 134, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Enterprise - Right Side */
.client-profile[data-profile="enterprise"] {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.client-profile[data-profile="enterprise"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 130, 134, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Content Container */
.client-profile__content {
  position: relative;
  z-index: 10;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header Section */
.client-profile__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.client-profile__number {
  font-family: var(--font-cardo);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-profile[data-profile="startup"] .client-profile__number {
  color: rgba(255, 255, 255, 0.7);
}

.client-profile[data-profile="enterprise"] .client-profile__number {
  color: rgba(255, 255, 255, 0.4);
}

.client-profile__title {
  font-family: var(--font-cardo);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.client-profile[data-profile="startup"] .client-profile__title {
  color: #ffffff;
}

.client-profile[data-profile="enterprise"] .client-profile__title {
  color: #ffffff;
}

.client-profile__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.client-profile[data-profile="startup"] .client-profile__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.client-profile[data-profile="enterprise"] .client-profile__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Message Section */
.client-profile__message {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.client-profile__text {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin: 0;
  white-space: nowrap;
}

.client-profile[data-profile="startup"] .client-profile__text {
  color: rgba(255, 255, 255, 0.9);
}

.client-profile[data-profile="enterprise"] .client-profile__text {
  color: #ffffff;
}

/* CTA Button */
.client-profile__cta {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.client-profile__button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border: 1px solid;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.client-profile[data-profile="startup"] .client-profile__button {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.client-profile[data-profile="enterprise"] .client-profile__button {
  border-color: rgba(255, 255, 255, 0.15);
  background: transparent;
}

.client-profile__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.client-profile[data-profile="startup"] .client-profile__button::before {
  background: rgba(255, 130, 134, 1);
}

.client-profile[data-profile="enterprise"] .client-profile__button::before {
  background: rgba(255, 130, 134, 1);
}

.client-profile__button:hover::before {
  width: 100%;
}

.client-profile__button-text {
  font-family: var(--font-cardo);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.client-profile[data-profile="startup"] .client-profile__button-text {
  color: rgba(255, 255, 255, 0.9);
}

.client-profile[data-profile="enterprise"] .client-profile__button-text {
  color: #ffffff;
}

.client-profile__button:hover .client-profile__button-text {
  color: #ffffff;
}

.client-profile__button-arrow {
  font-size: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
}

.client-profile[data-profile="startup"] .client-profile__button-arrow {
  color: rgba(255, 130, 134, 1);
}

.client-profile[data-profile="enterprise"] .client-profile__button-arrow {
  color: rgba(255, 130, 134, 1);
}

.client-profile__button:hover .client-profile__button-arrow {
  transform: translateX(5px);
  color: #ffffff;
}

/* Overlay & Glow Effects */
.client-profile__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.client-profile[data-profile="startup"] .client-profile__overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 130, 134, 0.05) 0%,
    transparent 50%
  );
}

.client-profile[data-profile="enterprise"] .client-profile__overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 130, 134, 0.12) 0%,
    transparent 50%
  );
}

.client-profile:hover .client-profile__overlay {
  opacity: 1;
}

.client-profile__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.client-profile[data-profile="startup"] .client-profile__glow {
  background: rgba(255, 130, 134, 0.15);
  bottom: -100px;
  right: -100px;
}

.client-profile[data-profile="enterprise"] .client-profile__glow {
  background: rgba(255, 130, 134, 0.2);
  top: -100px;
  left: -100px;
}

.client-profile:hover .client-profile__glow {
  opacity: 1;
}

/* Hover Scale Effect */
.client-profile:hover {
  transform: scale(1.02);
}

/* Visible Animation Classes */
.client-profile.fade-in.is-visible .client-profile__number,
.client-profile.fade-in.is-visible .client-profile__title,
.client-profile.fade-in.is-visible .client-profile__subtitle,
.client-profile.fade-in.is-visible .client-profile__message,
.client-profile.fade-in.is-visible .client-profile__cta {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 968px) {
  .client-profiles__container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .client-profile {
    min-height: 70vh;
    padding: 60px 40px;
  }

  .client-profile__content {
    max-width: 100%;
    gap: 32px;
  }

  .client-profile__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
  }

  .client-profile__text {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  }
}

@media (max-width: 768px) {
  .client-profile {
    min-height: 60vh;
    padding: 50px 24px;
  }

  .client-profile__content {
    gap: 28px;
  }

  .client-profile__header {
    gap: 16px;
  }

  .client-profile__button {
    padding: 14px 28px;
    gap: 12px;
  }

  .client-profile__button-text {
    font-size: 0.8rem; /* XS */
  }
}

@media (max-width: 600px) {
  .client-profile {
    min-height: 55vh;
  }

  .client-profile__title {
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  .client-profile__text {
    font-size: clamp(1rem, 3vw, 1.4rem);
  }

  .client-profile__button {
    width: 100%;
    justify-content: center;
  }
}

/* ── Service Features Section ──────────────────────────────── */
.service-features {
  position: relative;
  width: 100%;
  background: var(--color-white);
  padding: 120px 0;
  overflow: hidden;
}

.service-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Header */
.service-features__header {
  text-align: center;
  margin-bottom: 80px;
}

.service-features__label {
  font-family: var(--font-cardo);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-features__title {
  font-family: var(--font-cardo);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 12px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.service-features__subtitle {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--color-gray-dark);
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

/* Content */
.service-features__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.service-features__description {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 56px;
  background: linear-gradient(135deg, var(--color-bg) 0%, #ffffff 100%);
  border-left: 3px solid var(--color-accent);
  position: relative;
}

.service-features__description::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 130, 134, 0.02) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.service-features__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Visual Items */
.service-features__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0;
}

.service-features__visual-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-width: 180px;
}

.service-features__visual-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--color-accent);
  z-index: 10;
}

.service-features__visual-number {
  font-family: var(--font-cardo);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  line-height: 1;
}

.service-features__visual-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
}

/* Connector Line */
.service-features__visual-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--color-gray-mid) 0%,
    var(--color-accent) 50%,
    var(--color-gray-mid) 100%
  );
  position: relative;
}

.service-features__visual-connector::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* Domain Navigation */
.service-features__navigation {
  margin-top: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-features__navigation.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-features__nav-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 48px 0;
}

.service-features__nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-features__nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  padding: 48px 32px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.service-features__nav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 130, 134, 0.03) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-features__nav-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-accent);
}

.service-features__nav-card:hover::before {
  opacity: 1;
}

.service-features__nav-label {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.12em;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 2;
}

.service-features__nav-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-gray-dark);
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin: 0 0 24px 0;
  position: relative;
  z-index: 2;
}

.service-features__nav-arrow {
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}

.service-features__nav-card:hover .service-features__nav-arrow {
  transform: translateX(8px);
}

/* Visible Animation Classes */
.service-features__header.fade-in.is-visible .service-features__label,
.service-features__header.fade-in.is-visible .service-features__title,
.service-features__header.fade-in.is-visible .service-features__subtitle,
.service-features__content.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 968px) {
  .service-features {
    padding: 100px 0;
  }

  .service-features__container {
    padding: 0 40px;
  }

  .service-features__header {
    margin-bottom: 60px;
  }

  .service-features__content {
    gap: 48px;
  }

  .service-features__description {
    padding: 36px 32px;
  }

  .service-features__visual {
    gap: 0;
  }

  .service-features__visual-item {
    min-width: 140px;
    padding: 24px 16px;
  }

  .service-features__visual-number {
    font-size: 1.75rem;
  }

  .service-features__visual-label {
    font-size: 0.8rem; /* XS */
  }

  .service-features__visual-connector {
    width: 40px;
  }

  .service-features__navigation {
    margin-top: 60px;
  }

  .service-features__nav-grid {
    gap: 24px;
  }

  .service-features__nav-card {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .service-features {
    padding: 80px 0;
  }

  .service-features__container {
    padding: 0 24px;
  }

  .service-features__header {
    margin-bottom: 48px;
  }

  .service-features__content {
    gap: 40px;
  }

  .service-features__description {
    padding: 28px 24px;
  }

  .service-features__text {
    font-size: 1rem; /* SM */
    line-height: 1.9;
  }

  .service-features__visual {
    flex-direction: column;
    gap: 24px;
    padding: 32px 0;
  }

  .service-features__visual-item {
    width: 100%;
    min-width: auto;
    padding: 28px 24px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
  }

  .service-features__visual-number {
    font-size: 1.5rem;
  }

  .service-features__visual-label {
    font-size: 0.8rem; /* XS */
    text-align: left;
  }

  .service-features__visual-connector {
    width: 1px;
    height: 40px;
    background: linear-gradient(
      180deg,
      var(--color-gray-mid) 0%,
      var(--color-accent) 50%,
      var(--color-gray-mid) 100%
    );
  }

  .service-features__visual-connector::after {
    content: '↓';
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    top: auto;
  }

  .service-features__navigation {
    margin-top: 48px;
  }

  .service-features__nav-title {
    margin-bottom: 36px;
  }

  .service-features__nav-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-features__nav-card {
    padding: 32px 28px;
  }
}

@media (max-width: 600px) {
  .service-features__description {
    padding: 24px 20px;
  }

  .service-features__text {
    font-size: 1rem; /* SM */
    line-height: 1.85;
  }

  .service-features__visual-item {
    padding: 24px 20px;
  }

  .service-features__nav-card {
    padding: 28px 24px;
  }
}

/* ── CFO Section ──────────────────────────────────────────── */
.cfo-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 120px 0;
  overflow: hidden;
}

.cfo-section::before {
  display: none;
}

.cfo-section__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 10;
}

/* Header */
.cfo-section__header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cfo-section__header.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cfo-section__title {
  font-family: var(--font-mincho);
  font-size: clamp(2.5rem, 5vw, 4rem); /* XL */
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.12em;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.cfo-section__subtitle {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem); /* MD */
  font-weight: 400;
  color: var(--color-gray-dark);
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1.6;
}

/* KPI Grid */
.cfo-section__appeal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.cfo-section__appeal-grid.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cfo-section__appeal-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cfo-section__appeal-card:hover {
  background: #ffffff;
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(255, 130, 134, 0.12);
  transform: translateY(-8px);
}

.cfo-section__appeal-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gray);
  letter-spacing: 0.08em;
  margin: 0 0 16px 0;
}

.cfo-section__appeal-value {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.06em;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.cfo-section__appeal-note {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-gray);
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.5;
}

/* Services Section */
.cfo-section__services {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.cfo-section__services.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cfo-section__services-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 48px 0;
}

.cfo-section__services-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 32px;
}

.cfo-section__service-category {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 32px 28px;
  transition: all 0.4s ease;
}

.cfo-section__service-category:hover {
  background: #ffffff;
  border-color: rgba(255, 130, 134, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cfo-section__category-title {
  font-family: var(--font-mincho);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 130, 134, 0.3);
}

.cfo-section__service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cfo-section__service-list li {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-gray-dark);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.cfo-section__service-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* CFO Case Studies */
.cfo-section__cases {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
}

.cfo-section__cases.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cfo-section__cases-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 48px 0;
}

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

.cfo-section__case-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.cfo-section__case-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.cfo-section__case-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.cfo-section__case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cfo-section__case-card:hover .cfo-section__case-img {
  transform: scale(1.05);
}

.cfo-section__case-body {
  padding: 28px 24px;
}

.cfo-section__case-title {
  font-family: var(--font-mincho);
  font-size: 1rem; /* SM */
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.cfo-section__case-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-gray-dark);
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin: 0;
}

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

/* Diagram Section */
.cfo-section__diagram {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.cfo-section__diagram.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cfo-section__diagram-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cfo-section__diagram-title-en {
  font-family: var(--font-cardo);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.cfo-section__diagram-title-ja {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
}

/* ── Cover Stage image section ───────────────────────────── */
.cfo-section__cover-stage {
  margin-top: 80px;
}

.cfo-section__cover-stage-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}

.cfo-section__cover-stage-en {
  font-family: var(--font-cardo);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin: 0;
}

.cfo-section__cover-stage-ja {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  margin: 0;
}

.cfo-section__cover-stage-img-wrap {
  width: 100%;
  text-align: center;
}

.cfo-section__cover-stage-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: inline-block;
}

.cfo-section__stages {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cfo-section__stage {
  font-family: var(--font-cardo);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-gray);
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cfo-section__stage--active {
  color: var(--color-text);
  background: rgba(255, 130, 134, 0.15);
  border-color: var(--color-accent);
}

.cfo-section__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cfo-section__flow-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  min-width: 120px;
  text-align: center;
  transition: all 0.3s ease;
}

.cfo-section__flow-item:hover {
  background: rgba(255, 130, 134, 0.15);
  border-color: var(--color-accent);
}

.cfo-section__flow-item--exit {
  background: rgba(255, 130, 134, 0.1);
  border-color: var(--color-accent);
}

.cfo-section__flow-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-gray-dark);
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.cfo-section__flow-arrow {
  color: var(--color-accent);
  font-size: 1.25rem;
}

.cfo-section__process {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.cfo-section__process-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-gray-dark);
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.6;
}

.cfo-section__process-box--final {
  border-color: var(--color-accent);
}

.cfo-section__support {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  margin-top: 32px;
}

.cfo-section__support-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-gray);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cfo-section__appeal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cfo-section__services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cfo-section__flow {
    flex-direction: column;
    gap: 16px;
  }

  .cfo-section__flow-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .cfo-section {
    padding: 80px 0;
  }

  .cfo-section__container {
    padding: 0 24px;
  }

  .cfo-section__header {
    margin-bottom: 48px;
  }

  .cfo-section__appeal-grid {
    margin-bottom: 60px;
  }

  .cfo-section__services {
    margin-bottom: 60px;
  }

  .cfo-section__stages {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cfo-section__stage {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .cfo-section__flow-item {
    min-width: 100px;
    padding: 14px 16px;
  }

  .cfo-section__process {
    flex-direction: column;
    gap: 16px;
  }

  .cfo-section__support {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .cfo-section__appeal-card {
    padding: 28px 24px;
  }

  .cfo-section__service-category {
    padding: 24px 20px;
  }

  .cfo-section__flow-item {
    width: 100%;
  }
}

/* ── CRO Section ──────────────────────────────────────────── */
.cro-section {
  position: relative;
  width: 100%;
  background: var(--color-white);
  padding: 120px 0;
  overflow: hidden;
}

.cro-section__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Header */
.cro-section__header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cro-section__header.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cro-section__title {
  font-family: var(--font-mincho);
  font-size: clamp(2.5rem, 5vw, 4rem); /* XL */
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.12em;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.cro-section__subtitle {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.08em;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.cro-section__description {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-gray-dark);
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.8;
}

/* KPI */
.cro-section__kpi {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.cro-section__kpi.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cro-section__kpi-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--color-bg) 0%, #ffffff 100%);
  border: 2px solid var(--color-accent);
  padding: 36px 48px;
  text-align: center;
  position: relative;
}

.cro-section__kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 130, 134, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.cro-section__kpi-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 2;
}

.cro-section__kpi-value {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.08em;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* CRO Main Services */
.cro-section__services {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.cro-section__services.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cro-section__services-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 12px 0;
}

.cro-section__services-subtitle {
  font-family: var(--font-mincho);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 40px 0;
}

.cro-section__services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.cro-section__service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 36px 32px;
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.cro-section__service-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-6px);
  border-color: rgba(255, 130, 134, 0.5);
}

.cro-section__service-card-title {
  font-family: var(--font-mincho);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 130, 134, 0.3);
}

.cro-section__service-card-text {
  font-family: var(--font-sans);
  font-size: 1rem; /* SM */
  color: var(--color-gray-dark);
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin: 0;
}

@media (max-width: 768px) {
  .cro-section__services-grid {
    grid-template-columns: 1fr;
  }
}

/* Map */
.cro-section__map {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.cro-section__map.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cro-section__map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Features */
.cro-section__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 32px;
  justify-content: center;
  padding: 0 120px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.cro-section__features.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cro-section__feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-gray-light);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cro-section__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--color-accent);
}

.cro-section__feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1;
}

.cro-section__feature-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.9;
  margin: 0;
}

/* Case Studies */
.cro-section__cases {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.cro-section__cases.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cro-section__cases-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 48px 0;
}

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

.cro-section__case-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-mid);
  border-radius: 4px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cro-section__case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-accent);
}

.cro-section__case-title {
  font-family: var(--font-mincho);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}

.cro-section__case-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-gray-dark);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 0;
}

.cro-section__case-result {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 0;
  padding: 16px;
  background: var(--color-bg);
  border-left: 3px solid var(--color-accent);
}

.cro-section__cases-note {
  text-align: center;
  padding: 24px 0;
}

.cro-section__cases-note p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gray);
  letter-spacing: 0.08em;
  margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cro-section__features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cro-section__cases-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .cro-section {
    padding: 80px 0;
  }

  .cro-section__container {
    padding: 0 24px;
  }

  .cro-section__header {
    margin-bottom: 48px;
  }

  .cro-section__kpi {
    margin-bottom: 48px;
  }

  .cro-section__kpi-card {
    padding: 28px 32px;
  }

  .cro-section__map {
    margin-bottom: 48px;
  }

  .cro-section__features {
    margin-bottom: 60px;
  }

  .cro-section__feature-card {
    padding: 28px 24px;
  }

  .cro-section__case-card {
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .cro-section__kpi-card {
    padding: 24px 20px;
  }

  .cro-section__feature-icon {
    font-size: 2.5rem;
  }

  .cro-section__case-card {
    padding: 24px 20px;
  }

  .cro-section__case-result {
    padding: 12px;
  }
}

/* ============================================================
CHRO SECTION
============================================================ */

/* CHRO Main Services */
.chro-section__services {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.chro-section__services.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chro-section__services-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 48px 0;
}

.chro-section__services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.chro-section__service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 36px 32px;
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.chro-section__service-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-6px);
  border-color: rgba(255, 130, 134, 0.5);
}

.chro-section__service-card-title {
  font-family: var(--font-mincho);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin: 0 0 24px 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 130, 134, 0.3);
}

.chro-section__service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chro-section__service-list li {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-gray-dark);
  line-height: 1.9;
  letter-spacing: 0.03em;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chro-section__service-step {
  font-family: var(--font-mincho);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chro-section__service-step::before {
  content: '・';
  color: var(--color-accent);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .chro-section__services-grid {
    grid-template-columns: 1fr;
  }
}

/* CHRO Features */
.chro-section__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 32px;
  justify-content: center;
  padding: 0 120px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.chro-section__features.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chro-section__feature-title {
  font-family: var(--font-mincho);
  font-size: 1rem; /* SM */
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin: 0 0 12px 0;
}

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

.chro-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 120px 0;
  overflow: hidden;
}

.chro-section__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Header */
.chro-section__header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.chro-section__header.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chro-section__title {
  font-family: var(--font-mincho);
  font-size: clamp(2.5rem, 5vw, 4rem); /* XL */
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.12em;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.chro-section__subtitle {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.08em;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.chro-section__description {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-gray-dark);
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.8;
}

/* KPI */
.chro-section__kpi {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.chro-section__kpi.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chro-section__kpi-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--color-bg) 0%, #ffffff 100%);
  border: 2px solid var(--color-accent);
  padding: 36px 48px;
  text-align: center;
  position: relative;
}

.chro-section__kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 130, 134, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.chro-section__kpi-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 2;
}

.chro-section__kpi-value {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.08em;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Overview Image */
.chro-section__overview {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.chro-section__overview.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chro-section__overview-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Case Studies */
.chro-section__cases {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.chro-section__cases.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   COVER STAGE — redesigned diagram
   ═══════════════════════════════════════════════════════════ */
.cover-stage-section {
  background: #ffffff;
  padding: 40px 80px 30px;
  color: #2f2f2f;
  overflow: hidden;
}
.cover-stage-container {
  max-width: 960px;
  margin: 0 auto;
}
.cover-stage-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.cover-stage-headline .line {
  flex: 1;
  height: 1px;
  background: #e6e6e6;
  max-width: 460px;
}
.cover-stage-headline .line-dot {
  width: 12px;
  height: 12px;
  background: #d9d9d9;
  border-radius: 50%;
  flex-shrink: 0;
}
.cover-stage-headline h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #2a2a2a;
}
.stage-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 0 auto 28px;
  max-width: 1100px;
}
.stage-item {
  position: relative;
  background: #ff8286;
  color: #ffffff;
  text-align: center;
  padding: 18px 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid #ff8286;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 18px 50%);
  margin-left: -14px;
  z-index: 1;
}
.stage-item:first-child {
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
  margin-left: 0;
}
.stage-item:nth-child(3),
.stage-item:nth-child(4),
.stage-item:nth-child(5) {
  border-color: #ff8286;
  color: #ffffff;
  background: #ff8286;
}
.stage-item:last-child {
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 18px 50%);
}
.cover-diagram {
  position: relative;
}
.funding-layer {
  display: grid;
  grid-template-columns: 2.8fr 0.9fr 1.8fr 0.95fr;
  align-items: end;
  gap: 14px;
  margin-bottom: 18px;
}
.bootstrap-wrap {
  position: relative;
  min-height: 128px;
}
.bootstrap-bar {
  background: #ffffff;
  color: #2f2f2f;
  border: 1px solid #dddddd;
  border-radius: 10px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding: 26px 20px;
  width: 100%;
  margin-top: 70px;
}
.founding-loan {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: #ffffff;
  border: 2px solid #bfbfbf;
  border-radius: 999px;
  color: #555555;
  font-size: 18px;
  font-weight: 700;
  padding: 6px 18px;
  line-height: 1;
  white-space: nowrap;
}
.seed-round {
  background: #ffffff;
  color: #2f2f2f;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 22px 12px;
  margin-bottom: 72px;
}
.series-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
}
.series-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.series-box {
  width: 100%;
  min-height: 128px;
  background: #ffffff;
  color: #2f2f2f;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.bridge-pill {
  margin-top: -10px;
  border: 2px solid #cfcfcf;
  border-radius: 999px;
  color: #5a5a5a;
  background: #ffffff;
  padding: 5px 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.exit-box {
  background: #ffffff;
  color: #4a4a4a;
  border: 1px solid #dcdcdc;
  border-radius: 24px;
  min-height: 202px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}
.diagram-divider {
  border-top: 1px dashed #e5e5e5;
  margin: 18px 0;
}
.ipo-layer {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 18px;
}
.ipo-prep {
  background: #ffffff;
  color: #3d3d3d;
  border: 1px solid #dddddd;
  border-radius: 14px;
  min-width: 300px;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.ipo-maintain {
  background: #ffffff;
  color: #2f2f2f;
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  min-width: 108px;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.tax-bar {
  background: #ffffff;
  color: #6a6a6a;
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  text-align: center;
  padding: 24px 20px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}
.management-layer {
  display: flex;
  justify-content: flex-end;
}
.management-trapezoid {
  width: 58%;
  min-height: 202px;
  background: #f2f2f2;
  clip-path: polygon(0 80%, 68% 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.management-trapezoid span {
  color: #666666;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.is-highlight {
  border-color: #ff8286 !important;
  background: #fff8f8 !important;
}
@media (max-width: 1100px) {
  .stage-item { font-size: 17px; padding: 16px 8px; }
  .funding-layer { grid-template-columns: 1fr; gap: 18px; }
  .bootstrap-wrap { min-height: auto; }
  .bootstrap-bar { margin-top: 0; }
  .founding-loan { position: static; transform: none; display: inline-block; margin: 10px auto 0; }
  .seed-round { margin-bottom: 0; }
  .series-group { grid-template-columns: repeat(2, 1fr); }
  .exit-box { min-height: 150px; border-radius: 16px; }
  .ipo-layer { justify-content: center; flex-wrap: wrap; }
  .ipo-prep, .ipo-maintain { min-width: 220px; }
  .management-trapezoid { width: 100%; min-height: 160px; }
}
@media (max-width: 767px) {
  .cover-stage-section { padding: 24px 14px 18px; }
  .cover-stage-headline h2 { font-size: 18px; }
  .cover-stage-headline .line { max-width: none; }
  .stage-flow { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stage-item,
  .stage-item:first-child,
  .stage-item:last-child {
    clip-path: none;
    margin-left: 0;
    border-radius: 8px;
    font-size: 16px;
    padding: 14px 8px;
  }
  .bootstrap-bar, .seed-round, .series-box,
  .tax-bar, .ipo-prep, .ipo-maintain,
  .management-trapezoid span, .exit-box { font-size: 18px; }
  .series-group { grid-template-columns: 1fr; }
  .founding-loan { font-size: 15px; padding: 6px 14px; }
  .management-trapezoid { clip-path: polygon(0 70%, 55% 0, 100% 0, 100% 100%, 0 100%); }
}

.chro-section__cases-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 48px 0;
}

.chro-section__cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.chro-section__case-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-mid);
  border-radius: 4px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chro-section__case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-accent);
}

.chro-section__case-title {
  font-family: var(--font-mincho);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}

.chro-section__case-text {
  font-family: var(--font-sans);
  font-size: 1rem; /* SM */
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .chro-section__cases-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .chro-section {
    padding: 80px 0;
  }

  .chro-section__container {
    padding: 0 24px;
  }

  .chro-section__header {
    margin-bottom: 48px;
  }

  .chro-section__kpi {
    margin-bottom: 48px;
  }

  .chro-section__kpi-card {
    padding: 28px 32px;
  }

  .chro-section__overview {
    margin-bottom: 48px;
  }

  .chro-section__case-card {
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .chro-section__kpi-card {
    padding: 24px 20px;
  }

  .chro-section__case-card {
    padding: 24px 20px;
  }
}
