@layer base, layout, components, utilities, pages;

@layer pages {

/* ============================================
   FRONT PAGE - 2025 DESIGN SYSTEM
   Outfit (EN) + Zen Kaku Gothic New (JP)
   ============================================ */

/* ============================================
   1. HERO SECTION - 2025 Unified Design
   Numbered Accents + EN/JP Typography
   ============================================ */
.hero--front {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0a0e17 0%, #0f172a 50%, #1e293b 100%);
  min-height: clamp(600px, 85vh, 800px);
  display: flex;
  align-items: center;
  padding: 0;
}

/* Animated grid background */
.hero--front::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: heroGridPulse 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes heroGridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Accent Line - Bottom */
.hero--front::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #3b82f6 100%);
  background-size: 200% 100%;
  animation: heroAccentShift 8s ease-in-out infinite;
  z-index: 3;
}

@keyframes heroAccentShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero--front .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--front .hero__media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero--front .hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 23, 0.7) 0%,
    rgba(15, 23, 42, 0.5) 100%
  );
}

.hero--front .hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero--front .hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(64px, 12vw, 120px) clamp(24px, 6vw, 96px);
}

.hero--front .hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
}

.hero--front .hero__headline {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
  max-width: 900px;
}

/* Eyebrow - Large EN Typography */
.hero--front .hero__eyebrow {
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

/* Main Title */
.hero--front .hero__title {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #fff;
}

/* Lead Text */
.hero--front .hero__lead {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  max-width: 600px;
}

/* CTA Buttons */
.hero--front .hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(16px, 3vw, 24px);
}

.hero--front .hero__cta-group .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  padding: 18px 36px;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero--front .hero__cta-group .btn--primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  color: #fff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.hero--front .hero__cta-group .btn--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}

.hero--front .hero__cta-group .btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero--front .hero__cta-group .btn--secondary:hover {
  background: #fff;
  border-color: #fff;
  color: #0f172a;
}

.hero--front .hero__cta-group .btn__icon {
  transition: transform 0.3s ease;
}

.hero--front .hero__cta-group .btn:hover .btn__icon {
  transform: translateX(4px);
}

.hero--front .hero__cta-group .btn--secondary:hover .btn__icon {
  transform: translateY(4px);
}

/* Assurance List - Numbered */
.hero--front .hero__assurance {
  list-style: none;
  margin: clamp(40px, 5vw, 56px) 0 0;
  padding: clamp(28px, 4vw, 40px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero--front .hero__assurance-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hero--front .hero__assurance-num {
  flex-shrink: 0;
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 12px;
  font-weight: 600;
  color: #3b82f6;
  min-width: 24px;
}

.hero--front .hero__assurance-text {
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero--front {
    min-height: clamp(520px, 90vh, 650px);
  }

  .hero--front .hero__cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .hero--front .hero__cta-group .btn {
    width: 100%;
    min-width: auto;
    text-align: center;
    justify-content: center;
    padding: 18px 24px;
  }

  .hero--front .hero__assurance-text {
    font-size: 13px;
  }
}


/* ============================================
   2. CONCERNS SECTION - 2025 Premium Dark Design
   ============================================ */
.concerns {
  position: relative;
  padding: clamp(80px, 12vw, 120px) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}

.concerns__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.concerns__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max, 1280px);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.concerns__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.concerns__eyebrow {
  display: block;
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 16px;
}

.concerns__title {
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}

.concerns__title-br {
  display: none;
}

.concerns__accent {
  width: 60px;
  height: 3px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 2px;
}

/* Concerns Grid */
.concerns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.concerns__card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.concerns__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.concerns__card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  color: #60a5fa;
  font-family: 'DM Sans', var(--font-sans, system-ui, sans-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.concerns__card-text {
  flex: 1;
  margin: 0;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA */
.concerns__cta {
  margin-top: clamp(48px, 6vw, 64px);
  text-align: center;
}

.concerns__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.concerns__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.4);
}

.concerns__button-text {
  position: relative;
}

.concerns__button-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.concerns__button:hover .concerns__button-arrow {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .concerns__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .concerns__title-br {
    display: inline;
  }

  .concerns__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .concerns__card {
    padding: 20px;
    gap: 14px;
  }

  .concerns__card-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9375rem;
  }

  .concerns__button {
    padding: 16px 32px;
    font-size: 14px;
  }
}


/* ============================================
   3. STRENGTHS SECTION - 2025 Design
   EN/JP Typography + Premium UI
   ============================================ */
.strengths-block {
  position: relative;
  margin-top: 0;
  padding: clamp(80px, 14vw, 140px) 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 50%, #fff 100%);
  overflow: hidden;
}

/* Subtle animated background pattern */
.strengths-block__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.strengths-block__container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* Section Header - EN/JP Typography */
.strengths-block__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(64px, 10vw, 100px);
  text-align: center;
}

.strengths-block__eyebrow {
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.strengths-block__title {
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.02em;
  margin: 0;
}

.strengths-block__accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  border-radius: 2px;
  margin-top: 8px;
}

.strengths-cards {
  display: grid;
  gap: clamp(100px, 15vw, 160px);
}

/* Individual Card - Premium Design */
.strengths-card {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 72px);
}

.strengths-card__main {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(56px, 8vw, 100px);
}

.strengths-card--reverse .strengths-card__main {
  grid-template-columns: 1.1fr 1fr;
}

.strengths-card--reverse .strengths-card__content {
  order: 2;
}

.strengths-card--reverse .strengths-card__media {
  order: 1;
}

/* Content */
.strengths-card__content {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
}

.strengths-card__label {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 16px;
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 6px;
}

.strengths-card__lead {
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-weight: 700;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  line-height: 1.5;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.01em;
}

.strengths-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strengths-card__text {
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  line-height: 1.9;
  color: #475569;
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  margin: 0;
}

.strengths-card__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 40px);
  padding: 16px 32px;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}

.strengths-card__link:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.35);
  color: #fff;
}

.strengths-card__link-arrow {
  transition: transform 0.3s ease;
}

.strengths-card__link:hover .strengths-card__link-arrow {
  transform: translateX(4px);
}

/* Media - Premium Image Container */
.strengths-card__media {
  position: relative;
}

.strengths-card__media-inner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f1f5f9;
  border-radius: 20px;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 12px 24px rgba(15, 23, 42, 0.08),
    0 24px 48px rgba(15, 23, 42, 0.06);
}

.strengths-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.strengths-card__media:hover .strengths-card__img {
  transform: scale(1.05);
}


/* ============================================
   Related Services - 2025 Redesign
   ============================================ */
.relatedServices {
  position: relative;
  margin-top: clamp(48px, 7vw, 72px);
  padding: clamp(32px, 5vw, 48px);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.relatedServices__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.relatedServices__eyebrow {
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #94a3b8;
}

.relatedServices__title {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

.relatedServices__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.relatedServices__item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.relatedServices__link {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 24px);
  padding: clamp(20px, 2.5vw, 28px) 0;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.relatedServices__link:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.04) 0%, transparent 100%);
}

.relatedServices__num {
  flex-shrink: 0;
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  min-width: 28px;
  transition: color 0.3s ease;
}

.relatedServices__link:hover .relatedServices__num {
  color: #3b82f6;
}

.relatedServices__linkContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.relatedServices__linkTitle {
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.relatedServices__link:hover .relatedServices__linkTitle {
  color: #3b82f6;
}

.relatedServices__linkExcerpt {
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.relatedServices__arrow {
  flex-shrink: 0;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.relatedServices__link:hover .relatedServices__arrow {
  color: #3b82f6;
  transform: translateX(4px);
}

.relatedServices__viewAll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(24px, 3vw, 32px);
  padding: 12px 24px;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.relatedServices__viewAll:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

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

.relatedServices__viewAll:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
  .strengths-card__main {
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 56px);
  }

  .strengths-card--reverse .strengths-card__main {
    grid-template-columns: 1fr;
  }

  .strengths-card__content {
    order: 2;
  }

  .strengths-card__media {
    order: 1;
  }

  .strengths-card--reverse .strengths-card__content,
  .strengths-card--reverse .strengths-card__media {
    order: unset;
  }
}

@media (max-width: 768px) {
  .strengths-block__eyebrow {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .relatedServices {
    padding: clamp(24px, 4vw, 32px);
    border-radius: 16px;
  }

  .relatedServices__linkExcerpt {
    display: none;
  }
}

@media (max-width: 640px) {
  .strengths-block {
    padding: clamp(64px, 12vw, 100px) 0;
  }

  .strengths-card__link {
    width: 100%;
    justify-content: center;
  }

  .strengths-card__media-inner {
    border-radius: 16px;
  }
}


/* ============================================
   4. FRONT SECTIONS - 2025 Unified Design
   Numbered Headers + EN/JP Typography
   ============================================ */
.front-section {
  position: relative;
  padding: clamp(80px, 12vw, 120px) 0;
}

/* Section backgrounds with subtle gradients */
.front-section--cases {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.front-section--solutions {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.front-section--guides {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

/* Background patterns - subtle radial */
.front-section__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Section Header - Numbered + EN/JP */
.front-section__header {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto clamp(48px, 7vw, 72px);
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.front-section__header-main {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
}

/* Section Number Badge */
.front-section__num {
  position: relative;
  width: clamp(56px, 8vw, 72px);
  height: clamp(56px, 8vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  transform: rotate(-3deg);
  flex-shrink: 0;
}

.front-section__num-text {
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  transform: rotate(3deg);
}

/* Section Titles */
.front-section__titles {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.front-section__eyebrow {
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.front-section__title {
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f172a;
  margin: 0;
}

/* More Link */
.front-section__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0f172a;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.front-section__more svg {
  transition: transform 0.3s ease;
}

.front-section__more:hover {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-color: #0f172a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.front-section__more:hover svg {
  transform: translateX(4px);
}

/* Section Footer */
.front-section__footer {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: clamp(40px, 6vw, 56px) auto 0;
  padding: 0 clamp(20px, 5vw, 80px);
  text-align: center;
  box-sizing: border-box;
}

.front-section__footer .front-section__more {
  min-width: 200px;
  justify-content: center;
}

/* Legacy support */
.front-section .section__head {
  display: none;
}

.section__more--header {
  display: none;
}


/* ============================================
   5. FRONT CARDS / CAROUSEL - 2025 Clean Design
   ============================================ */

/* Carousel Container */
.frontCarousel {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  box-sizing: border-box;
}

/* Scrollable Viewport */
.frontCarousel__viewport {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.frontCarousel__viewport::-webkit-scrollbar {
  display: none;
}

/* Card List (Track) */
.frontCards {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
}

/* Card Item */
.frontCards__item {
  flex: 0 0 300px;
  scroll-snap-align: start;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Individual Card - Clean Minimal Design */
.frontCard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.frontCard:hover {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-6px);
}

.frontCard__link {
  position: absolute;
  inset: 0;
  z-index: 5;
  touch-action: manipulation;
}

/* Thumbnail - Fixed aspect ratio with object-fit cover */
.frontCard__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f1f5f9;
}

.frontCard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.frontCard:hover .frontCard__img {
  transform: scale(1.05);
}

.frontCard__img--logo {
  object-fit: contain;
  padding: 24px;
  background: #fff;
}

/* Card Body */
.frontCard__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* Card Meta */
.frontCard__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.frontCard__category {
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: 12px;
  font-weight: 600;
  color: #3b82f6;
}

.frontCard__date {
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  font-feature-settings: "tnum";
}

.frontCard__title {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* Read More */
.frontCard__readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #94a3b8;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  transition: color 0.3s ease;
}

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

.frontCard:hover .frontCard__readmore {
  color: #3b82f6;
}

.frontCard:hover .frontCard__readmore svg {
  transform: translateX(3px);
}

/* Section Footer - Mobile Only by default */
.front-section__footer--mobile {
  display: none;
}

/* ============================================
   Carousel Arrow Buttons
   ============================================ */
.frontCarousel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.3);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.frontCarousel__arrow:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.frontCarousel__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.frontCarousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.frontCarousel__arrow--prev {
  left: clamp(8px, 3vw, 40px);
}

.frontCarousel__arrow--next {
  right: clamp(8px, 3vw, 40px);
}

/* Dots */
.frontCarousel__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding: 0 20px;
}

.frontCarousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.frontCarousel__dot:hover {
  background: #94a3b8;
  transform: scale(1.15);
}

.frontCarousel__dot.is-active {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: scale(1.35);
}

/* ============================================
   Responsive: Tablet (768px)
   ============================================ */
@media (max-width: 768px) {
  .section__more--header {
    display: none;
  }

  /* Front Section Header - Stack layout on mobile */
  .front-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px;
  }

  .front-section__header-main {
    gap: 16px;
    width: 100%;
  }

  .front-section__num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .front-section__num-text {
    font-size: 18px;
  }

  .front-section__titles {
    min-width: 0;
    flex: 1;
  }

  .front-section__eyebrow {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .front-section__title {
    font-size: 1rem;
  }

  /* Hide View All in header on mobile - show in footer instead */
  .front-section__header .front-section__more {
    display: none;
  }

  .front-section__footer--mobile {
    display: block;
    padding: 0 20px;
    margin-top: 32px;
    box-sizing: border-box;
    text-align: center;
  }

  .front-section__footer--mobile .front-section__more {
    display: inline-flex;
    width: auto;
    min-width: 200px;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    color: #fff;
    font-size: 14px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
  }

  .front-section__footer--mobile .front-section__more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  }

  /* Carousel - Hide arrows on mobile, use swipe */
  .frontCarousel {
    padding: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .frontCarousel__viewport {
    width: 100%;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .frontCarousel__arrow {
    display: none;
  }

  .frontCards {
    display: flex;
    gap: 16px;
    width: max-content;
  }

  .frontCards__item {
    flex: 0 0 280px;
    width: 280px;
  }

  /* Add space after last card */
  .frontCards__item:last-child {
    margin-right: 20px;
  }

  .frontCarousel__dots {
    margin-top: 24px;
  }
}

/* ============================================
   Responsive: Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
  .front-section {
    padding: 48px 0;
  }

  .front-section__header {
    padding: 0 16px;
    margin-bottom: 28px;
  }

  .front-section__header-main {
    gap: 12px;
  }

  .front-section__num {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .front-section__num-text {
    font-size: 16px;
  }

  .front-section__eyebrow {
    font-size: 1.25rem;
  }

  .front-section__title {
    font-size: 0.9375rem;
  }

  .front-section__footer--mobile {
    padding: 0 16px;
    margin-top: 24px;
  }

  .front-section__footer--mobile .front-section__more {
    min-width: 180px;
    padding: 14px 24px;
    font-size: 13px;
  }

  .frontCarousel__viewport {
    padding: 0 16px;
  }

  .frontCards {
    gap: 12px;
    width: max-content;
  }

  .frontCards__item {
    flex: 0 0 calc(100vw - 48px);
    width: calc(100vw - 48px);
    max-width: 280px;
  }

  .frontCards__item:last-child {
    margin-right: 16px;
  }

  .frontCard__body {
    padding: 16px;
  }

  .frontCarousel__dots {
    margin-top: 20px;
    gap: 10px;
  }

  .frontCarousel__dot {
    width: 8px;
    height: 8px;
  }
}

/* Empty state */
.front-section__empty {
  text-align: center;
  color: #64748b;
  padding: 56px 24px;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: 15px;
}


/* ============================================
   6. NEWS SECTION - 2025 Unified Design
   Numbered Items + EN/JP Typography
   ============================================ */
.section--news {
  position: relative;
  padding: clamp(80px, 12vw, 120px) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  overflow: hidden;
}

.section--news::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.news-block {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: clamp(200px, 22vw, 280px) 1fr;
  gap: clamp(48px, 8vw, 100px);
}

.news-block__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* News Section Number */
.news-block__num {
  width: clamp(56px, 8vw, 72px);
  height: clamp(56px, 8vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  transform: rotate(-3deg);
}

.news-block__num-text {
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  transform: rotate(3deg);
}

.news-block__titles {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-block__eyebrow {
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.news-block__title {
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.02em;
}

.news-block__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 24px;
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #3b82f6;
  text-decoration: none;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-block__link svg {
  transition: transform 0.3s ease;
}

.news-block__link:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.news-block__link:hover svg {
  transform: translateX(4px);
}

.news-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.news-block__list li {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.news-block__item {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  padding: clamp(20px, 2.5vw, 28px) 0;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-block__item:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.04) 0%, transparent 100%);
}

.news-block__item-num {
  flex-shrink: 0;
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  min-width: 24px;
  transition: color 0.3s ease;
}

.news-block__item:hover .news-block__item-num {
  color: #3b82f6;
}

.news-block__item time {
  flex-shrink: 0;
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  font-feature-settings: "tnum";
  min-width: 90px;
}

.news-block__item-title {
  flex: 1;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.news-block__item:hover .news-block__item-title {
  color: #3b82f6;
}

.news-block__item-arrow {
  flex-shrink: 0;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.news-block__item:hover .news-block__item-arrow {
  color: #3b82f6;
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .news-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .news-block__side {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }

  .news-block__num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .news-block__num-text {
    font-size: 18px;
  }

  .news-block__eyebrow {
    font-size: 1.5rem;
  }

  .news-block__title {
    font-size: 1rem;
  }

  .news-block__link {
    margin-top: 0;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .section--news {
    padding: 48px 0;
  }

  .news-block {
    padding: 0 16px;
    gap: 28px;
  }

  .news-block__side {
    gap: 12px 16px;
  }

  .news-block__num {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .news-block__num-text {
    font-size: 16px;
  }

  .news-block__titles {
    flex: 1;
    min-width: 0;
  }

  .news-block__eyebrow {
    font-size: 1.25rem;
  }

  .news-block__title {
    font-size: 0.9375rem;
  }

  .news-block__link {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
  }

  .news-block__link:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  }

  .news-block__item {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 16px 0;
  }

  .news-block__item-num {
    display: none;
  }

  .news-block__item time {
    order: 1;
    font-size: 12px;
    min-width: auto;
  }

  .news-block__item-title {
    order: 3;
    flex-basis: 100%;
    font-size: 14px;
  }

  .news-block__item-arrow {
    order: 2;
    margin-left: auto;
  }
}


/* ============================================
   7. CTA SECTION - 2025 Design
   ============================================ */
.cta {
  position: relative;
  margin-top: clamp(40px, 6vw, 64px);
  padding: clamp(56px, 9vw, 80px) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.cta::before {
  display: none;
}

.cta__pattern {
  display: none;
}

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

.cta-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
  padding: 0 clamp(24px, 5vw, 80px);
}

/* CTA Card */
.cta-card {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 24px);
  padding: clamp(28px, 3.5vw, 36px);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --cta-accent: #0f172a;
}

.cta-card:hover {
  border-color: var(--cta-accent);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

/* Phone: Navy */
.cta-card--phone {
  --cta-accent: #0f172a;
  --cta-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --cta-icon-bg: rgba(15, 23, 42, 0.06);
  --cta-icon-color: #0f172a;
}

/* Contact: Blue */
.cta-card--contact {
  --cta-accent: #2563eb;
  --cta-bg: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  --cta-icon-bg: rgba(59, 130, 246, 0.08);
  --cta-icon-color: #3b82f6;
}

/* Download: Teal */
.cta-card--download {
  --cta-accent: #0d9488;
  --cta-bg: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  --cta-icon-bg: rgba(13, 148, 136, 0.08);
  --cta-icon-color: #0d9488;
}

.cta-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--cta-icon-bg, #f8fafc);
  color: var(--cta-icon-color, #0f172a);
  border-radius: 12px;
}

.cta-card__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.cta-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.cta-card__content > :not(.cta-card__action):not(.cta-card__meta) {
  flex-shrink: 0;
}

.cta-card__eyebrow {
  margin: 0;
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
}

.cta-card__title {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

.cta-card__value {
  margin: 0;
}

.cta-card__value a {
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.cta-card__value a:hover {
  color: var(--cta-accent);
}

.cta-card__note {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.cta-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: auto;
  background: #f8fafc;
  color: #0f172a;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Clickable card styling */
a.cta-card {
  text-decoration: none;
  color: inherit;
}

a.cta-card:hover {
  color: inherit;
}

.cta-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--cta-bg, #0f172a);
  color: #fff;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  order: 10;
  margin-top: auto;
}

.cta-card__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.2);
}

.cta-card__action-text {
  font-variant-numeric: tabular-nums;
}

.cta-card--phone .cta-card__action-text {
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 16px;
  font-weight: 600;
}

.cta-card__meta {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  order: 5;
}

.cta-card--download .cta-card__meta {
  display: none;
}

@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 28px);
    padding: 0 clamp(20px, 4vw, 40px);
  }

  .cta-card__action {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cta-grid {
    padding: 0 var(--gutter);
  }
}


/* ============================================
   8. PAGE DEFAULT LAYOUT
   ============================================ */
.page-default {
  position: relative;
  display: block;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.page-default__hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0;
  background: #f8fafc;
  color: #0f172a;
}

.page-default__hero--image {
  color: #fff;
}

.page-default__hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-default__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-default__hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.page-default__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', var(--font-sans, system-ui, sans-serif);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.page-default__meta-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 6px;
  font-weight: 600;
  color: #3b82f6;
}

.page-default__meta time {
  font-weight: 600;
}

.page-default__title {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.25;
  font-weight: 700;
  color: inherit;
}

.page-default__lead {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.8;
  color: #475569;
  max-width: 680px;
}

.page-default__hero--image .page-default__meta {
  color: rgba(255, 255, 255, 0.75);
}

.page-default__hero--image .page-default__meta-label {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.page-default__hero--image .page-default__lead {
  color: rgba(255, 255, 255, 0.88);
}

.page-default__body {
  position: relative;
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  margin: clamp(40px, 6vw, 72px) 0;
  width: 100%;
}

.page-default__content {
  position: relative;
  width: 100%;
  padding: clamp(32px, 5vw, 64px) clamp(24px, 6vw, 80px);
  background: #fff;
}

.page-default__content .toc {
  margin-bottom: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #f8fafc;
  border-radius: 12px;
}

@media (max-width: 640px) {
  .page-default__body {
    margin: clamp(28px, 6vw, 48px) auto;
    gap: 24px;
  }

  .page-default__content {
    padding: 20px;
  }
}


/* ============================================
   9. EQUIPMENT FEATURED
   ============================================ */
.equipment-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 36px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.equipment-featured .card-list__item {
  display: flex;
  flex-direction: column;
}

.equipment-featured__media {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
}

.equipment-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.equipment-featured__media:hover img {
  transform: scale(1.04);
}

.equipment-featured__title {
  margin: 16px 0 0;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: #0f172a;
}

.equipment-featured__excerpt {
  margin: 8px 0 0;
  font-family: 'Zen Kaku Gothic New', var(--font-sans, system-ui, sans-serif);
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .equipment-featured {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .equipment-featured {
    grid-template-columns: 1fr;
  }
}

}
