/*--------------------------------------------------------------
# Appeal (Reason) Pages Specific Styles
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Reason 5 - Recreation and Development Sections
--------------------------------------------------------------*/

/* Recreation category styling */
.recreation-category {
  background: #fff;
  border: 1px solid #e9ecef;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
}

.recreation-category h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333 !important;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary);
}

.recreation-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recreation-item {
  padding: 1rem 0;
  border-bottom: 1px dotted #e9ecef;
}

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

.recreation-item h5 {
  color: #333 !important;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.recreation-item h5 i {
  color: var(--primary) !important;
  margin-right: 0.5rem;
}

.recreation-item p {
  color: #666 !important;
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

/* Development category styling */
.development-category {
  background: #fff;
  border: 1px solid #e9ecef;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
}

.development-category h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary);
}

.development-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.development-item {
  padding: 1rem 0;
  border-bottom: 1px dotted #e9ecef;
}

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

.development-item h5 {
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.development-item h5 i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.development-item p {
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

/* Stats section styling */
.section-stats {
  background: #f8f9fa;
  padding: 80px 0;
}

.usage-stats {
  margin-top: 2rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary);
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* User testimonials styling */
.user-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.user-avatar i {
  color: #fff;
  font-size: 1.5rem;
}

.user-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.2rem 0;
}

.user-info p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.testimonial-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0;
  border-left: 3px solid var(--primary);
}

/* Section Divider Line */
.section-divider-line {
  width: 100%;
  height: 1px;
  background: #e9ecef;
  margin: 0;
  border: none;
}

/* Welfare Data Section */
.welfare-data-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.welfare-data-section .section-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.welfare-data-section .section-header p {
  color: #666;
  font-size: 1.1rem;
}

.benefits-overview {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary);
}

.benefits-overview h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
}

.benefit-category-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0;
  height: 100%;
  border-left: 3px solid var(--primary);
}

.benefit-category-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
}

.benefit-category-card h4 i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.benefit-category-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-category-card li {
  padding: 0.4rem 0;
  color: #666;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.2rem;
}

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

.data-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary);
  height: 100%;
}

.data-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary);
}

.data-card h3 i {
  color: var(--primary);
  margin-right: 0.5rem;
}

/* Sidebar styling (keep original for other pages) */
.sidebar {
  margin-top: 2rem;
}

.sidebar-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
  height: fit-content;
}

.sidebar-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary);
}

/* Benefit categories styling */
.benefit-categories .category {
  margin-bottom: 1.5rem;
}

.benefit-categories .category:last-child {
  margin-bottom: 0;
}

.benefit-categories .category h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.8rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
}

.benefit-categories .category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-categories .category li {
  padding: 0.4rem 0;
  color: #666;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.2rem;
}

.benefit-categories .category li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Welfare cost styling */
.welfare-cost {
  text-align: center;
}

.cost-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.cost-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.cost-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.cost-note {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

/* Ranking list styling */
.ranking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: ranking;
}

.ranking-list li {
  counter-increment: ranking;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e9ecef;
  color: #666;
  font-size: 0.9rem;
  position: relative;
  padding-left: 3rem;
}

.ranking-list li:last-child {
  border-bottom: none;
}

.ranking-list li::before {
  content: counter(ranking);
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Related links styling */
.related-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-links li {
  margin-bottom: 0.8rem;
}

.related-links li:last-child {
  margin-bottom: 0;
}

.related-links a {
  display: block;
  padding: 0.8rem 1rem;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  border-left: 3px solid var(--primary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.related-links a:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Appeal Index Hero Section (Company-style)
--------------------------------------------------------------*/
/* Full screen height for appeal index hero */
.appeal-hero {
  height: 100vh !important;
  min-height: 600px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.appeal-hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.appeal-hero .hero-title {
  margin-bottom: 30px;
}

.appeal-hero .title-en {
  display: block !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: clamp(80px, 12vw, 160px) !important;
  font-weight: 400 !important;
  letter-spacing: 10px !important;
  color: transparent !important;
  -webkit-text-stroke: 2px #fff !important;
  text-stroke: 2px #fff !important;
  margin-bottom: -20px !important;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.appeal-hero .title-jp {
  display: block !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: clamp(24px, 4vw, 36px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 8px !important;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.appeal-hero .hero-lead {
  font-size: clamp(16px, 2vw, 20px) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.8 !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Animation keyframes for appeal hero */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsive for appeal hero */
@media (max-width: 768px) {
  .appeal-hero {
    height: 100vh !important;
    min-height: 500px !important;
  }
  
  .appeal-hero .title-jp {
    font-size: clamp(20px, 3.5vw, 28px) !important;
    letter-spacing: 4px !important;
  }
  
  .appeal-hero .title-en {
    font-size: clamp(60px, 10vw, 120px) !important;
    letter-spacing: 6px !important;
  }
}

/* Appeal Index Specific Styles */
.highlight-text {
  font-weight: 700 !important;
  color: var(--primary) !important;
}

/*--------------------------------------------------------------
# Landing Page Styles - Company Strengths Section
--------------------------------------------------------------*/
.company-strengths {
  padding: 120px 0;
  background: #fff;
}

.strengths-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.title-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--primary);
  font-weight: 400;
}

.title-text {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
}

.section-lead {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.strength-card {
  position: relative;
  height: 400px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.strength-card:hover {
  transform: translateY(-10px);
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.strength-card:hover .card-inner {
  transform: rotateY(-180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #FFFFFF;
}

.card-icon {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.strength-card:hover .card-icon img {
  transform: scale(1.1);
}

/* 2カラムレイアウト用スタイル（2025-10-13追加） */
.strength-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.strength-row:last-child {
  margin-bottom: 0;
}

/* デスクトップ: 2カラム表示 */
@media (min-width: 992px) {
  /* .strengths-grid を1列レイアウトに固定（rowを縦に並べる） */
  .strengths-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* 各rowを2カラムに */
  .strength-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 0;
  }
}

.icon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.icon-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #FFFFFF;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.card-front h3 {
  padding: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #0A0A0A;
}

.card-back h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.card-back p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
}

.card-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 24px;
  opacity: 0.7;
}

/*--------------------------------------------------------------
# Company Hero Section (inherited from company.css)
--------------------------------------------------------------*/
.company-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.company-hero .hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.company-hero .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.company-hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.company-hero .hero-text {
  text-align: center;
  margin: 0 auto;
}

.company-hero .hero-title {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.company-hero .title-en {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.company-hero .title-jp {
  display: block;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.company-hero .hero-lead {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}


/*--------------------------------------------------------------
# Reason Detail Content
--------------------------------------------------------------*/
.reason-detail-content {
  padding: 80px 0;
  background: #fff;
}

.detail-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 1rem;
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 3rem;
}

/*--------------------------------------------------------------
# Feature Sections
--------------------------------------------------------------*/
.feature-section {
  margin-bottom: 4rem;
}

.feature-section h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.feature-section h3 i {
  margin-right: 0.8rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.feature-section > p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
}

/*--------------------------------------------------------------
# Feature Grids and Items
--------------------------------------------------------------*/
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/*--------------------------------------------------------------
# Qualification Grid
--------------------------------------------------------------*/
.qualification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.qualification-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.qualification-item:hover {
  transform: translateY(-3px);
}

.qualification-item h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
}

.qualification-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Support Benefits
--------------------------------------------------------------*/
.support-benefits {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.support-benefits h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.support-benefits h4:before {
  content: "🎯";
  margin-right: 0.5rem;
}

.feature-item h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Culture Grid
--------------------------------------------------------------*/
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.culture-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.culture-item:hover {
  transform: translateY(-5px);
}

.culture-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.culture-icon i {
  color: #fff;
  font-size: 1.5rem;
}

/*--------------------------------------------------------------
# Check Lists
--------------------------------------------------------------*/
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: #666;
}

.check-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #28a745;
}

/*--------------------------------------------------------------
# Timeline
--------------------------------------------------------------*/
.training-timeline {
  margin-top: 2rem;
}

.timeline-item {
  display: flex;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.timeline-marker {
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  margin-right: 2rem;
  min-width: 100px;
  text-align: center;
}

.timeline-content h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
  margin: 0;
}

/*--------------------------------------------------------------
# Support Lists
--------------------------------------------------------------*/
.support-list {
  list-style: none;
  padding: 0;
}

.support-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: #666;
}

.support-list li i {
  position: absolute;
  left: 0;
  color: var(--primary);
  margin-top: 0.2rem;
}

/*--------------------------------------------------------------
# Benefit Lists
--------------------------------------------------------------*/
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: #666;
}

.benefit-list li i {
  position: absolute;
  left: 0;
  color: #28a745;
  margin-top: 0.2rem;
}

/*--------------------------------------------------------------
# Tech Lists
--------------------------------------------------------------*/
.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: #666;
}

.tech-list li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/*--------------------------------------------------------------
# Stats and Numbers
--------------------------------------------------------------*/
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.stat-note {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}

/*--------------------------------------------------------------
# Voice Cards and Testimonials
--------------------------------------------------------------*/
.voice-card,
.testimonial {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.voice-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.voice-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.voice-avatar i {
  color: #fff;
  font-size: 1.5rem;
}

.voice-info h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.3rem 0;
}

.voice-info p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.voice-content p,
.testimonial p {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.testimonial cite {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  font-style: normal;
}

/*--------------------------------------------------------------
# Technology Grids
--------------------------------------------------------------*/
.technology-grid {
  margin-top: 2rem;
}

.tech-category {
  margin-bottom: 3rem;
}

.tech-category h4 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

/* Tech items now use Bootstrap Grid in HTML - no CSS Grid needed */

.tech-item {
  display: flex;
  align-items: flex-start;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.tech-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.tech-icon i {
  color: #fff;
  font-size: 1.2rem;
}

.tech-content h5 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.5rem 0;
}

.tech-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  margin-top: 2rem;
}

.sidebar-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.related-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-links li {
  margin-bottom: 0.8rem;
}

.related-links a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-links a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Entry CTA Section
--------------------------------------------------------------*/
.entry-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.btn-cta-primary:hover {
  background: #f8f9fa;
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-cta-outline:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-cta-large i {
  margin-right: 0.8rem;
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Safety Features
--------------------------------------------------------------*/
.safety-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.safety-item {
  display: flex;
  align-items: flex-start;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.safety-item:hover {
  transform: translateY(-3px);
}

.safety-item i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.safety-item h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.5rem 0;
}

.safety-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Development Stages
--------------------------------------------------------------*/
.skill-development {
  margin-top: 2rem;
}

.development-stage {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
}

.stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.stage-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.stage-period {
  background: var(--primary);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.stage-content h5 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 1rem 0;
}

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

.stage-content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #666;
}

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

/*--------------------------------------------------------------
# Background Examples
--------------------------------------------------------------*/
.background-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.background-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.background-item h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.8rem 0;
}

.background-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Success Stories
--------------------------------------------------------------*/
.success-stories {
  margin-top: 2rem;
}

.story-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
}

.story-profile {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.profile-image {
  margin-right: 1rem;
}

.profile-image i {
  font-size: 2.5rem;
  color: var(--primary);
}

.profile-info h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.3rem 0;
}

.profile-info p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.story-content p {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--primary);
}

/*--------------------------------------------------------------
# Holiday System (Reason 3)
--------------------------------------------------------------*/
.holiday-system {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.holiday-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.holiday-item:hover {
  transform: translateY(-3px);
}

.holiday-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.holiday-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.holiday-item h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.8rem 0;
}

.holiday-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Vacation Stats & Cards
--------------------------------------------------------------*/
.vacation-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.stat-note {
  font-size: 0.8rem;
  color: #999;
}

.vacation-support {
  margin-top: 2rem;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.vacation-support h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 1rem 0;
}

/*--------------------------------------------------------------
# Overtime Management
--------------------------------------------------------------*/
.overtime-management {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.management-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.management-item h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.8rem 0;
}

.management-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Support Categories
--------------------------------------------------------------*/
.support-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.category-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.category-item h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 1rem 0;
}

.category-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.95rem;
}

.category-item li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.support-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.support-stat {
  text-align: center;
  padding: 1rem;
}

.support-stat .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.support-stat .stat-text {
  font-size: 0.9rem;
  color: #666;
}

/*--------------------------------------------------------------
# Flexible Work Styles
--------------------------------------------------------------*/
.flexible-work {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.work-style {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.work-style:hover {
  transform: translateY(-3px);
}

.style-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.style-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.work-style h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.8rem 0;
}

.work-style p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Employee Voices
--------------------------------------------------------------*/
.employee-voices {
  margin-top: 2rem;
}

.voice-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
}

.voice-profile {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.voice-profile i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-right: 1rem;
}

.profile-info h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.3rem 0;
}

.profile-info p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.voice-content p {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--primary);
}

/*--------------------------------------------------------------
# Culture Benefits & Benefit Items (Reason 4)
--------------------------------------------------------------*/
.culture-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.benefit-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.benefit-item h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.8rem 0;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Comparison Section
--------------------------------------------------------------*/
.comparison {
  margin-top: 1.5rem;
}

.comparison-item {
  margin-bottom: 1.5rem;
}

.comparison-item .label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
  display: block;
}

.bar-container {
  position: relative;
}

.bar {
  background: #e9ecef;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  position: relative;
}

.bar.our-company {
  background: var(--primary);
  color: #fff;
}

.bar.industry {
  background: #6c757d;
  color: #fff;
}

/*--------------------------------------------------------------
# Additional Stats (Reason 3 specific)
--------------------------------------------------------------*/
.stat-suffix {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary);
  margin-left: 0.2rem;
}

/*--------------------------------------------------------------
# Support System (Reason 4)
--------------------------------------------------------------*/
.support-system {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.support-stage {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.support-stage h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 1rem 0;
}

/*--------------------------------------------------------------
# Collaboration Flow (Reason 4)
--------------------------------------------------------------*/
.collaboration-flow {
  margin-top: 2rem;
}

.flow-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.flow-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.flow-content h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.5rem 0;
}

.flow-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Team Activities (Reason 4)
--------------------------------------------------------------*/
.team-activities {
  margin-top: 2rem;
}

.activity-category {
  margin-bottom: 3rem;
}

.activity-category h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

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

.activity-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.activity-item:hover {
  transform: translateY(-3px);
}

.activity-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.activity-item h5 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.8rem 0;
}

.activity-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Housing Benefits (Reason 5)
--------------------------------------------------------------*/
.housing-benefits {
  margin-top: 2rem;
}

.housing-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
}

.housing-benefits .benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  flex-shrink: 0;
}

.housing-benefits .benefit-icon i {
  color: #fff;
  font-size: 2rem;
}

.benefit-content h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 1rem 0;
}

.benefit-content p {
  color: #666;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

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

.detail-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.95rem;
}

.detail-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/*--------------------------------------------------------------
# Health Benefits (Reason 5)
--------------------------------------------------------------*/
.health-benefits {
  margin-top: 2rem;
}

.health-category {
  margin-bottom: 3rem;
}

.health-category h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

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

.health-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.health-item:hover {
  transform: translateY(-3px);
}

.health-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.health-item h5 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.8rem 0;
}

.health-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.mental-health {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.mental-support {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mental-support li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: #666;
}

.mental-support li i {
  position: absolute;
  left: 0;
  color: var(--primary);
  margin-top: 0.2rem;
}

/*--------------------------------------------------------------
# Financial Benefits (Reason 5)
--------------------------------------------------------------*/
.financial-benefits {
  margin-top: 2rem;
}

.financial-category {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
}

.financial-category h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 1rem 0;
}

.retirement-plan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.plan-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.plan-item h5 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.8rem 0;
}

.plan-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.savings-support {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

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

.savings-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: #666;
}

.savings-list li i {
  position: absolute;
  left: 0;
  color: var(--primary);
  margin-top: 0.2rem;
}

/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Reason 6 - Enhanced Design with Visual Contrast
--------------------------------------------------------------*/

/* Section backgrounds - subtle and full-width */
.feature-section {
  position: relative;
  margin: 0;
  padding: 4rem 0;
}

.section-tech {
  background: #fafafa;
}

.section-sustainability {
  background: #ffffff;
}

.section-workstyle {
  background: #f8f9fa;
}

.section-achievements {
  background: #ffffff;
}

/* Reason 5 specific section backgrounds */
.section-housing {
  background: #fafafa;
}

.section-health {
  background: #ffffff;
}

.section-financial {
  background: #f8f9fa;
}

.section-recreation {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.section-recreation .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.section-recreation .container {
  position: relative;
  z-index: 2;
}

.section-recreation h3,
.section-recreation h4,
.section-recreation p {
  color: #333;
}

.section-recreation .section-divider {
  background: #dee2e6;
}

/* Benefit items styling for reason 5 - unified design */
.benefit-item,
.health-category,
.financial-category {
  background: #fff;
  border: 1px solid #e9ecef;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--primary);
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #e9ecef;
}

.benefit-header i {
  color: var(--primary);
  font-size: 1.3rem;
}

.benefit-header h4 {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.benefit-content {
  flex: 1;
}

.benefit-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.detail-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Housing benefits - unified with tech categories design */
.housing-category {
  background: #fff;
  border: 1px solid #e9ecef;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--primary);
}

.housing-category h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.housing-category h4 i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Housing items as simple list - NO nested cards */
.housing-items {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.housing-item {
  padding: 0.8rem 0;
  border-bottom: 1px dotted #dee2e6;
}

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

.housing-item h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.3rem 0;
}

.housing-item h5 i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.housing-item p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 0 1.5rem;
}

/* Section with parallax background */
.section-vision {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.section-vision .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.section-vision .container {
  position: relative;
  z-index: 2;
}

.section-vision h3,
.section-vision h4,
.section-vision p {
  color: #333;
}

.section-vision .section-divider {
  background: #dee2e6;
}

/* Vision goals styling for white overlay */
.section-vision .vision-goals {
  background: rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.section-vision .goal-item {
  background: #fff;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-vision .goal-number {
  color: var(--primary);
}

.section-vision .goal-label {
  color: #333;
}

.section-vision .vision-message {
  background: var(--primary);
  color: #fff;
}

/* Section dividers between main sections */
.section-divider-line {
  width: 100%;
  height: 1px;
  background: #dee2e6;
  border: none;
  margin: 0;
  border-top: 1px dotted #dee2e6;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: #dee2e6;
  margin: 0 auto;
}

/* Technology Grid - New 3-Column Design */
.technology-grid {
  margin: 3rem 0;
}

.tech-category {
  background: #fff;
  border: 1px solid #e9ecef;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--primary);
}

.tech-category h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-category h4 i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Tech items use Bootstrap Grid - no custom grid needed */

/* Tech items as simple list - NO nested cards */
.tech-items {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.tech-item {
  padding: 0.8rem 0;
  border-bottom: 1px dotted #dee2e6;
}

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

.tech-item h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.3rem 0;
}

.tech-item h5 i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.tech-item p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 0 1.5rem;
}

/* Removed tech-icon and tech-content - now using inline icons */

/* Sustainability Initiatives - Card Design with Theme Colors */
.sustainability-initiatives {
  margin-top: 2rem;
}

.initiative-item {
  background: #fff;
  border: 1px solid #e9ecef;
  overflow: hidden;
  height: 100%;
}

.initiative-header {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.initiative-header i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-right: 0.8rem;
}

.initiative-header h4 {
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.initiative-content {
  padding: 1.5rem;
}

.initiative-content p {
  color: #666;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

/* Initiative features as simple bullet points - NO nested cards */
.initiative-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.initiative-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.initiative-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Workstyle Innovations - Orange Theme Design */
.workstyle-innovations {
  margin-top: 2rem;
}

.workstyle-category {
  background: #fff;
  border: 1px solid #e9ecef;
  margin-bottom: 2rem;
  border-left: 3px solid var(--primary);
}

.workstyle-category h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  padding: 1.5rem 2rem 0.8rem 2rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.workstyle-category h4 i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Workstyle grid uses Bootstrap Grid - no custom grid needed */
.workstyle-category .workstyle-grid {
  padding: 0 2rem 2rem 2rem;
}

.workstyle-item {
  display: flex;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px dotted #dee2e6;
  height: 100%;
}

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

.workstyle-item i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  width: 20px;
  text-align: center;
}

.workstyle-item h5 {
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.3rem 0;
}

.workstyle-item p {
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

/* Safety and diversity lists use Bootstrap Grid */
.safety-list,
.diversity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Safety and diversity items */
.safety-item,
.diversity-item {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  background: #fff;
  color: #666;
  transition: all 0.3s ease;
  height: 100%;
}

.safety-list li:hover,
.diversity-list li:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.safety-list i,
.diversity-list i {
  color: var(--primary);
  margin-right: 1rem;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* R&D Projects use Bootstrap Grid */
.rd-projects {
  margin-top: 2rem;
}

.project-item {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-content p {
  flex: 1;
}

.project-partners {
  margin-top: auto;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  flex-wrap: wrap;
  gap: 1rem;
}

.project-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.project-status {
  background: var(--primary);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-content {
  padding: 1.5rem;
}

.project-content p {
  color: #666;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

/* Partner tags as simple badges - NO nested design */
.project-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.partner-tag {
  background: #f8f9fa;
  color: #666;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  border: 1px solid #e9ecef;
}

/* Achievements - Simple Timeline */
.achievements {
  margin-top: 2rem;
}

.achievement-timeline {
  display: block;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.achievement-year {
  background: var(--primary);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-weight: 600;
  margin-right: 1.5rem;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
  font-size: 0.9rem;
}

.achievement-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.5rem 0;
}

.achievement-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

/* Future Vision - Simple Design */
.future-vision {
  margin-top: 2rem;
}

.vision-goals {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
}

.vision-goals h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

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

.goal-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e9ecef;
}

.goal-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.goal-label {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

.vision-message {
  background: var(--primary);
  color: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.vision-message h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.vision-message p {
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
}

/* Innovation Voices - Simple Design */
.innovation-voices {
  margin-top: 2rem;
}

.voice-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
}

.voice-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.voice-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.voice-avatar i {
  color: #fff;
  font-size: 1.5rem;
}

.voice-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.2rem 0;
}

.voice-info p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.voice-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
  border-left: 3px solid var(--primary);
  font-style: italic;
}

/* Remove all complex animations and gradients - but preserve essential transforms */
.tech-item,
.workstyle-item,
.safety-list li,
.diversity-list li,
.project-item,
.initiative-item {
  transition: none !important;
  animation: none !important;
}

/* Preserve hero section positioning */
.company-hero .hero-content {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 2 !important;
  text-align: center !important;
  width: 100% !important;
  padding: 0 20px !important;
}

.company-hero .hero-text {
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 800px !important;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1024px) and (min-width: 769px) {
  /* Tablet layout - Bootstrap Grid handles responsive behavior automatically */
}

@media (max-width: 768px) {
  /* Landing Page Responsive */
  .section-title-large {
    flex-direction: column;
    gap: 1rem;
  }
  
  .title-number {
    font-size: 3rem;
  }
  
  .title-text {
    font-size: 2rem;
  }
  
  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card-front h3 {
    font-size: 20px;
    padding: 20px;
  }
  
  .card-back h3 {
    font-size: 24px;
  }
  
  .card-back {
    padding: 2rem;
  }
  .company-hero {
    height: 50vh;
    min-height: 350px;
  }
  
  .company-hero .title-jp {
    font-size: 2.5rem;
  }
  
  .company-hero .title-en {
    font-size: 1.2rem;
  }
  
  .detail-content h2 {
    font-size: 2rem;
  }
  
  /* Bootstrap Grid handles responsive behavior automatically */
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-marker {
    margin-right: 0;
    margin-bottom: 1rem;
    align-self: flex-start;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-large {
    width: 280px;
    justify-content: center;
  }
  
  /* New responsive styles for added components */
  .holiday-system,
  .vacation-stats,
  .overtime-management,
  .support-categories,
  .flexible-work,
  .culture-benefits,
  .safety-features,
  .background-examples,
  .support-system,
  .activity-grid,
  .health-grid,
  .retirement-plan,
  .tech-items,
  .culture-pillars,
  .workstyle-grid,
  .goals-grid,
  .tech-areas {
    grid-template-columns: 1fr;
  }
  
  .housing-benefits .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .housing-benefits .benefit-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .flow-item {
    flex-direction: column;
    text-align: center;
  }
  
  .flow-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .tech-item {
    flex-direction: column;
    text-align: center;
  }
  
  .tech-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .vision-item {
    flex-direction: column;
    text-align: center;
  }
  
  .vision-year {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .achievement-item {
    flex-direction: column;
    text-align: center;
  }
  
  .achievement-year {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .voice-header {
    flex-direction: column;
    text-align: center;
  }
  
  .voice-avatar {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .support-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .comparison .bar {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .company-hero .title-jp {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  /* Bootstrap Grid handles responsive layout */
  
  .tech-item {
    flex-direction: column;
    text-align: center;
  }
  
  .tech-icon {
    margin: 0 auto 1rem auto;
  }
}