/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-only { display: none; }

/* ==========================================
   LOADER
   ========================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.loader-text span {
  color: #fff;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar-fill {
  width: 0;
  height: 100%;
  background: #fff;
  animation: loaderFill 2.5s ease forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* ==========================================
   HEADER
   ========================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 40px;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

#header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0 40px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

#header.scrolled .header-inner {
  height: 70px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  gap: 6px;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  transition: opacity 0.3s;
}

.footer-logo-img {
  height: 40px;
  filter: invert(1);
  mix-blend-mode: screen;
}

.logo-grow {
  color: #fff;
}

.logo-zation {
  color: #fff;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #00c8c8;
  transition: width 0.3s;
}

.nav-desktop a:hover {
  opacity: 1;
  color: #00c8c8;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-contact-btn {
  background: #00c8c8 !important;
  color: #0a0a0a !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.06em;
  transition: background 0.3s, transform 0.3s !important;
}

.nav-contact-btn::after {
  display: none !important;
}

.nav-contact-btn:hover {
  background: #00e0e0 !important;
  transform: translateY(-1px);
  opacity: 1 !important;
}

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

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  text-align: center;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ==========================================
   HERO
   ========================================== */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease, transform 8s ease;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(0, 100, 100, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-catch {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  color: rgba(255,255,255,0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}

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

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00c8c8;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ==========================================
   SECTION COMMON
   ========================================== */
.section-num-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 40px;
  margin-bottom: 40px;
}

.section-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0, 200, 200, 0.08);
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-num-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 200, 200, 0.15);
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.heading-en {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #0a0a0a;
  line-height: 1.2;
}

.heading-en.white {
  color: #fff;
}

.heading-ja {
  font-size: 0.9rem;
  color: #666;
  margin-top: 8px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.heading-ja.white {
  color: rgba(255,255,255,0.7);
}

.section-desc {
  text-align: center;
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 56px;
  line-height: 2;
}

/* ==========================================
   NEWS SECTION
   ========================================== */
.section-news {
  padding: 80px 0 60px;
  background: #fff;
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.more-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00c8c8;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-list {
  border-top: 1px solid #eee;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}

.news-item:hover {
  background: #f8f8f8;
  opacity: 1;
  padding-left: 12px;
}

.news-item time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: #999;
  font-weight: 500;
  flex-shrink: 0;
}

.news-tag {
  font-size: 0.7rem;
  padding: 3px 12px;
  border: 1px solid #00c8c8;
  color: #00c8c8;
  border-radius: 2px;
  flex-shrink: 0;
  font-weight: 500;
}

.news-item p {
  font-size: 0.9rem;
  color: #333;
}

/* ==========================================
   STRENGTH SECTION
   ========================================== */
.section-strength {
  padding: 100px 0 120px;
  background: #fafafa;
}

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

.strength-card {
  background: #fff;
  padding: 48px 32px 40px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
  transition: transform 0.4s, box-shadow 0.4s;
}

.strength-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.strength-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  color: #00c8c8;
}

.strength-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00c8c8;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}

.strength-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.strength-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.9;
}

/* ==========================================
   SERVICE SECTION
   ========================================== */
.section-service {
  padding: 100px 0 120px;
  background: #fff;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-card.reverse {
  direction: rtl;
}

.service-card.reverse > * {
  direction: ltr;
}

.service-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.service-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #00c8c8;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 12px;
}

.service-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.service-body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 2;
  margin-bottom: 28px;
}

.btn-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #00c8c8;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #00c8c8;
  transition: gap 0.3s, opacity 0.3s;
}

.btn-more:hover {
  gap: 14px;
  opacity: 1;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.section-about {
  padding: 100px 0 120px;
  background: #fafafa;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card {
  position: relative;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s;
}

.about-card:hover {
  opacity: 1;
  transform: scale(1.02);
}

.about-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.1) 60%);
  transition: background 0.4s;
}

.about-card:hover .about-card-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 60%);
}

.about-card-content {
  position: relative;
  z-index: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-card-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
}

.about-card-ja {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
}

.about-card-arrow {
  font-size: 1.2rem;
  color: #00c8c8;
  margin-top: 8px;
  transition: transform 0.3s;
}

.about-card:hover .about-card-arrow {
  transform: translateX(6px);
}

/* ==========================================
   RECRUIT SECTION
   ========================================== */
.section-recruit {
  padding: 100px 0 120px;
  background: #fff;
}

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

.recruit-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.recruit-text {
  font-size: 1rem;
  line-height: 2.2;
  color: #333;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0a0a0a;
  color: #fff;
  padding: 16px 40px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
  background: #00c8c8;
  color: #0a0a0a;
  transform: translateY(-2px);
  opacity: 1;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.section-contact {
  padding: 100px 0;
  background: url('images/contact-bg.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
}

.contact-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 48px;
  line-height: 2;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-phone {
  text-align: center;
}

.contact-phone-label {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.contact-phone-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-phone-num svg {
  color: #00c8c8;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00c8c8;
  color: #0a0a0a;
  padding: 18px 48px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background 0.3s, transform 0.3s;
}

.btn-contact:hover {
  background: #00e0e0;
  transform: translateY(-2px);
  opacity: 1;
}

/* ==========================================
   FOOTER
   ========================================== */
#footer {
  background: #0a0a0a;
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-size: 1.3rem;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #00c8c8;
  opacity: 1;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.06em;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.15s; }
.fade-up.delay-2 { transition-delay: 0.3s; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 968px) {
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  #header { padding: 0 20px; }
  #header.scrolled { padding: 0 20px; }

  .section-num-wrap { padding-left: 20px; }
  .section-num { font-size: 3.5rem; }

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

  .service-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-card.reverse {
    direction: ltr;
  }

  .about-intro {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

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

  .about-card {
    height: 240px;
  }

  .recruit-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-phone-num {
    font-size: 1.4rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav ul {
    gap: 16px;
  }

  .sp-only { display: inline; }
}

@media (max-width: 600px) {
  .hero-catch {
    font-size: 1.6rem;
  }

  .heading-en {
    font-size: 1.8rem;
  }

  .strength-card {
    padding: 36px 24px 32px;
  }

  .section-strength,
  .section-service,
  .section-about,
  .section-recruit {
    padding: 80px 0 80px;
  }

  .contact-actions {
    flex-direction: column;
    gap: 32px;
  }

  .news-item {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}

/* ==========================================
   SUB PAGE COMMON
   ========================================== */
.page-hero {
  position: relative;
  height: 340px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
}

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

.page-hero-en {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.page-hero-ja {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  letter-spacing: 0.12em;
}

.page-section {
  padding: 80px 0;
}

.page-section:nth-child(even) {
  background: #fafafa;
}

.page-section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.page-section-heading .heading-en {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  background: #f5f5f5;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #999;
}

.breadcrumb a {
  color: #666;
}

.breadcrumb span {
  color: #333;
}

/* Message Section */
.message-content {
  max-width: 800px;
  margin: 0 auto;
}

.message-text {
  font-size: 0.95rem;
  line-height: 2.2;
  color: #444;
  margin-bottom: 40px;
}

.message-author {
  text-align: right;
  font-size: 0.9rem;
  color: #666;
}

.message-author strong {
  display: block;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-top: 4px;
}

/* Company Profile Table */
.profile-table {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}

.profile-table tr {
  border-bottom: 1px solid #eee;
}

.profile-table th,
.profile-table td {
  padding: 20px 16px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.8;
}

.profile-table th {
  width: 160px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  vertical-align: top;
}

.profile-table td {
  color: #555;
}

/* Strength Points (sub page) */
.sub-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.sub-strength-card {
  background: #fff;
  padding: 40px 28px 36px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: transform 0.4s;
}

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

.sub-strength-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(0,200,200,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.sub-strength-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1.6;
}

.sub-strength-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.9;
}

/* Target Audience */
.target-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.target-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  color: #333;
  transition: border-color 0.3s, color 0.3s;
}

.target-item:hover {
  border-color: #00c8c8;
  color: #00c8c8;
}

/* Results / Stats */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

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

.result-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #00c8c8;
  line-height: 1.2;
}

.result-num span {
  font-size: 1rem;
  font-weight: 500;
}

.result-label {
  font-size: 0.8rem;
  color: #666;
  margin-top: 8px;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  padding: 32px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.product-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* Flow Steps */
.flow-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #eee;
}

.flow-step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #00c8c8;
  flex-shrink: 0;
  width: 48px;
}

.flow-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.flow-step p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.8;
}

/* Recruit Job Info */
.job-table {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}

.job-table tr {
  border-bottom: 1px solid #eee;
}

.job-table th,
.job-table td {
  padding: 20px 16px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.8;
}

.job-table th {
  width: 160px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fafafa;
  white-space: nowrap;
  vertical-align: top;
}

.job-table td {
  color: #555;
}

/* Staff Voice */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.voice-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.voice-meta {
  font-size: 0.78rem;
  color: #00c8c8;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.voice-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 2;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 24px 0;
}

.faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}

.faq-q::before {
  content: 'Q';
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #00c8c8;
  flex-shrink: 0;
}

.faq-a {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.9;
  padding-left: 28px;
}

.faq-a::before {
  content: 'A';
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #ccc;
  margin-right: 12px;
}

/* Contact Form */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-group label .required {
  color: #e74c3c;
  font-size: 0.75rem;
  margin-left: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00c8c8;
}

.form-group textarea {
  height: 160px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 0.85rem;
  color: #555;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #00c8c8;
}

.btn-submit {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 16px;
  background: #00c8c8;
  color: #0a0a0a;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
  background: #00e0e0;
  transform: translateY(-2px);
}

/* CTA Section */
.page-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a2a2a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,200,200,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-cta .container {
  position: relative;
  z-index: 1;
}

.page-cta-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 2;
}

.page-cta .btn-contact {
  display: inline-flex;
}

/* News List (sub page) */
.news-list-page .news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

/* Description text in sub pages */
.page-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #555;
  font-size: 0.95rem;
  line-height: 2;
}

/* ==========================================
   SUB PAGE RESPONSIVE
   ========================================== */
@media (max-width: 968px) {
  .page-hero {
    height: 260px;
  }

  .sub-strength-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

  .profile-table th,
  .job-table th {
    width: 120px;
  }
}

@media (max-width: 600px) {
  .page-hero {
    height: 220px;
  }

  .profile-table th,
  .profile-table td,
  .job-table th,
  .job-table td {
    display: block;
    width: 100%;
    padding: 8px 16px;
  }

  .profile-table th,
  .job-table th {
    padding-bottom: 0;
    background: none;
  }

  .flow-step {
    flex-direction: column;
    gap: 8px;
  }
}
