@charset "UTF-8";
/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --primary-color: #0a0a0a;
  --secondary-color: #fff;
  --accent-color: #B31B1B;
  --accent-light: #D32F2F;
  --accent-dark: #8B0000;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --border-color: #e5e7eb;
  --bg-dark: #2c3e50;
  --bg-darker: #1a252f;
  --bg-light: #f9fafb;
  --bg-lighter: #fff;
  --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-color);
  letter-spacing: 0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ========================================
   アンカーリンク調整（固定ヘッダー対応）
======================================== */
.company .section[id],
.service .section[id] {
  scroll-margin-top: 80px;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(179, 27, 27, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(179, 27, 27, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: 0.08em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo a {
  color: #fff;
  text-decoration: none;
}
.logo img {
  width: 150px;
}
@media (min-width: 1100px) {
  .logo img {
    width: 180px;
  }
}
@media (max-width: 768px) {
  .logo img {
    width: 120px;
  }
}

.navbar.scrolled .logo {
  font-size: 20px;
}

.nav-menu {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-menu > li {
  display: flex;
  align-items: center;
}

.nav-menu a {
  position: relative;
  padding-bottom: 5px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-menu a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}

.nav-menu a:hover {
  color: rgb(255, 255, 255);
  transform: translateY(-2px);
}

.nav-menu a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.btn-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  overflow: hidden;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-contact::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translate(-50%, -50%);
}

.btn-contact:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px) scale(1.05);
}

.btn-contact:hover::before {
  width: 300px;
  height: 300px;
}

.menu-toggle {
  position: relative;
  display: none;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 12px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-toggle::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1), rgba(179, 27, 27, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(179, 27, 27, 0.3);
  box-shadow: 0 8px 24px rgba(179, 27, 27, 0.2);
  transform: scale(1.05);
}

.menu-toggle:hover::before {
  opacity: 1;
}

.menu-toggle.active {
  background: rgba(179, 27, 27, 0.15);
  border-color: rgba(179, 27, 27, 0.4);
  box-shadow: 0 8px 32px rgba(179, 27, 27, 0.3);
}

.menu-toggle span {
  position: relative;
  width: 24px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

.menu-toggle:hover span {
  background: #fff;
}

.menu-toggle.active span:nth-child(1) {
  background: #fff;
  transform: rotate(45deg) translate(6px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
  background: #fff;
  transform: rotate(-45deg) translate(6px, -7px);
}

.menu-toggle:active {
  transform: scale(0.95);
}

/* Submenu Styles */
.has-submenu {
  position: relative;
  padding: 10px 0;
}

.has-submenu > a {
  display: flex;
  gap: 4px;
  align-items: center;
  line-height: 1.5;
}

.submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 21px;
  padding: 0;
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  background: none;
  border: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.submenu-toggle svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.submenu-toggle.active svg {
  transform: rotate(180deg);
}

.has-submenu:hover .submenu-toggle {
  color: rgb(255, 255, 255);
}

.submenu {
  position: absolute;
  top: calc(100% - 5px);
  left: -10px;
  z-index: 1000;
  display: none;
  min-width: 220px;
  padding: 12px 0;
  pointer-events: none;
  background: rgba(179, 27, 27, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(-15px) scale(0.95);
}

/* Invisible bridge to prevent hover gap */
.submenu::before {
  position: absolute;
  top: -20px;
  right: -10px;
  left: -10px;
  height: 30px;
  content: "";
  background: transparent;
}

.submenu li {
  list-style: none;
}

.submenu a {
  position: relative;
  display: block;
  padding: 12px 20px;
  overflow: hidden;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.submenu a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 16px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
  border-radius: 2px;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(-50%) translateX(-20px);
}

.submenu a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent);
  transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.submenu a:hover {
  padding-left: 32px;
  color: #fff;
  letter-spacing: 0.02em;
}

.submenu a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(16px);
}

.submenu a:hover::after {
  width: 100%;
}

.submenu a::after {
  display: none;
}

/* Desktop: Show submenu on hover */
@media (min-width: 961px) {
  .has-submenu:hover .submenu,
  .submenu:hover {
    display: block;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .has-submenu:hover .submenu-toggle svg {
    transform: rotate(180deg);
  }
}
/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding-top: 80px;
  overflow: hidden;
  color: var(--primary-color);
  text-align: center;
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../img/hero-bg-gray.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

/* Red Triangle Decoration */
.hero-decoration {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 0;
  height: 0;
  border-color: transparent var(--accent-color) transparent transparent;
  border-style: solid;
  border-width: 0 200px 100vh 0;
  opacity: 0.15;
}

@media (max-width: 768px) {
  .hero-decoration {
    border-width: 0 120px 100vh 0;
  }
}
@media (max-width: 480px) {
  .hero-decoration {
    border-width: 0 80px 100vh 0;
  }
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.hero-subtitle {
  margin-top: 35px;
  margin-bottom: 18px;
  font-family: "M PLUS Rounded 1c", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: #4a4a4a;
  letter-spacing: 0.05em;
  opacity: 1;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-title {
  position: relative;
  margin-bottom: 40px;
  overflow: visible;
  font-family: "Inter", sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(179, 27, 27, 0.15);
  letter-spacing: 0.02em;
  opacity: 0;
}

.hero-title .title-word {
  position: relative;
  display: inline-block;
  margin: 0 6px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out both;
}

.hero-title .title-word-black {
  font-weight: 800;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 200% auto;
  opacity: 0.9;
  animation: gradientFlow 4s ease-in-out infinite;
  -webkit-text-fill-color: transparent;
}

@keyframes gradientFlow {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
.hero-title .title-word-black::after {
  content: "";
  /* CREATION is larger, 'of' is smaller - handled in HTML structure */
}

.hero-title .title-word-red {
  position: relative;
  display: inline-block;
  font-size: 1.08em;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--accent-color) 0%, #E63946 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 200% auto;
  animation: gradientFlow 5s ease-in-out infinite;
  -webkit-text-fill-color: transparent;
}

/* Modern underline effect for red text */
.hero-title .title-word-red::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent-color) 20%, #E63946 50%, var(--accent-color) 80%, transparent);
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}
.hero-title .title-word::before {
  content: "";
  /* Removed glow effect for cleaner appearance */
}

.hero-title .title-word-1 {
  animation-delay: 0s;
}

.hero-title .title-word-2 {
  animation-delay: 0.3s;
}

.hero-title.reveal {
  animation: textReveal 2s cubic-bezier(0.4, 0, 0.2, 1) forwards, gradientShift 3s ease-in-out infinite;
}

.hero-description {
  margin-top: 12px;
  margin-bottom: 50px;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  color: #666;
  letter-spacing: 0.06em;
  opacity: 1;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-actions {
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 40px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  color: var(--primary-color);
  opacity: 0.6;
}

.scroll-indicator span {
  font-size: 12px;
  letter-spacing: 2px;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--primary-color);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0%, 100% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes textReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes pulse {
  0%, 100% {
    filter: blur(20px);
    opacity: 0.4;
  }
  50% {
    filter: blur(25px);
    opacity: 0.6;
  }
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes gradientSlide {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes floatIcon {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@keyframes rotatePattern {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate360 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes cardFlip {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes letterFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes letterAppear {
  0% {
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
  }
  50% {
    transform: translateY(-10px) rotateX(10deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}
@keyframes wordSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 15px rgba(179, 27, 27, 0.4), 0 0 25px rgba(179, 27, 27, 0.2);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 25px rgba(179, 27, 27, 0.8), 0 0 40px rgba(179, 27, 27, 0.5), 0 0 60px rgba(179, 27, 27, 0.3);
    transform: scale(1.02);
  }
}
/* ========================================
   Buttons
   ======================================== */
.btn {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 0;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  color: var(--secondary-color);
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  box-shadow: 0 4px 15px rgba(179, 27, 27, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
  box-shadow: 0 20px 50px rgba(179, 27, 27, 0.5), 0 10px 20px rgba(179, 27, 27, 0.3);
  transform: translateY(-3px) scale(1.05);
}

.btn-primary::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  color: var(--primary-color);
  background: transparent;
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  color: var(--secondary-color);
  background: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-outline::after {
  position: absolute;
  inset: -2px;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-outline:hover::after {
  opacity: 0.1;
}

.btn-large {
  padding: 18px 48px;
  font-size: 16px;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  position: relative;
  margin-bottom: 80px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered::after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 60px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
  border-radius: 2px;
  transform: translateX(-50%);
}

.section-label {
  position: relative;
  display: inline-block;
  padding-right: 0 !important;
  padding-left: 20px;
  margin-right: 0 !important;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 2px;
  content: "";
  background: var(--accent-color);
  border-radius: 1px;
  transform: translateY(-50%);
}

/* Remove vertical line after section-label in all contexts */
.section-label::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
  background: none !important;
  border: 0 !important;
}

.section-header-center .section-label::after {
  display: none !important;
}

.section-header-center .section-label {
  position: relative;
  display: block !important;
  padding: 0 !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  border: 0 !important;
}

.section-header-center .section-title {
  display: block !important;
  padding: 0 !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  border: 0 !important;
}

.section-header-center .section-title::before {
  display: none !important;
  content: none !important;
}

/* Ensure no borders on section-label in any context */
.section-label {
  border-right: 0 !important;
  border-left: 0 !important;
}

.section-title {
  padding-left: 0 !important;
  margin-left: 0 !important;
  font-family: "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary-color);
  letter-spacing: 0.01em;
  border-left: 0 !important;
}

.section-title .letter {
  display: inline-block;
  opacity: 0;
}

.section-subtitle {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.section-action {
  margin-top: 60px;
  text-align: center;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
  position: relative;
  background: var(--secondary-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-subtitle {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 0.01em;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.about-text .btn {
  margin-top: 30px;
}

.about-image,
.recruit-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.about-image img,
.recruit-image img {
  display: block;
  width: 100%;
  height: 100%;
  transition: var(--transition);
  -o-object-fit: cover;
     object-fit: cover;
}

.image-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
  border-radius: 20px;
}

.image-placeholder::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* ========================================
   Business Section
   ======================================== */
.business-section {
  position: relative;
}

.business-section-original {
  background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
}

.business-intro {
  max-width: 900px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

.business-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.business-card {
  position: relative;
  padding: 50px 40px;
  overflow: hidden;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom left;
  transform-style: preserve-3d;
}

.business-card-main {
  padding: 45px 35px;
}

.card-description {
  padding-bottom: 20px;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  border-bottom: 1px solid rgba(179, 27, 27, 0.1);
}

.card-badge-main {
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(179, 27, 27, 0.3);
}

.business-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  content: "";
  background: radial-gradient(circle, rgba(179, 27, 27, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.card-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  color: var(--accent-color);
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-icon::before {
  position: absolute;
  inset: -4px;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1) 0%, transparent 50%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.business-card:hover .card-icon::before {
  opacity: 1;
}

.business-card h3 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary-color);
}

.business-card ul {
  list-style: none;
}

.business-card li {
  position: relative;
  padding: 10px 0;
  padding-left: 20px;
  color: var(--text-light);
}

.business-card li::before {
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--accent-color);
  content: "•";
}

/* Business Why Section */
.business-why-section {
  position: relative;
  padding: 70px 60px;
  margin-top: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(179, 27, 27, 0.02) 100%);
  border: 2px solid rgba(179, 27, 27, 0.08);
  border-radius: 25px;
}

.why-header {
  margin-bottom: 50px;
  text-align: center;
}

.why-title {
  position: relative;
  display: inline-block;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--primary-color);
}

.why-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}

.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-illustration {
  width: 100%;
  max-width: 240px;
  height: auto;
}

.why-illustration .data-point {
  animation: dataPointPulse 2s ease-in-out infinite;
}

.why-illustration .data-point:nth-child(1) {
  animation-delay: 0s;
}

.why-illustration .data-point:nth-child(2) {
  animation-delay: 0.3s;
}

.why-illustration .data-point:nth-child(3) {
  animation-delay: 0.6s;
}

.why-illustration .data-point:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes dataPointPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
.why-illustration .success-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 3s ease-in-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
.why-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--bg-light);
  border: 1px solid rgba(179, 27, 27, 0.08);
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1) 0%, rgba(179, 27, 27, 0.05) 100%);
  border: 2px solid rgba(179, 27, 27, 0.15);
  border-radius: 12px;
}

.why-item-text h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.why-item-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

.why-item-text p strong {
  font-weight: 700;
  color: var(--accent-color);
}

/* AI Card Special Styling */
.business-card-ai {
  position: relative;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.02) 0%, var(--bg-light) 100%);
}

.business-card-ai::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-dark) 50%, var(--accent-color) 100%);
  background-size: 200% 100%;
  animation: gradientSlide 3s ease-in-out infinite;
}

.card-icon-ai {
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.08) 0%, rgba(179, 27, 27, 0.03) 100%);
  border: 2px solid rgba(179, 27, 27, 0.15);
}

.card-icon-ai svg {
  filter: drop-shadow(0 2px 4px rgba(179, 27, 27, 0.2));
}

.business-card-ai:hover .card-icon-ai {
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.15) 0%, rgba(179, 27, 27, 0.08) 100%);
  transform: scale(1.15) rotate(10deg);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(179, 27, 27, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(179, 27, 27, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 16px rgba(179, 27, 27, 0.5);
    transform: scale(1.05);
  }
}
/* ========================================
   Service Detail Section
   ======================================== */
.service-detail-section {
  padding: 120px 0;
  background: var(--secondary-color);
}

.service-process {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}

.process-card {
  position: relative;
  flex: 1;
  padding: 40px 30px;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: var(--accent-color);
  border-radius: 50%;
}

.process-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.process-list {
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 10px 0;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

.process-list li::before {
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--accent-color);
  content: "✓";
}

.process-arrow {
  flex-shrink: 0;
  color: var(--accent-color);
}

.process-arrow svg {
  display: block;
}

.service-features {
  margin-top: 80px;
}

.features-title {
  margin-bottom: 60px;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item {
  padding: 40px 30px;
  text-align: center;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: var(--transition);
}

.feature-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 20px;
}

.feature-item h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

/* AI Planning Section */
.ai-planning-section {
  position: relative;
  padding: 80px 60px;
  margin-top: 100px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.02) 0%, var(--bg-light) 50%, rgba(179, 27, 27, 0.03) 100%);
  border: 2px solid rgba(179, 27, 27, 0.1);
  border-radius: 30px;
}

.ai-planning-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-dark) 50%, var(--accent-color) 100%);
  background-size: 200% 100%;
  animation: gradientSlide 4s ease-in-out infinite;
}

.ai-planning-header {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}

.ai-badge-large {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-radius: 25px;
  box-shadow: 0 4px 16px rgba(179, 27, 27, 0.3);
  animation: pulse 2.5s ease-in-out infinite;
}

.ai-planning-title {
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--primary-color);
  background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-dark) 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-planning-intro {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
}

.ai-planning-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.ai-visual {
  position: relative;
}

.ai-illustration {
  width: 100%;
  max-width: 280px;
  padding: 40px;
  margin: 0 auto;
  background: var(--bg-light);
  border: 2px solid rgba(179, 27, 27, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(179, 27, 27, 0.08);
}

.ai-graphic {
  width: 100%;
  height: auto;
}

.ai-graphic .node {
  animation: nodeGlow 3s ease-in-out infinite;
}

.ai-graphic .node-1 {
  animation-delay: 0s;
}

.ai-graphic .node-2 {
  animation-delay: 0.3s;
}

.ai-graphic .node-3 {
  animation-delay: 0.6s;
}

.ai-graphic .node-4 {
  animation-delay: 0.9s;
}

.ai-graphic .node-5 {
  animation-delay: 1.2s;
}

.ai-graphic .node-6 {
  animation-delay: 1.5s;
}

.ai-graphic .node-7 {
  animation-delay: 1.8s;
}

.ai-graphic .node-8 {
  animation-delay: 2.1s;
}

.ai-graphic .node-9 {
  animation-delay: 2.4s;
}

@keyframes nodeGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.2);
  }
}
.ai-graphic .connection {
  animation: connectionPulse 4s ease-in-out infinite;
}

@keyframes connectionPulse {
  0%, 100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.4;
  }
}
.ai-examples-title {
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  border-bottom: 2px solid rgba(179, 27, 27, 0.1);
}

.ai-example-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--bg-light);
  border: 1px solid rgba(179, 27, 27, 0.08);
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-example-item:hover {
  border-color: rgba(179, 27, 27, 0.2);
  box-shadow: 0 10px 30px rgba(179, 27, 27, 0.12);
  transform: translateX(10px);
}

.ai-example-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1) 0%, rgba(179, 27, 27, 0.05) 100%);
  border: 2px solid rgba(179, 27, 27, 0.15);
  border-radius: 12px;
}

.ai-example-text h5 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.ai-example-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ========================================
   Works Section
   ======================================== */
.works-section {
  position: relative;
}

.works-section-original {
  background: var(--secondary-color);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.works-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.work-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.work-item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-image {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}

.work-image img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
}

.work-image .image-placeholder {
  padding-bottom: 65%;
  border-radius: 0;
}

.work-content {
  padding: 30px;
}

.work-category {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 15px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--accent-color);
  border-radius: 4px;
}

.work-title {
  margin-bottom: 15px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary-color);
}

.work-description {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

.work-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  margin-bottom: 20px;
  background: rgba(179, 27, 27, 0.05);
  border-radius: 10px;
}

.result-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.result-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.3px;
  background: rgba(179, 27, 27, 0.1);
  border-radius: 20px;
}

/* ========================================
   Recruit Section
   ======================================== */
.recruit-section {
  background: var(--bg-light);
}

.recruit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.recruit-subtitle {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 0.01em;
}

.recruit-text p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.recruit-text .btn {
  margin-top: 30px;
}

/* ========================================
   News Section
   ======================================== */
.news-section {
  background: var(--bg-light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.news-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-dark) 50%, var(--accent-color) 100%);
  background-size: 200% 100%;
  animation: gradientSlide 3s ease-in-out infinite;
}

.news-card::after {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 0;
  width: 60px;
  height: 60px;
  content: "";
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.08) 0%, rgba(179, 27, 27, 0.02) 100%);
  border-radius: 50%;
}

.news-card:hover {
  border-color: rgba(179, 27, 27, 0.3);
  box-shadow: 0 30px 60px rgba(179, 27, 27, 0.18), 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-12px) scale(1.02);
}

.news-card:hover::before {
  animation: gradientSlide 1.5s ease-in-out infinite;
}

.news-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.03) 0%, transparent 100%), linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.news-image::before {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  content: "";
  background: radial-gradient(circle, rgba(179, 27, 27, 0.05) 0%, transparent 70%);
  animation: rotatePattern 20s linear infinite;
}

.news-image::after {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  content: "";
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.08) 0%, transparent 100%);
  border-radius: 50%;
}

.news-image .image-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 60%;
  border-radius: 0;
}
.news-image .image-placeholder img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-image .image-placeholder::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  content: "";
  border: 3px solid rgba(179, 27, 27, 0.2);
  transform: translate(-50%, -50%);
  animation: floatIcon 3s ease-in-out infinite;
}

/* Award Icon - 理事就任 */
.news-icon-award::before {
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1) 0%, rgba(179, 27, 27, 0.05) 100%);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.news-icon-award::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 30px;
  height: 30px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  content: "";
  background: var(--accent-color);
  opacity: 0.15;
  transform: translate(-50%, -50%);
}

/* Location Icon - 事務所移転 */
.news-icon-location::before {
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1) 0%, rgba(179, 27, 27, 0.05) 100%);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.news-icon-location::after {
  position: absolute;
  top: calc(50% - 8px);
  left: 50%;
  z-index: 1;
  width: 24px;
  height: 24px;
  content: "";
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0.2;
  transform: translate(-50%, -50%);
}

/* Update Icon - サイトリニューアル */
.news-icon-update::before {
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1) 0%, rgba(179, 27, 27, 0.05) 100%);
  border-radius: 8px;
}

.news-icon-update::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 40px;
  height: 40px;
  content: "";
  border: 3px solid var(--accent-color);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 0.15;
  transform: translate(-50%, -50%);
  animation: rotate360 2s linear infinite;
}

.news-image .image-placeholder::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  content: "";
  background: radial-gradient(circle, rgba(179, 27, 27, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-in-out infinite;
}

.news-content {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.news-date {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.08em;
  background: rgba(179, 27, 27, 0.08);
  border-radius: 20px;
}

.news-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--primary-color);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
  position: relative;
  color: var(--primary-color);
  text-align: center;
  background: #fff;
}

.contact-section::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: radial-gradient(circle at 50% 50%, rgba(179, 27, 27, 0.05) 0%, transparent 70%);
}

.contact-section .section-label {
  color: var(--accent-color);
}

.contact-section .section-title {
  color: var(--primary-color);
}

.contact-subtitle {
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-color);
  letter-spacing: 0.01em;
}

.contact-section .btn-primary {
  color: var(--secondary-color);
  background: var(--accent-color);
}

.contact-section .btn-primary:hover {
  background: var(--accent-dark);
}

/* ========================================
   Entry CTA Section (Blog Pages)
   ======================================== */
.entry-cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.05) 0%, rgb(255, 255, 255) 50%, rgba(179, 27, 27, 0.05) 100%);
}

.entry-cta-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(179, 27, 27, 0.2), transparent);
}

.entry-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.entry-cta-title {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--accent-color);
}

.entry-cta-title::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  border-radius: 2px;
  transform: translateX(-50%);
}

.entry-cta-description {
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
}

.entry-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.entry-cta-buttons .btn {
  min-width: 200px;
}

/* Responsive */
@media (max-width: 640px) {
  .entry-cta-section {
    padding: 60px 0;
  }
  .entry-cta-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  .entry-cta-description {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .entry-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .entry-cta-buttons .btn {
    width: 100%;
  }
}
/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 80px 0 30px;
  color: var(--secondary-color);
  background: var(--accent-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

/* Footer Logo - Image Ready */
.footer-logo {
  max-width: 250px;
}

.footer-logo-image {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.footer-logo h3 {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-logo p {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 14px;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-column a:hover {
  color: #fff;
  opacity: 1;
}

.footer-bottom {
  padding-top: 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.6;
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  cursor: pointer;
  visibility: hidden;
  background: linear-gradient(135deg, var(--accent-color) 0%, #8B1515 100%);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(179, 27, 27, 0.4);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.show {
  visibility: visible;
  opacity: 1;
}

.scroll-to-top:hover {
  box-shadow: 0 6px 30px rgba(179, 27, 27, 0.6);
  transform: translateY(-5px);
}

.scroll-to-top:active {
  transform: translateY(-3px);
}

.scroll-to-top svg {
  transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

/* ========================================
   Responsive Design
   ======================================== */
/* Tablet - Large (1024px以下) */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  .hero-title {
    font-size: clamp(32px, 5.5vw, 52px);
    line-height: 1.4;
  }
  .section-title {
    font-size: clamp(28px, 4vw, 42px);
  }
  .business-intro,
  .hero-description {
    font-size: 16px;
    line-height: 1.7;
  }
}
/* Tablet (968px以下) */
@media (max-width: 968px) {
  .section {
    padding: 80px 0;
  }
  /* Mobile menu overlay */
  .nav-menu::after {
    position: fixed;
    top: 80px;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: calc(100vh - 80px);
    pointer-events: none;
    visibility: hidden;
    content: "";
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .nav-menu.active::after {
    visibility: visible;
    opacity: 1;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    z-index: 999;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 80px);
    padding: 40px 20px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    background: linear-gradient(180deg, var(--accent-color) 0%, #8B1515 100%);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    pointer-events: none;
    content: "";
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: menuGlow 8s ease-in-out infinite alternate;
  }
  @keyframes menuGlow {
    0% {
      opacity: 0.3;
    }
    100% {
      opacity: 0.7;
    }
  }
  .nav-menu.active {
    right: 0;
    opacity: 1;
  }
  .menu-toggle {
    display: flex;
  }
  /* Mobile submenu styles */
  .nav-menu > li {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin-bottom: 0;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInMenu 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  @keyframes slideInMenu {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .nav-menu > li > a {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 16px 24px;
    overflow: hidden;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    touch-action: manipulation;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  }
  .nav-menu > li > a::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  /* Mobile touch feedback */
  .nav-menu .has-submenu {
    width: 100%;
    max-width: 320px;
  }
  .nav-menu .has-submenu > a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    text-align: center;
  }
  .nav-menu .submenu-toggle {
    position: absolute !important;
    top: 22px;
    right: 20px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    margin-left: 0;
    color: rgba(255, 255, 255, 0.9);
    touch-action: manipulation;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  }
  .nav-menu .has-submenu {
    position: relative;
  }
  .nav-menu .submenu {
    position: static;
    display: block;
    width: 100%;
    max-height: 0;
    padding: 0 12px;
    margin-bottom: 0;
    overflow: hidden;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .nav-menu .submenu.active {
    max-height: 500px;
    padding: 12px;
    margin-top: 10px;
    pointer-events: auto;
    /* Remove delay for pointer-events */
    touch-action: pan-y;
    opacity: 1;
    transition-delay: 0s;
    /* Allow vertical scrolling only */
  }
  /* Ensure links are immediately tappable when submenu opens */
  .nav-menu .submenu.active a {
    pointer-events: auto !important;
  }
  .nav-menu .submenu li {
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    animation: slideInSubmenu 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  @keyframes slideInSubmenu {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .nav-menu .submenu.active li:nth-child(1) {
    animation-delay: 0.03s;
  }
  .nav-menu .submenu.active li:nth-child(2) {
    animation-delay: 0.06s;
  }
  .nav-menu .submenu.active li:nth-child(3) {
    animation-delay: 0.09s;
  }
  .nav-menu .submenu.active li:nth-child(4) {
    animation-delay: 0.12s;
  }
  .nav-menu .submenu.active li:nth-child(5) {
    animation-delay: 0.15s;
  }
  .nav-menu .submenu.active li:nth-child(6) {
    animation-delay: 0.18s;
  }
  .nav-menu .submenu li:last-child {
    margin-bottom: 0;
  }
  .nav-menu .submenu a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 14px 20px;
    overflow: hidden;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    touch-action: manipulation;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  }
  .nav-menu .submenu a::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-menu .submenu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
  }
  .nav-menu .submenu a:hover::before {
    opacity: 1;
  }
  /* Mobile touch feedback for submenu */
  .nav-menu .submenu a:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.98);
  }
  /* Mobile touch feedback for submenu toggle */
  .nav-menu .submenu-toggle:active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.95);
  }
  .nav-menu .btn-contact {
    position: relative;
    z-index: 10;
    display: block;
    width: auto;
    min-width: 200px;
    padding: 16px 40px;
    margin-top: 16px;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    touch-action: manipulation;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-tap-highlight-color: rgba(179, 27, 27, 0.2);
  }
  .nav-menu .btn-contact::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(179, 27, 27, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-menu .btn-contact:hover {
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px) scale(1.05);
  }
  .nav-menu .btn-contact:hover::before {
    opacity: 1;
  }
  /* Mobile touch feedback for contact button */
  .nav-menu .btn-contact:active {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: scale(0.98);
  }
  .about-content,
  .recruit-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .business-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.5;
  }
  .section-title {
    font-size: clamp(26px, 3.5vw, 40px);
  }
  .about-subtitle,
  .recruit-subtitle {
    font-size: 20px;
    line-height: 1.5;
  }
  .contact-subtitle {
    font-size: 20px;
    line-height: 1.6;
  }
  .business-intro {
    font-size: 16px;
  }
  .scroll-to-top {
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
  }
}
/* Mobile - Large (768px以下) */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 70px 0;
  }
  .section-action {
    margin-top: 30px;
    margin-bottom: 70px;
  }
  .hero-title {
    font-size: clamp(28px, 5.5vw, 44px);
    line-height: 1.4;
    letter-spacing: 0;
  }
  .hero-description {
    margin-bottom: 40px;
    font-size: 16px;
  }
  .hero-subtitle {
    margin-top: 18px;
    font-size: 15px;
  }
  .section-title {
    font-size: clamp(24px, 4.5vw, 36px);
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .section-label {
    font-size: 10px;
  }
  .about-subtitle,
  .recruit-subtitle {
    font-size: 18px;
    line-height: 1.5;
  }
  .contact-subtitle {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
  }
  .business-intro {
    font-size: 15px;
    line-height: 1.7;
  }
  .business-card h3 {
    font-size: 20px;
  }
  .news-title {
    font-size: 16px;
  }
  .works-grid,
  .works-grid-three {
    grid-template-columns: 1fr;
  }
  /* Service Detail responsive */
  .service-vertical-header .section-label {
    display: block;
    margin-bottom: 12px;
  }
  .service-vertical-header .section-title {
    display: block;
    margin-top: 0;
  }
  .service-process {
    flex-direction: column;
    gap: 30px;
  }
  .process-arrow {
    transform: rotate(90deg);
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  /* Business Grid responsive */
  .business-grid-three {
    grid-template-columns: 1fr;
  }
  /* Business Why responsive */
  .business-why-section {
    padding: 50px 30px;
    margin-top: 60px;
  }
  .why-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-illustration {
    max-width: 200px;
    margin: 0 auto;
  }
  /* AI Planning responsive */
  .ai-planning-section {
    padding: 60px 30px;
    margin-top: 60px;
  }
  .ai-planning-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ai-illustration {
    max-width: 220px;
  }
  .ai-planning-title {
    font-size: clamp(24px, 5vw, 32px);
  }
  .ai-example-item {
    padding: 20px;
  }
  .ai-example-icon {
    width: 42px;
    height: 42px;
  }
}
/* Mobile - Small (640px以下) */
@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 50px;
  }
  .section-action {
    margin-top: 20px;
    margin-bottom: 60px;
  }
  .hero-title {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.4;
  }
  .section-title {
    font-size: clamp(22px, 5.5vw, 32px);
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .about-subtitle,
  .recruit-subtitle,
  .contact-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
  .hero-description {
    font-size: 15px;
  }
  .business-intro {
    font-size: 14px;
    line-height: 1.8;
  }
  .business-card {
    padding: 40px 30px;
  }
  .business-card h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .business-card li {
    font-size: 14px;
  }
  /* Service Detail Section */
  .process-card {
    padding: 30px 20px;
  }
  .process-title {
    font-size: 18px;
  }
  .features-title {
    font-size: 24px;
  }
  .feature-item h4 {
    font-size: 18px;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .btn {
    padding: 12px 28px;
    font-size: 13px;
  }
  .btn-large {
    padding: 16px 40px;
    font-size: 15px;
  }
  /* Business Why responsive for small mobile */
  .business-why-section {
    padding: 40px 20px;
  }
  .why-title {
    font-size: clamp(22px, 5vw, 30px);
  }
  .why-item {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  .why-item-text h4 {
    font-size: 17px;
  }
  .why-item-text p {
    font-size: 14px;
  }
  /* AI Planning responsive for small mobile */
  .ai-planning-section {
    padding: 40px 20px;
  }
  .ai-planning-title {
    font-size: clamp(20px, 6vw, 28px);
  }
  .ai-planning-intro {
    font-size: 15px;
  }
  .ai-examples-title {
    font-size: 20px;
  }
  .ai-example-item {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  .ai-example-text h5 {
    font-size: 16px;
  }
  .ai-example-text p {
    font-size: 14px;
  }
}
/* Mobile - Extra Small (480px以下) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 50px 0;
  }
  .section-action {
    margin-top: 15px;
    margin-bottom: 50px;
  }
  .hero-title {
    font-size: 30px;
    line-height: 1.4;
  }
  .section-title {
    font-size: 22px;
  }
  .about-subtitle,
  .recruit-subtitle,
  .contact-subtitle {
    font-size: 15px;
  }
  .business-intro,
  .hero-description {
    font-size: 14px;
  }
  .business-card {
    padding: 30px 20px;
  }
  .business-card h3 {
    font-size: 16px;
  }
  /* Business Why responsive for extra small mobile */
  .business-why-section {
    padding: 30px 16px;
  }
  .news-content {
    padding: 20px;
  }
  .news-title {
    font-size: 14px;
  }
}
/* ========================================
   Page Header Styles
   ======================================== */
.page-header {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.08) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(179, 27, 27, 0.05) 100%), linear-gradient(180deg, rgb(249, 250, 251) 0%, rgb(255, 255, 255) 100%);
}

.page-header::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.page-header::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 20% 30%, rgba(179, 27, 27, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(179, 27, 27, 0.03) 0%, transparent 50%);
  animation: headerGlow 15s ease-in-out infinite alternate;
}

@keyframes headerGlow {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.page-header-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-label {
  display: inline-block;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.page-title {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--primary-color);
}

.page-subtitle {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.page-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
}

/* ========================================
   Breadcrumb Navigation
   ======================================== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 20px 0;
  font-size: 14px;
  color: var(--text-light);
}

.breadcrumb-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--accent-color);
}

.breadcrumb-item.active {
  font-weight: 500;
  color: var(--text-color);
}

.breadcrumb-separator {
  color: var(--border-color);
  -webkit-user-select: none;
          user-select: none;
}

/* Mission Section - Alternative Style */
.mission-section-alt {
  padding: 0;
  background: var(--secondary-color);
}

.mission-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mission-hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.mission-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.mission-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.85) 0%, rgba(139, 0, 0, 0.75) 100%);
}

.mission-overlay-content {
  padding: 40px;
  color: #fff;
  text-align: center;
}

.mission-label {
  display: inline-block;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.9;
}

.mission-hero-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.mission-description {
  padding: 100px 0;
  background: var(--bg-light);
}

.mission-desc-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.mission-lead {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--primary-color);
  text-align: center;
}

.mission-text {
  margin-bottom: 60px;
  font-size: 17px;
  line-height: 2;
  color: var(--text-light);
  text-align: center;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.mission-value-item {
  padding: 40px 30px;
  text-align: center;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-value-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(179, 27, 27, 0.12);
  transform: translateY(-8px);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1) 0%, rgba(179, 27, 27, 0.05) 100%);
  border-radius: 50%;
}

.mission-value-item h4 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.mission-value-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Company Info Section */
.company-info-section {
  background: var(--secondary-color);
}

.company-info-table {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg-light);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row:hover {
  background-color: rgba(179, 27, 27, 0.02);
}

.info-label {
  padding: 30px;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(179, 27, 27, 0.03);
  border-right: 1px solid var(--border-color);
}

.info-value {
  padding: 30px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Group Section */
.group-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(179, 27, 27, 0.02) 100%);
}

.group-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  isolation: isolate;
}

.group-grid-five {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.group-grid-six {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Group Company Card Links */
.group-card-link {
  position: relative;
  z-index: 10;
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  pointer-events: auto !important;
  cursor: pointer !important;
  outline: none;
}

.group-card {
  height: 100%;
  padding: 50px 35px;
  text-align: center;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.group-card,
.group-card * {
  pointer-events: none !important;
}

.group-card-link:hover .group-card {
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(179, 27, 27, 0.15);
  transform: translateY(-10px);
}

/* Group Logo Wrapper - For future logo images */
.group-logo-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.group-logo-image {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.group-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1) 0%, rgba(179, 27, 27, 0.05) 100%);
  border-radius: 20px;
}

/* Hide icon when logo image is present */
.group-logo-image ~ .group-icon {
  display: none;
}

.group-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.group-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Access Section */
.access-section {
  background: var(--secondary-color);
}

.access-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.access-map {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.access-info {
  padding: 30px;
}

.access-info h3 {
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  border-bottom: 2px solid rgba(179, 27, 27, 0.1);
}

.access-address,
.access-station {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
}

.cta-content {
  color: #fff;
  text-align: center;
}

.cta-title {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
}

.cta-text {
  margin-bottom: 40px;
  font-size: 18px;
  opacity: 0.9;
}

.cta-content .btn-primary {
  color: var(--accent-color);
  background: #fff;
}

.cta-content .btn-primary:hover {
  background: var(--bg-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

/* Responsive - Company Pages */
@media (max-width: 768px) {
  .page-header {
    padding: 120px 0 60px;
  }
  .mission-hero-image {
    height: 400px;
  }
  .mission-hero-title {
    font-size: clamp(32px, 6vw, 48px);
  }
  .mission-description {
    padding: 70px 0;
  }
  .mission-values {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .company-info-table {
    border-radius: 15px;
  }
  .info-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px;
  }
  .info-label {
    padding: 0 0 8px;
    font-size: 13px;
    background: transparent;
    border-right: 0;
    border-bottom: 0;
  }
  .info-value {
    padding: 0;
    font-size: 15px;
  }
  .group-grid,
  .group-grid-five,
  .group-grid-six {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .access-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-section {
    padding: 80px 0;
  }
}
@media (max-width: 640px) {
  .page-header {
    padding: 140px 0 50px;
  }
  .page-title {
    font-size: clamp(28px, 6vw, 40px);
  }
  .mission-hero-image {
    height: 350px;
  }
  .mission-overlay-content {
    padding: 20px;
  }
  .mission-hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }
  .mission-description {
    padding: 60px 0;
  }
  .mission-lead {
    font-size: 20px;
  }
  .mission-text {
    font-size: 16px;
  }
  .mission-value-item {
    padding: 30px 20px;
  }
  .info-label,
  .info-value {
    padding: 15px;
  }
  .group-card {
    padding: 40px 25px;
  }
  .cta-section {
    padding: 60px 0;
  }
}
/* ========================================
   Service Page Styles
   ======================================== */
.service-overview-section {
  background: var(--bg-light);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-overview-card {
  position: relative;
  padding: 50px 40px;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-overview-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(179, 27, 27, 0.15);
  transform: translateY(-10px);
}

.service-number {
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: rgba(179, 27, 27, 0.1);
}

.service-overview-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
}

.service-badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-radius: 20px;
}

.service-overview-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Service Detail Vertical Layout */
.container-narrow {
  max-width: 900px;
  padding: 0 30px;
  margin: 0 auto;
}

.service-detail-vertical {
  position: relative;
  padding: 120px 0;
  background: var(--secondary-color);
}

.service-detail-dark {
  background: var(--bg-light);
}

.service-vertical-header {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}

.service-vertical-number {
  margin-bottom: -40px;
  font-family: "Inter", sans-serif;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: rgba(179, 27, 27, 0.05);
}

.service-badge-large {
  display: inline-block;
  padding: 8px 20px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-radius: 25px;
  box-shadow: 0 4px 16px rgba(179, 27, 27, 0.3);
}

.service-vertical-image {
  position: relative;
  margin: 50px 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-vertical-image img {
  display: block;
  width: 100%;
  height: auto;
}

.service-image-badge {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(179, 27, 27, 0.5);
}

.badge-icon {
  color: #fff;
}

.service-vertical-content {
  padding: 40px 0;
}

.service-vertical-intro {
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 2;
  color: var(--text-light);
  text-align: center;
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 50px 0;
  margin-bottom: 60px;
  border-top: 1px solid rgba(179, 27, 27, 0.1);
  border-bottom: 1px solid rgba(179, 27, 27, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-value {
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-color);
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Group Link Wrapper */
.group-link-wrapper {
  padding-top: 40px;
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(179, 27, 27, 0.1);
}

.feature-box {
  padding: 35px 25px;
  text-align: center;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-dark .feature-box {
  background: var(--secondary-color);
}

.feature-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1) 0%, rgba(179, 27, 27, 0.05) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.feature-box h4 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.feature-box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Service Page Responsive */
@media (max-width: 768px) {
  .service-overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .container-narrow {
    padding: 0 20px;
  }
  .service-detail-vertical {
    padding: 80px 0;
  }
  .service-vertical-number {
    font-size: 80px;
  }
  .service-stats {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 35px 0;
  }
  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .service-image-badge {
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
  }
  .badge-icon svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 640px) {
  .service-overview-card {
    padding: 40px 30px;
  }
  .service-number {
    font-size: 36px;
  }
  .service-overview-card h3 {
    font-size: 20px;
  }
  .service-detail-vertical {
    padding: 60px 0;
  }
  .service-vertical-number {
    margin-bottom: -20px;
    font-size: 60px;
  }
  .service-vertical-intro {
    font-size: 16px;
  }
  .stat-value {
    font-size: 28px;
  }
  .stat-label {
    font-size: 12px;
  }
  .feature-box {
    padding: 30px 20px;
  }
  .feature-box h4 {
    font-size: 16px;
  }
}
/* ========================================
   Additional Styles for New Pages (News, Contact, Recruitment, etc.)
   ======================================== */
/* Nav Active State */
.nav-menu a.active {
  color: #fff;
}

.nav-menu a.active::after {
  width: 100%;
}

/* Button Nav Styles */
.btn-nav {
  padding: 10px 24px !important;
  color: #fff;
  background: var(--accent-color);
  border-radius: 30px;
}

.btn-nav:hover {
  background: #a81e1e;
  transform: translateY(-2px);
}

.btn-nav.active {
  background: var(--accent-color);
}

/* Footer Nav Updates */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-nav-group h3 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-nav-group ul {
  list-style: none;
}

.footer-nav-group li {
  margin-bottom: 12px;
}

.footer-nav-group a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-nav-group a:hover {
  padding-left: 5px;
  color: #fff;
}

.footer-logo h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.footer-logo p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive for Footer Nav */
@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
/* ========================================
   Contact Page - Modern Design
   ======================================== */
/* Contact Intro Section */
.contact-intro-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.contact-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro-title {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-color);
}

.contact-intro-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  padding: 80px 0 100px;
  background: #fff;
}

.contact-form-container {
  padding: 60px;
  background: var(--bg-light);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Contact Form Modern */
.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field-full {
  grid-column: 1/-1;
}

.form-label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
}

.label-required {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-radius: 12px;
}

.label-optional {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 0.05em;
  background: #e9ecef;
  border-radius: 12px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: "Inter", "M PLUS Rounded 1c", sans-serif;
  font-size: 15px;
  color: var(--text-color);
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(179, 27, 27, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #adb5bd;
}

.form-select {
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23495057' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-textarea {
  min-height: 160px;
  line-height: 1.7;
  resize: vertical;
}

/* Checkbox */
.form-checkbox-wrapper {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.form-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent-color);
  cursor: pointer;
}

.checkbox-label {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
}

.privacy-link {
  font-weight: 500;
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: var(--accent-dark);
}

/* Submit Button */
.form-submit-wrapper {
  margin-top: 24px;
}
.form-submit-wrapper .wpcf7-spinner {
  display: none;
}

.btn-submit-contact {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(179, 27, 27, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit-contact:hover {
  box-shadow: 0 8px 24px rgba(179, 27, 27, 0.4);
  transform: translateY(-3px);
}

.btn-submit-contact:active {
  transform: translateY(-1px);
}

.btn-submit-contact:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-submit-contact:hover .btn-icon {
  transform: translateX(5px);
}

/* Office Section */
.office-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.office-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.office-map-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.office-info-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.office-info-card {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.office-info-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(179, 27, 27, 0.12);
  transform: translateY(-4px);
}

.office-info-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-radius: 14px;
}

.office-info-content {
  flex: 1;
}

.office-info-label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.office-info-value {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-color);
}

/* ========================================
   Filter Tabs - Modern Design (Blog & News)
   ======================================== */
/* Filter Section */
.blog-filter-section,
.news-filter-section {
  padding: 40px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.blog-filter,
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Filter Button - Modern Pill Style */
.filter-btn {
  position: relative;
  padding: 12px 28px;
  overflow: hidden;
  font-family: "Inter", "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: 0.02em;
  cursor: pointer;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 0;
  height: 100%;
  content: "";
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  transition: width 0.3s ease;
}

.filter-btn span,
.filter-btn::after {
  position: relative;
  z-index: 1;
}

.filter-btn:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(179, 27, 27, 0.15);
  transform: translateY(-2px);
}

.filter-btn:hover::before {
  width: 100%;
}

.filter-btn:hover {
  color: #fff;
}

/* Active State */
.filter-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(179, 27, 27, 0.3);
}

.filter-btn.active::before {
  width: 0;
}

/* Add icon for active state */
.filter-btn.active::after {
  margin-left: 6px;
  font-size: 12px;
  font-weight: bold;
  content: "✓";
}

/* Pressed State */
.filter-btn:active {
  box-shadow: 0 2px 6px rgba(179, 27, 27, 0.2);
  transform: translateY(0);
}

/* Responsive - Filter Tabs */
@media (max-width: 768px) {
  .blog-filter,
  .news-filter {
    gap: 10px;
    padding: 0 20px;
  }
  .filter-btn {
    padding: 10px 22px;
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .blog-filter-section,
  .news-filter-section {
    padding: 30px 0;
  }
  .blog-filter,
  .news-filter {
    gap: 8px;
    padding: 0 15px;
  }
  .filter-btn {
    padding: 9px 18px;
    font-size: 12px;
  }
}
/* ========================================
   Pagination - Modern Design
   ======================================== */
.pagination {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.pagination-numbers {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Pagination Button Base */
.pagination-btn,
.pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  font-family: "Inter", "M PLUS Rounded 1c", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pagination Number Buttons */
.pagination-number {
  width: 44px;
  min-width: 44px;
  padding: 0;
}

.pagination-number:hover:not(.active) {
  background: rgba(179, 27, 27, 0.05);
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(179, 27, 27, 0.1);
  transform: translateY(-2px);
}

.pagination-number.active {
  color: #fff;
  cursor: default;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(179, 27, 27, 0.3);
  transform: scale(1.05);
}

/* Prev/Next Buttons */
.pagination-btn {
  position: relative;
  padding: 0 24px;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pagination-btn::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  transition: left 0.3s ease;
}

.pagination-btn:hover:not(:disabled)::before {
  left: 0;
}

.pagination-btn:hover:not(:disabled) {
  color: #fff;
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(179, 27, 27, 0.15);
  transform: translateY(-2px);
}

.pagination-btn span {
  position: relative;
  z-index: 1;
}

/* Disabled State */
.pagination-btn:disabled {
  color: #adb5bd;
  cursor: not-allowed;
  background: #f8f9fa;
  border-color: #e9ecef;
  opacity: 0.5;
}

.pagination-btn:disabled:hover {
  box-shadow: none;
  transform: none;
}

/* Add Arrow Icons */
.pagination-prev::before {
  position: relative;
  z-index: 1;
  margin-right: 6px;
  font-size: 16px;
  content: "←";
}

.pagination-next::after {
  position: relative;
  z-index: 1;
  margin-left: 6px;
  font-size: 16px;
  content: "→";
}

/* Responsive - Pagination */
@media (max-width: 768px) {
  .pagination {
    gap: 10px;
    padding: 30px 0;
    margin-top: 60px;
  }
  .pagination-btn,
  .pagination-number {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .pagination-number {
    width: 40px;
  }
  .pagination-btn {
    padding: 0 20px;
  }
}
@media (max-width: 640px) {
  .pagination {
    gap: 8px;
    padding: 20px 0;
    margin-top: 50px;
  }
  .pagination-btn,
  .pagination-number {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
    border-radius: 10px;
  }
  .pagination-number {
    width: 36px;
  }
  .pagination-btn {
    padding: 0 16px;
    font-size: 13px;
  }
  .pagination-numbers {
    gap: 6px;
  }
}
/* Responsive - Contact Page */
@media (max-width: 1024px) {
  .office-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .office-map-wrapper {
    height: 450px;
  }
}
@media (max-width: 768px) {
  .contact-form-container {
    padding: 40px 30px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-intro-title {
    font-size: 26px;
  }
  .contact-intro-text {
    font-size: 15px;
  }
  .office-map-wrapper {
    height: 350px;
  }
  .office-info-card {
    gap: 16px;
    padding: 24px;
  }
  .office-info-icon {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 640px) {
  .contact-form-wrapper {
    padding: 60px 0;
  }
  .contact-form-container {
    padding: 30px 20px;
    border-radius: 16px;
  }
  .form-grid {
    gap: 20px;
  }
  .contact-intro-title {
    margin-bottom: 16px;
    font-size: 22px;
  }
  .contact-intro-text {
    font-size: 14px;
    line-height: 1.8;
  }
  .btn-submit-contact {
    padding: 18px 32px;
    font-size: 15px;
  }
  .office-map-wrapper {
    height: 300px;
    border-radius: 12px;
  }
  .office-info-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
  .office-info-icon {
    width: 44px;
    height: 44px;
  }
}
/* ========================================
   Recruitment Page - Modern Design
   ======================================== */
/* Recruit Hero - Modern */
.recruit-hero-modern {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
  padding-top: 80px;
  overflow: hidden;
}

.recruit-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.recruit-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.85) 0%, rgba(139, 0, 0, 0.75) 100%);
}

.recruit-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.recruit-hero-content-box {
  max-width: 700px;
}

.recruit-hero-title-modern {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
}

.recruit-hero-subtitle-modern {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.recruit-hero-actions-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-recruit-primary,
.btn-recruit-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-recruit-primary {
  color: var(--accent-color);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-recruit-primary:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.btn-recruit-secondary {
  color: var(--accent-color);
  background: #fff;
  border: 2px solid #fff;
}

.btn-recruit-secondary:hover {
  color: #fff;
  background: var(--accent-color);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Concept Section - Modern */
.recruit-concept-section-modern {
  padding: 100px 0;
  background: var(--bg-light);
}

.section-description {
  margin-top: 12px;
  font-size: 16px;
  color: var(--text-light);
}

.recruit-concept-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.concept-card-modern {
  padding: 50px 40px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.concept-card-modern:hover {
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(179, 27, 27, 0.15);
  transform: translateY(-10px);
}

.concept-icon-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
  border-radius: 20px;
}

.concept-title-modern {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.concept-description-modern {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Culture Section with Image */
.recruit-culture-section {
  padding: 100px 0;
  background: #fff;
}

.culture-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.culture-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.culture-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.culture-image-badge {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding: 20px 30px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-number {
  display: block;
  margin-bottom: 4px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-color);
}

.badge-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.culture-content {
  padding: 20px 0;
}

.culture-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.culture-feature-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.culture-check {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-radius: 50%;
}

.culture-feature-content h4 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.culture-feature-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Benefits Section - Modern */
.recruit-benefits-section-modern {
  padding: 100px 0;
  background: #fff;
}

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

.benefit-card-modern {
  padding: 40px 32px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-icon-modern {
  display: block;
  margin-bottom: 20px;
  font-size: 48px;
}

.benefit-title-modern {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.benefit-description-modern {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Office Section */
.recruit-office-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.office-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.office-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.office-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-block: 40px;
}

.office-feature {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.office-feature-icon {
  font-size: 24px;
}

/* Links Section - Modern */
.recruit-links-section-modern {
  padding: 100px 0;
  background: #fff;
}

.recruit-links-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.recruit-link-card-modern {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  overflow: hidden;
  text-decoration: none;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recruit-link-card-modern::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.recruit-link-card-modern:hover::before {
  transform: scaleX(1);
}

.recruit-link-card-modern:hover {
  border-color: var(--accent-color);
  box-shadow: 0 16px 32px rgba(179, 27, 27, 0.15);
  transform: translateY(-8px);
}

.recruit-link-icon-modern {
  margin-bottom: 20px;
  font-size: 40px;
}

.recruit-link-title-modern {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.recruit-link-description-modern {
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

.recruit-link-arrow-modern {
  margin-top: 16px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.recruit-link-card-modern:hover .recruit-link-arrow-modern {
  transform: translateX(8px);
}

/* CTA Section - Modern */
.recruit-cta-section-modern {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
}

.recruit-cta-box-modern {
  max-width: 800px;
  margin: 0 auto;
}

.recruit-cta-title-modern {
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}

.recruit-cta-description {
  margin-bottom: 20px;
}

.recruit-cta-description-modern {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.recruit-cta-actions {
  display: flex;
  gap: 16px;
}

.recruit-cta-actions-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-primary {
  color: var(--accent-color);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.btn-cta-secondary {
  color: var(--accent-color);
  background: #fff;
  border: 2px solid #fff;
}

.btn-cta-secondary:hover {
  color: #fff;
  background: var(--accent-color);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ========================================
   Page Header Decoration
   ======================================== */
.page-header-decoration {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 30px auto 20px;
}

.decoration-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(179, 27, 27, 0.3) 30%, var(--accent-color) 50%, rgba(179, 27, 27, 0.3) 70%, transparent 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(179, 27, 27, 0.15);
}

.decoration-icon {
  font-size: 32px;
  filter: drop-shadow(0 4px 8px rgba(179, 27, 27, 0.2));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.page-header-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

/* Responsive - Page Header Decoration */
@media (max-width: 768px) {
  .page-header-decoration {
    max-width: 300px;
    margin: 24px auto 16px;
  }
  .decoration-icon {
    font-size: 24px;
  }
  .page-header-description {
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .page-header-decoration {
    gap: 16px;
    margin: 20px auto 12px;
  }
  .decoration-icon {
    font-size: 22px;
  }
  .page-header-description {
    font-size: 14px;
  }
}
/* ========================================
   News List Page
   ======================================== */
.news-list-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  gap: 40px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
  border-radius: 12px;
}

.date-year {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
}

.date-md {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-color);
}

.news-content {
  flex: 1;
}

.news-category {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 20px;
}

.news-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--primary-color);
}

.news-description {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

.news-meta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.news-date-text {
  font-size: 13px;
  color: var(--text-light);
}

/* Responsive - News List */
@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
    gap: 24px;
    padding: 30px 24px;
  }
  .news-date {
    flex-direction: row;
    gap: 12px;
    width: -moz-fit-content;
    width: fit-content;
    min-width: auto;
    padding: 12px 20px;
  }
  .date-year {
    margin-bottom: 0;
    font-size: 13px;
  }
  .date-md {
    font-size: 20px;
  }
  .news-title {
    font-size: 18px;
  }
  .news-description {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .news-list-section {
    padding: 60px 0;
  }
  .news-list {
    gap: 24px;
  }
  .news-item {
    padding: 24px 20px;
  }
  .news-title {
    font-size: 17px;
  }
}
/* ========================================
   Blog List Page - Simple Design
   ======================================== */
.blog-list-section-simple {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.blog-card-simple {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-simple:hover {
  border-color: var(--accent-color);
  box-shadow: 0 16px 32px rgba(179, 27, 27, 0.12);
  transform: translateY(-8px);
}

.blog-read-more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.blog-card-simple:hover .blog-read-more {
  transform: translateX(5px);
}

.blog-card-header {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.blog-category {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
  border-radius: 20px;
}

.blog-date {
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--primary-color);
}

/* Responsive - Blog List */
@media (max-width: 1024px) {
  .blog-grid-simple {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .blog-list-section-simple {
    padding: 80px 0;
  }
  .blog-grid-simple {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-card-simple {
    padding: 28px 24px;
  }
  .blog-card-header {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .blog-card-title {
    font-size: 17px;
  }
}
@media (max-width: 640px) {
  .blog-list-section-simple {
    padding: 60px 0;
  }
  .blog-card-simple {
    padding: 24px 20px;
  }
  .blog-card-title {
    font-size: 16px;
  }
}
/* ========================================
   Coming Soon / Under Construction Page
   ======================================== */
.blog-content-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.coming-soon-box {
  max-width: 700px;
  padding: 80px 60px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.coming-soon-icon {
  margin-bottom: 32px;
  font-size: 72px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.coming-soon-title {
  margin-bottom: 24px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--primary-color);
}

.coming-soon-description {
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-light);
}

.coming-soon-note {
  padding-top: 32px;
  margin-bottom: 40px;
  font-size: 15px;
  color: var(--text-light);
  border-top: 1px solid var(--border-color);
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Responsive - Coming Soon */
@media (max-width: 768px) {
  .coming-soon-box {
    padding: 60px 40px;
  }
  .coming-soon-icon {
    font-size: 64px;
  }
  .coming-soon-title {
    font-size: 28px;
  }
  .coming-soon-description {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .news-content-section,
  .blog-content-section {
    padding: 60px 0;
  }
  .coming-soon-box {
    padding: 50px 30px;
  }
  .coming-soon-icon {
    font-size: 56px;
  }
  .coming-soon-title {
    font-size: 24px;
  }
  .coming-soon-description {
    font-size: 15px;
  }
  .coming-soon-actions {
    flex-direction: column;
  }
  .coming-soon-actions .btn {
    width: 100%;
  }
}
/* Responsive - Recruitment Page */
@media (max-width: 1024px) {
  .culture-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .recruit-concept-grid-modern {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .benefits-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  .recruit-links-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .recruit-hero-modern {
    min-height: 500px;
  }
  .recruit-hero-title-modern {
    font-size: 36px;
  }
  .recruit-hero-subtitle-modern {
    font-size: 16px;
  }
  .benefits-grid-modern {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .recruit-links-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .office-features {
    flex-direction: column;
    gap: 16px;
  }
  .recruit-cta-title-modern {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .recruit-hero-modern {
    min-height: 450px;
  }
  .recruit-hero-title-modern {
    font-size: 28px;
  }
  .recruit-hero-subtitle-modern {
    margin-bottom: 32px;
    font-size: 15px;
  }
  .recruit-hero-actions-modern {
    flex-direction: column;
  }
  .btn-recruit-primary,
  .btn-recruit-secondary {
    width: 100%;
    padding: 14px 32px;
    font-size: 15px;
  }
  .culture-image-badge {
    right: 20px;
    bottom: 20px;
    padding: 16px 24px;
  }
  .badge-number {
    font-size: 28px;
  }
  .recruit-cta-title-modern {
    font-size: 26px;
  }
  .recruit-cta-description-modern {
    font-size: 16px;
  }
  .recruit-cta-actions-modern {
    flex-direction: column;
  }
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    padding: 16px 40px;
    font-size: 16px;
  }
}
/* ========================================
   Blog Article Detail Page
   ======================================== */
.blog-article {
  padding: 80px 0 100px;
  background: var(--bg-light);
}

.container-small {
  max-width: 900px;
  padding: 0 30px;
  margin: 0 auto;
}

/* Article Header */
.article-header {
  margin-bottom: 50px;
  text-align: center;
}

.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.article-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.article-category {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-radius: 20px;
}

.article-title {
  margin-bottom: 20px;
  font-size: clamp(28px, 5vw, 30px);
  font-weight: 800;
  line-height: 1.4;
  color: var(--primary-color);
}

.article-intro {
  margin-top: 20px;
}

.article-dept,
.article-team {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

.article-dept {
  font-weight: 600;
  color: var(--accent-color);
}

/* Article Image */
.article-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}

.article-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.member-icon-large {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  overflow: hidden;
  background: #fff;
  border: 4px solid var(--bg-light) !important;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Blog Member Photo - 顔写真が挿入される場合のスタイル */
.blog-member-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

/* Blog Placeholder Icon - プレースホルダーアイコン */
.blog-placeholder-icon {
  width: 120px;
  height: 120px;
}

/* Article Content */
.article-content {
  padding: 60px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.intro-text {
  padding: 30px;
  margin-bottom: 50px;
  font-size: 17px;
  line-height: 2;
  color: var(--text-color);
  background: var(--bg-light);
  border-left: 4px solid var(--accent-color);
  border-radius: 16px;
}

/* Q&A Section */
.qa-section h2 {
  padding-bottom: 20px;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  border-bottom: 2px solid rgba(179, 27, 27, 0.1);
}

.qa-item {
  padding: 32px;
  margin-bottom: 36px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.qa-item:hover {
  border-color: rgba(179, 27, 27, 0.2);
  box-shadow: 0 4px 16px rgba(179, 27, 27, 0.08);
}

.question {
  display: flex;
  gap: 8px;
  align-items: start;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--accent-color);
}

.answer {
  padding-left: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-color);
}

.article-footer-message {
  padding: 40px;
  margin-top: 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.05) 0%, rgba(139, 0, 0, 0.02) 100%);
  border-radius: 16px;
}

.article-footer-message p {
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-color);
}

.article-footer-message .closing-note {
  font-size: 15px;
  color: var(--text-light);
}

/* CTA in Article */
.article-cta {
  padding: 40px;
  margin-top: 40px;
  text-align: center;
  background: var(--bg-light);
  border-radius: 16px;
}

.article-cta .btn-primary {
  padding: 16px 48px;
  font-size: 16px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
}

/* Back to Blog Button */
.article-nav {
  margin-top: 60px;
  text-align: center;
}

.btn-back {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-back:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(179, 27, 27, 0.15);
  transform: translateY(-2px);
}

/* Responsive - Blog Article */
@media (max-width: 768px) {
  .blog-article {
    padding: 40px 0 80px;
  }
  .container-small {
    padding: 0 20px;
  }
  .article-header {
    margin-bottom: 40px;
  }
  .article-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  .article-content {
    padding: 40px 30px;
    border-radius: 20px;
  }
  .intro-text {
    padding: 24px;
    font-size: 16px;
  }
  .qa-section h2 {
    margin-bottom: 32px;
    font-size: 24px;
  }
  .qa-item {
    padding: 24px;
    margin-bottom: 28px;
  }
  .question {
    font-size: 17px;
  }
  .answer {
    font-size: 15px;
  }
  .article-footer-message {
    padding: 32px 24px;
  }
  .article-footer-message p {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .blog-article {
    padding: 30px 0 60px;
  }
  .container-small {
    padding: 0 16px;
  }
  .article-header {
    margin-bottom: 30px;
  }
  .article-meta {
    flex-direction: column;
    gap: 12px;
  }
  .article-title {
    margin-bottom: 16px;
    font-size: 22px;
  }
  .article-image {
    margin: 30px 0;
  }
  .member-icon-large {
    width: 160px;
    height: 160px;
  }
  .member-icon-large svg {
    width: 100px;
    height: 100px;
  }
  .article-content {
    padding: 30px 20px;
    border-radius: 16px;
  }
  .intro-text {
    padding: 20px;
    font-size: 15px;
    line-height: 1.9;
  }
  .qa-section h2 {
    padding-bottom: 16px;
    margin-bottom: 28px;
    font-size: 22px;
  }
  .qa-item {
    padding: 20px;
    margin-bottom: 24px;
    border-radius: 12px;
  }
  .question {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .answer {
    font-size: 14px;
    line-height: 1.8;
  }
  .article-footer-message {
    padding: 28px 20px;
    margin-top: 50px;
  }
  .article-footer-message p {
    font-size: 15px;
  }
  .article-footer-message .closing-note {
    font-size: 14px;
  }
  .article-cta {
    padding: 30px 20px;
  }
  .article-cta .btn-primary {
    width: 100%;
    padding: 14px 32px;
    font-size: 15px;
  }
  .article-nav {
    margin-top: 50px;
  }
  .btn-back {
    justify-content: center;
    width: 100%;
    padding: 12px 28px;
    font-size: 14px;
  }
}
/* ========================================
   Job List & Detail Pages
   ======================================== */
/* Job List Section */
.job-list-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.job-card-large {
  position: relative;
  padding: 50px;
  margin-bottom: 40px;
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-card-large::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.job-card-graduate::before {
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.job-card-label {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 20px;
}

.job-card-label-graduate {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.job-card-title {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text-color);
}

.job-card-lead {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-color);
}

.job-card-description {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

.job-card-cta {
  margin-bottom: 30px;
}

.btn-job-detail {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--accent-color);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(179, 27, 27, 0.2);
  transition: all 0.3s ease;
}

.btn-job-detail:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(179, 27, 27, 0.3);
  transform: translateX(4px);
}

.job-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  border-top: 2px solid #f3f4f6;
}

.highlight-item {
  display: flex;
  flex: 1;
  gap: 10px;
  align-items: center;
  min-width: 200px;
}

.highlight-icon {
  font-size: 28px;
}

.highlight-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
}

/* Job CTA Section */
.job-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.job-cta-box {
  padding: 60px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(179, 27, 27, 0.2);
}

.job-cta-title {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 800;
}

.job-cta-text {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

.job-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.btn-cta-primary,
.btn-cta-primary-large {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-cta-primary:hover,
.btn-cta-primary-large:hover {
  background: var(--bg-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-cta-secondary,
.btn-cta-secondary-large {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  background: #fff;
  border: 2px solid #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover,
.btn-cta-secondary-large:hover {
  color: #fff;
  background: var(--accent-color);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Job Detail Hero */
.job-detail-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
}

.job-detail-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.job-detail-hero-graduate {
  background: linear-gradient(135deg, var(--accent-color) 0%, #8B1515 100%);
}

.job-detail-hero-content {
  position: relative;
  z-index: 1;
}

.job-badge {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
}

.job-badge-graduate {
  background: rgba(255, 255, 255, 0.2);
}

.job-detail-title {
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.3;
}

.job-detail-lead {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.95;
}

.job-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meta-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.meta-value {
  font-size: 18px;
  font-weight: 700;
}

/* Job Sections */
.job-section {
  padding: 80px 0;
}

.job-section-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--text-color) 0%, #111827 100%);
}

.container-narrow {
  max-width: 900px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-title-job {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 60px;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
}

.section-title-job::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  border-radius: 2px;
  transform: translateX(-50%);
}

.job-section-dark .section-title-job::after {
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.6));
}

.job-content-box {
  padding: 40px;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.job-content-box p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.job-content-box p:last-child {
  margin-bottom: 0;
}

.job-content-box h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

/* Mission Cards */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.mission-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.mission-icon {
  margin-bottom: 15px;
  font-size: 36px;
}

.mission-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.mission-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.achievement-box {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.achievement-box h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.achievement-box ul {
  padding: 0;
  list-style: none;
}

.achievement-box li {
  padding: 15px 0;
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-box li:last-child {
  border-bottom: 0;
}

/* Requirements */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.req-card {
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.req-card h3 {
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 3px solid var(--accent-color);
}

.req-required h3 {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.req-welcome h3 {
  color: #3b82f6;
  border-color: #3b82f6;
}

.req-card ul {
  padding: 0;
  list-style: none;
}

.req-card li {
  position: relative;
  padding: 12px 0 12px 30px;
  font-size: 15px;
  line-height: 1.6;
}

.req-card li::before {
  position: absolute;
  left: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  content: "✓";
}

.req-welcome li::before {
  color: #3b82f6;
}

/* Match Section */
.match-section {
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.match-section h3 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.match-item {
  padding: 20px;
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.match-emoji {
  display: block;
  margin-bottom: 10px;
  font-size: 32px;
}

.match-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.match-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: var(--text-color);
}

/* 5 Reasons */
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reason-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.reason-number {
  flex-shrink: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-light);
}

.reason-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}

.reason-content p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

.reason-content ul {
  padding: 0;
  margin-top: 15px;
  list-style: none;
}

.reason-content li {
  position: relative;
  padding: 8px 0 8px 25px;
  font-size: 15px;
  opacity: 0.9;
}

.reason-content li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--accent-light);
  content: "✓";
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  padding: 30px;
  background: #fff;
  border-left: 4px solid var(--accent-color);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-question {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
}

.faq-answer {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Job Detail CTA */
.job-detail-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.job-cta-box-large {
  padding: 80px 60px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(179, 27, 27, 0.2);
}

.job-cta-box-large h2 {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 800;
}

.job-cta-box-large p {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

/* New Grad Specific Styles */
.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.concern-card {
  padding: 30px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.concern-icon {
  margin-bottom: 15px;
  font-size: 48px;
}

.concern-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Salary Section */
.salary-hero {
  padding: 50px;
  margin-bottom: 40px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.salary-main h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
}

.salary-amount {
  margin-bottom: 15px;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-color);
}

.salary-yearly {
  font-size: 18px;
  color: var(--text-light);
}

.salary-breakdown {
  padding: 40px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.salary-breakdown h3 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}

.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.breakdown-label {
  font-size: 16px;
  font-weight: 600;
}

.breakdown-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-light);
}

.breakdown-note {
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

/* Salary Comparison Table */
.salary-comparison {
  padding: 40px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.salary-comparison h3 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}

.comparison-table {
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-header {
  font-weight: 700;
  color: var(--text-color);
  background: var(--bg-light);
}

.comparison-highlight {
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1), rgba(211, 47, 47, 0.1));
  border-left: 4px solid var(--accent-color);
}

.comparison-col {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--text-color);
}

.salary-note-box {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.salary-note-box p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
}

.salary-note-box p:last-child {
  margin-bottom: 0;
}

/* Voice Section */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.voice-card {
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.voice-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.voice-avatar {
  flex-shrink: 0;
  font-size: 48px;
}

.voice-info h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
}

.voice-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-light);
}

.voice-year {
  font-weight: 600;
  color: var(--accent-color);
}

.voice-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

.voice-text strong {
  font-weight: 700;
  color: var(--text-color);
}

/* Career Timeline */
.career-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.career-step {
  position: relative;
  display: flex;
  gap: 30px;
  padding: 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.career-year {
  flex-shrink: 0;
  width: 100px;
  font-size: 28px;
  font-weight: 900;
  color: var(--accent-light);
}

.career-content {
  flex: 1;
}

.career-content h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.career-content p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

.career-salary {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-light);
  background: rgba(211, 47, 47, 0.1);
  border-radius: 8px;
}

.career-note {
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.career-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

/* Work Environment */
.environment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.env-card {
  padding: 35px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.env-icon {
  margin-bottom: 15px;
  font-size: 40px;
}

.env-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
}

.env-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Requirements Table */
.requirements-table {
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.req-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  padding: 25px 30px;
  border-bottom: 1px solid var(--border-color);
}

.req-row:last-child {
  border-bottom: 0;
}

.req-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-color);
}

.req-value {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color);
}

/* Responsive Design for Job Pages */
@media (max-width: 968px) {
  .job-card-large {
    padding: 35px;
  }
  .job-card-title {
    font-size: 28px;
  }
  .job-card-lead {
    font-size: 18px;
  }
  .job-detail-title {
    font-size: 36px;
  }
  .job-detail-lead {
    font-size: 18px;
  }
  .mission-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }
  .match-grid {
    grid-template-columns: 1fr;
  }
  .concerns-grid,
  .environment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 10px;
    font-size: 13px;
  }
  .salary-amount {
    font-size: 52px;
  }
  .career-year {
    width: 80px;
    font-size: 24px;
  }
  .job-cta-box-large {
    padding: 60px 40px;
  }
}
@media (max-width: 640px) {
  .job-list-section,
  .job-section {
    padding: 50px 0;
  }
  .job-card-large {
    padding: 25px;
  }
  .job-card-title {
    font-size: 24px;
  }
  .job-card-lead {
    font-size: 16px;
  }
  .job-card-description {
    font-size: 14px;
  }
  .job-card-highlights {
    flex-direction: column;
    gap: 15px;
  }
  .highlight-item {
    min-width: auto;
  }
  .job-cta-box {
    padding: 40px 25px;
  }
  .job-cta-title {
    font-size: 24px;
  }
  .job-cta-text {
    font-size: 15px;
  }
  .job-cta-buttons {
    flex-direction: column;
  }
  .btn-cta-primary,
  .btn-cta-secondary,
  .btn-cta-primary-large,
  .btn-cta-secondary-large {
    width: 100%;
    text-align: center;
  }
  .job-detail-hero {
    padding: 100px 0 50px;
  }
  .job-detail-title {
    font-size: 28px;
  }
  .job-detail-lead {
    font-size: 15px;
  }
  .job-detail-meta {
    flex-direction: column;
    gap: 15px;
  }
  .section-title-job {
    font-size: 26px;
  }
  .job-content-box {
    padding: 25px;
  }
  .mission-card,
  .req-card,
  .voice-card,
  .env-card {
    padding: 25px;
  }
  .reason-item {
    flex-direction: column;
    gap: 15px;
    padding: 25px;
  }
  .reason-number {
    font-size: 36px;
  }
  .reason-content h3 {
    font-size: 18px;
  }
  .concerns-grid,
  .environment-grid {
    grid-template-columns: 1fr;
  }
  .salary-hero {
    padding: 35px 25px;
  }
  .salary-amount {
    font-size: 40px;
  }
  .salary-breakdown,
  .salary-comparison,
  .salary-note-box {
    padding: 25px;
  }
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .comparison-col {
    padding: 5px 0;
  }
  .career-step {
    flex-direction: column;
    gap: 15px;
    padding: 25px;
  }
  .career-year {
    width: auto;
  }
  .req-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
  .faq-item {
    padding: 20px;
  }
  .faq-question {
    font-size: 16px;
  }
  .job-cta-box-large {
    padding: 40px 25px;
  }
  .job-cta-box-large h2 {
    font-size: 28px;
  }
  .job-cta-box-large p {
    font-size: 15px;
  }
}
/* ========================================
   Entry, Message, Members Pages
   ======================================== */
/* Entry Hero */
.entry-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
}

.entry-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

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

.entry-badge {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
}

.entry-title {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.3;
}

.entry-lead {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Entry Form Section */
.entry-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.entry-intro-box {
  padding: 40px;
  margin-bottom: 60px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.entry-intro-box h2 {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
}

.entry-intro-box p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Modern Entry Form */
.modern-entry-form {
  padding: 60px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-section-modern {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 2px solid #f3f4f6;
}

.form-section-modern:last-of-type {
  border-bottom: 0;
}

.form-section-title-modern {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
}

.form-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 50%;
}

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

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group-modern label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
}

.required-badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--accent-color);
  border-radius: 4px;
}

.optional-badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--text-lighter);
  border-radius: 4px;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 4px rgba(179, 27, 27, 0.1);
}

.form-group-modern textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox-modern {
  margin: 40px 0;
}

.form-checkbox-modern label,
.form-checkbox-modern-label {
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
}
.form-checkbox-modern label a,
.form-checkbox-modern-label a {
  color: var(--accent-color);
  text-decoration: underline;
}

.form-checkbox-modern input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-checkbox-modern span {
  font-size: 15px;
  color: var(--text-color);
}

.form-submit-modern {
  text-align: center;
}

.btn-submit-modern {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(179, 27, 27, 0.3);
  transition: all 0.3s ease;
}
.btn-submit-modern:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none !important;
}

.btn-submit-modern:hover {
  box-shadow: 0 8px 25px rgba(179, 27, 27, 0.4);
  transform: translateY(-2px);
}

.btn-submit-modern svg {
  transition: transform 0.3s ease;
}

.btn-submit-modern:hover svg {
  transform: translateX(5px);
}

/* Message Hero */
.message-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
}

.message-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

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

.message-badge {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
}

.message-hero-title {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.3;
}

.message-hero-lead {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Message Content */
.message-content-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.message-content-box {
  padding: 60px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.message-section {
  margin-bottom: 40px;
}

.message-section h2 {
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
}

.message-section p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
}

.message-section strong {
  font-weight: 700;
  color: var(--text-color);
}

.message-highlight-box {
  display: flex;
  gap: 20px;
  padding: 35px;
  margin: 40px 0;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.05), rgba(211, 47, 47, 0.05));
  border: 2px solid var(--accent-color);
  border-radius: 16px;
}

.highlight-icon {
  flex-shrink: 0;
  font-size: 48px;
}

.highlight-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-color);
}

.highlight-content ul {
  padding: 0;
  list-style: none;
}

.highlight-content li {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

.highlight-content li::before {
  position: absolute;
  left: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  content: "✓";
}

.message-signature {
  margin-top: 60px;
}

.signature-content {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}

.signature-photo {
  flex-shrink: 0;
}

.ceo-photo {
  width: 120px;
  height: 120px;
  border: 4px solid #f0f0f0;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
}

.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 3px solid #dee2e6;
  border-radius: 50%;
}

.photo-placeholder svg {
  color: #adb5bd;
}

.signature-text {
  text-align: right;
}

.signature-line {
  width: 100px;
  height: 3px;
  margin-bottom: 20px;
  margin-left: auto;
  background: var(--accent-color);
}

.signature-company {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
}

.signature-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 640px) {
  .signature-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .signature-text {
    text-align: center;
  }
  .signature-line {
    margin-right: auto;
    margin-left: auto;
  }
  .ceo-photo,
  .photo-placeholder {
    width: 100px;
    height: 100px;
  }
}
.message-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.message-cta-box {
  padding: 60px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(179, 27, 27, 0.2);
}

.message-cta-box h2 {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 800;
}

.message-cta-box p {
  margin-bottom: 35px;
  font-size: 16px;
  opacity: 0.95;
}

.message-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Members Hero */
.members-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
}

.members-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

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

.members-badge {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
}

.members-hero-title {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.3;
}

.members-hero-lead {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Members Grid */
.members-grid-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.member-card-modern {
  padding: 50px;
  margin-bottom: 40px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.member-card-header {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 2px solid #f3f4f6;
}

.member-avatar-modern {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  margin-right: 30px;
}

/* Member Photo - For future profile images */
.member-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Hide placeholder icon when photo is present */
.member-photo ~ .member-placeholder-icon {
  display: none;
}

.member-placeholder-icon {
  width: 100%;
  height: 100%;
}

.member-info-modern {
  flex: 1;
}

.member-name-modern {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-color);
}

.member-dept {
  margin-bottom: 3px;
  font-size: 15px;
  color: var(--text-light);
}

.member-team {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-light);
}

.member-role-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 20px;
}

.member-card-body {
  padding-left: 110px;
}

.member-qa {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.qa-item-modern {
  padding: 25px;
  background: var(--bg-light);
  border-left: 4px solid var(--accent-color);
  border-radius: 12px;
}

.qa-question-modern {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
}

.qa-answer-modern {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

.members-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.members-cta-box {
  padding: 60px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(179, 27, 27, 0.2);
}

.members-cta-box h2 {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 800;
}

.members-cta-box p {
  margin-bottom: 35px;
  font-size: 16px;
  opacity: 0.95;
}

.members-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* ========================================
   About Us & Philosophy Sections
   ======================================== */
.about-us-section {
  padding: 80px 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
}

.about-us-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-us-label {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  opacity: 0.9;
}

.about-us-title {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.4;
}

.about-us-description {
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.95;
}

/* Philosophy Section */
.philosophy-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.philosophy-card {
  padding: 40px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.philosophy-card-large {
  grid-column: 1/-1;
  text-align: center;
}

.philosophy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.1), rgba(211, 47, 47, 0.1));
  border-radius: 50%;
}

.philosophy-card:not(.philosophy-card-large) .philosophy-icon {
  margin: 0 0 25px;
}

.philosophy-icon svg {
  color: var(--accent-color);
}

.philosophy-label {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.15em;
}

.philosophy-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text-color);
}

.philosophy-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-light);
}

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

.philosophy-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
}

.philosophy-list li:last-child {
  border-bottom: 0;
}

.philosophy-list li::before {
  position: absolute;
  left: 0;
  font-size: 14px;
  color: var(--accent-color);
  content: "■";
}

/* Responsive Design for About Us & Philosophy */
@media (max-width: 968px) {
  .member-avatar-modern {
    margin-right: 0;
  }
  .about-us-title {
    font-size: 32px;
  }
  .about-us-description {
    font-size: 16px;
  }
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  .philosophy-card-large {
    grid-column: 1;
  }
}
@media (max-width: 640px) {
  .about-us-section {
    padding: 60px 0;
  }
  .about-us-title {
    font-size: 26px;
  }
  .about-us-description {
    font-size: 15px;
  }
  .philosophy-section {
    padding: 50px 0;
  }
  .philosophy-card {
    padding: 30px;
  }
  .philosophy-title {
    font-size: 20px;
  }
}
/* ========================================
   Executives Section
   ======================================== */
.executives-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.executives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.executive-card {
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.executive-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f3f4f6;
}

.executive-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.executive-content {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 30px 25px 20px;
  border-bottom: 1px solid var(--border-color);
}

.executive-photo-placeholder {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #f3f4f6 0%, var(--border-color) 100%);
  border: 2px dashed #d1d5db;
  border-radius: 12px;
}

.executive-photo-placeholder svg {
  color: var(--text-lighter);
}

.executive-photo-placeholder span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.executive-info {
  padding: 0 25px 30px;
}

.executive-role {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.executive-name {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-color);
}

.executive-name-en {
  margin-bottom: 20px;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-light);
}

.executive-bio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bio-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.bio-item:last-child {
  border-bottom: 0;
}

.bio-year {
  flex-shrink: 0;
  width: 70px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
}

.bio-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Responsive Design for Executives */
@media (max-width: 968px) {
  .executives-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .executive-content {
    padding: 25px 20px 20px;
  }
  .executive-info {
    padding: 0 20px 25px;
  }
  .executive-name {
    font-size: 22px;
  }
  .bio-item {
    flex-direction: column;
    gap: 5px;
  }
  .bio-year {
    width: auto;
  }
}
@media (max-width: 640px) {
  .executives-section {
    padding: 50px 0;
  }
  .executives-grid {
    gap: 20px;
  }
  .executive-content {
    flex-direction: column;
    gap: 15px;
    padding: 20px 18px 18px;
  }
  .executive-photo-placeholder {
    width: 100px;
    height: 100px;
  }
  .executive-photo-placeholder svg {
    width: 40px;
    height: 40px;
  }
  .executive-info {
    padding: 0 18px 20px;
  }
  .executive-name {
    font-size: 20px;
  }
  .executive-name-en {
    font-size: 13px;
  }
  .bio-year {
    font-size: 13px;
  }
  .bio-text {
    font-size: 13px;
  }
}
/* ========================================
   Privacy Policy Section
   ======================================== */
.privacy-policy-section {
  padding: 80px 0;
  background: #fff;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-section {
  padding-bottom: 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
}

.privacy-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.privacy-heading {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text-color);
}

.privacy-subheading {
  margin: 30px 0 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-color);
}

.privacy-text {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-light);
}

.privacy-list {
  padding: 0;
  margin: 20px 0 20px 30px;
}

.privacy-list li {
  padding-left: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-light);
}

.privacy-sublist {
  padding: 0;
  margin: 15px 0 15px 25px;
  list-style-type: decimal;
}

.privacy-sublist li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Responsive Design for Privacy Policy */
@media (max-width: 968px) {
  .privacy-policy-section {
    padding: 60px 0;
  }
  .privacy-heading {
    font-size: 20px;
  }
  .privacy-subheading {
    font-size: 17px;
  }
  .privacy-text {
    font-size: 14px;
  }
  .privacy-list li {
    font-size: 14px;
  }
  .privacy-sublist li {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .privacy-policy-section {
    padding: 40px 0;
  }
  .privacy-section {
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
  .privacy-heading {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .privacy-subheading {
    margin: 25px 0 12px;
    font-size: 16px;
  }
  .privacy-text {
    font-size: 14px;
    line-height: 1.8;
  }
  .privacy-list {
    margin-left: 20px;
  }
  .privacy-list li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
  }
  .privacy-sublist {
    margin-left: 20px;
  }
  .privacy-sublist li {
    font-size: 13px;
    line-height: 1.7;
  }
}
/* ========================================
   Work Environment Page - Modern Styles
   ======================================== */
/* Section Header Center */
.section-header-center {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 0;
  text-align: center;
  /* Remove whitespace between inline elements */
}

.section-header-center > * {
  font-size: initial;
  /* Reset font-size for child elements */
}

/* Force remove all pseudo-elements in recruit-cta sections */
.recruit-cta-section *::before,
.recruit-cta-section *::after,
.recruit-cta-section::before,
.recruit-cta-section::after,
.recruit-cta-box::before,
.recruit-cta-box::after,
.recruit-cta-title::before,
.recruit-cta-title::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
  background: none !important;
  border: 0 !important;
}

/* Global rule: Remove all vertical lines and borders from all sections */
body *:not(.entry-content):not(.entry-content *)::before,
body *:not(.entry-content):not(.entry-content *)::after {
  display: none !important;
  content: none !important;
}

body *::before,
body *::after {
  border-right: 0 !important;
  border-left: 0 !important;
}

/* Re-enable pseudo-elements for buttons */
.btn::before,
.btn::after,
.btn-outline::before,
.btn-outline::after {
  display: block !important;
  content: "" !important;
}

/* Restore btn-outline::after for gradient effect */
.btn-outline::after {
  position: absolute !important;
  inset: -2px !important;
  z-index: -1 !important;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%) !important;
  border-radius: 30px !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

/* Restore borders for all buttons (override global rule) */
.btn,
.btn-outline,
.btn-large,
.btn-back {
  border-right: initial !important;
  border-left: initial !important;
}

/* Specifically restore btn-outline border */
.btn-outline {
  border: 2px solid var(--primary-color) !important;
}

/* Specifically restore btn-back border */
.btn-back {
  border: 2px solid var(--border-color) !important;
}

/* Only allow horizontal borders */
body * {
  border-right: 0 !important;
  border-left: 0 !important;
}

/* Force remove all pseudo-elements in section-header-center */
.section-header-center *::before,
.section-header-center *::after,
.section-header-center::before,
.section-header-center::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
  background: none !important;
  border: 0 !important;
}

/* Completely disable section-label::before in section-header-center (no red line at all) */
.section-header-center .section-label::before {
  display: none !important;
  content: none !important;
}

/* Force remove all pseudo-elements in section-header (not just section-header-center) */
.section-header *::before,
.section-header *::after,
.section-header::before,
.section-header::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
  background: none !important;
  border: 0 !important;
}

/* Re-enable section-label::before in section-header */
.section-header .section-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block !important;
  width: 12px;
  height: 2px;
  content: "" !important;
  background: var(--accent-color) !important;
  border-radius: 1px;
  transform: translateY(-50%);
}

/* Apply same styles to section-header as section-header-center */
.section-header .section-label {
  display: block !important;
  padding-right: 0 !important;
  margin-right: 0 !important;
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
}

.section-header .section-title {
  display: block !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  border-left: 0 !important;
}

.section-description {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Office Section Modern */
.office-section-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
}

.office-image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.office-main-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.office-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.office-image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 15px 25px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-icon {
  font-size: 20px;
}

.badge-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
}

.office-sub-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office-sub-image {
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.office-sub-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Office Features Modern */
.office-features-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.office-feature-card {
  padding: 40px 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 16px;
}

.feature-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
}

.feature-description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Work Style Section Modern */
.work-style-section-modern {
  padding: 100px 0;
  background: #fff;
}

.work-style-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-style-card-large {
  position: relative;
  padding: 50px 35px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.work-style-card-large::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-light) 100%);
  transition: transform 0.4s ease;
  transform: scaleX(0);
}

.work-style-number {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: #f3f4f6;
}

.work-style-icon-large {
  margin-bottom: 20px;
  color: var(--accent-color);
}

.work-style-title-large {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
}

.work-style-description-large {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Team Culture Section Modern */
.team-culture-section-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
}

.culture-layout-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.culture-image-side {
  position: relative;
}

.culture-image-side img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.culture-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  padding: 25px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
  margin-bottom: 8px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-color);
}

.stat-number span {
  font-size: 24px;
  font-weight: 700;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

.culture-content-side .section-header {
  margin-bottom: 40px;
  text-align: center;
}

.culture-list-modern {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.culture-item-modern {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.culture-icon-modern {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  border-radius: 12px;
}

.culture-text-modern {
  flex: 1;
}

.culture-title-modern {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
}

.culture-description-modern {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Events Section Modern */
.events-section-modern {
  padding: 100px 0;
  background: #fff;
}

.event-hero-image {
  position: relative;
  height: 400px;
  margin-bottom: 60px;
  overflow: hidden;
  border-radius: 20px;
}

.event-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-hero-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.event-hero-overlay h3 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 800;
}

.event-hero-overlay p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

.events-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.event-card-modern {
  padding: 35px 25px;
  text-align: center;
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.event-icon-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.event-title-modern {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
}

.event-description-modern {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Responsive Design for Work Environment */
@media (max-width: 968px) {
  .office-image-grid {
    grid-template-columns: 1fr;
  }
  .office-features-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-style-cards {
    grid-template-columns: 1fr;
  }
  .culture-layout-modern {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .events-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  .event-hero-image {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .office-section-modern,
  .work-style-section-modern,
  .team-culture-section-modern,
  .events-section-modern {
    padding: 60px 0;
  }
  .office-features-modern,
  .events-grid-modern {
    grid-template-columns: 1fr;
  }
  .office-main-image,
  .office-sub-image,
  .event-hero-image {
    border-radius: 12px;
  }
  .office-image-badge {
    bottom: 20px;
    left: 20px;
    padding: 12px 20px;
  }
  .badge-text {
    font-size: 13px;
  }
  .work-style-number {
    font-size: 36px;
  }
  .culture-stats {
    grid-template-columns: 1fr;
  }
  .event-hero-image {
    height: 250px;
  }
  .event-hero-overlay h3 {
    font-size: 24px;
  }
  .event-hero-overlay p {
    font-size: 14px;
  }
}
/* Responsive Design for Entry, Message, Members */
@media (max-width: 968px) {
  .entry-title,
  .message-hero-title,
  .members-hero-title {
    font-size: 36px;
  }
  .modern-entry-form {
    padding: 40px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .message-content-box {
    padding: 40px;
  }
  .message-highlight-box {
    flex-direction: column;
  }
  .member-card-modern {
    padding: 35px;
  }
  .member-card-header {
    flex-direction: column;
    text-align: center;
  }
  .member-card-body {
    padding-left: 0;
  }
}
@media (max-width: 640px) {
  .entry-hero,
  .message-hero,
  .members-hero {
    padding: 100px 0 50px;
  }
  .entry-title,
  .message-hero-title,
  .members-hero-title {
    font-size: 28px;
  }
  .entry-lead,
  .message-hero-lead,
  .members-hero-lead {
    font-size: 15px;
  }
  .modern-entry-form {
    padding: 25px;
  }
  .form-section-title-modern {
    flex-direction: column;
    align-items: flex-start;
    font-size: 20px;
  }
  .message-content-box {
    padding: 25px;
  }
  .message-section h2 {
    font-size: 22px;
  }
  .message-highlight-box {
    padding: 25px;
  }
  .highlight-icon {
    font-size: 36px;
  }
  .message-cta-box,
  .members-cta-box {
    padding: 40px 25px;
  }
  .message-cta-buttons,
  .members-cta-buttons {
    flex-direction: column;
  }
  .btn-cta-primary-large,
  .btn-cta-secondary-large {
    width: 100%;
  }
  .member-card-modern {
    padding: 25px;
  }
  .member-name-modern {
    font-size: 24px;
  }
  .qa-item-modern {
    padding: 20px;
  }
}