@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── FOCUS STYLES (accessibility) ─── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #D12B2B;
  --red-dark: #b02020;
  --red-soft: rgba(209,43,43,0.07);
  --dark: #1A1A1A;
  --gray: #6B6B6B;
  --light: #F7F7F7;
  --border: #E8E8E8;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── SCROLL ANIMATION ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img { height: 38px; width: auto; display: block; }

/* WordPress nav menu */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}

.main-nav ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current-page-ancestor > a { color: var(--red); }

.main-nav ul li.menu-cta > a {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.main-nav ul li.menu-cta > a:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 40px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
}

.mobile-nav ul li a {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.mobile-nav ul li.menu-cta > a {
  background: var(--red);
  color: var(--white) !important;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  border-bottom: none;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(209,43,43,0.25);
  color: var(--white);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }

/* ─── SECTION COMMON ─── */
.section { padding: 100px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--red);
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.85;
  font-weight: 300;
}

.section-header { margin-bottom: 60px; }
.section-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 14px;
  font-weight: 300;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(150deg, #fafafa 0%, #f0f0f0 100%);
  padding: 60px 0 56px;
  margin-top: 72px;
}

.breadcrumb {
  font-size: 12px;
  color: #767676;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a { color: #767676; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: #999; }

.page-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  background: rgba(209,43,43,0.08);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

/* ─── HERO (front-page) ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(209,43,43,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-content { animation: heroFadeIn 0.9s ease both; }
.hero-visual  { animation: heroFadeIn 0.9s ease 0.2s both; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--red);
}

.hero-title {
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.28;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.hero-title span { color: var(--red); }

.hero-sub {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 44px;
  line-height: 1.9;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span { font-size: 14px; font-weight: 400; color: var(--gray); }
.hero-stat-label { font-size: 12px; color: var(--gray); font-weight: 300; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-graphic { width: 100%; max-width: 460px; }

/* ─── SECTION PADDING ─── */
.services, .about, .news, .partners { padding: 100px 0; }
.cta-band { padding: 90px 0; }

/* ─── SERVICES ─── */
.services { background: linear-gradient(150deg, #fafafa 0%, #f2f2f2 100%); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.service-card {
  grid-column: span 2;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.055);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  cursor: pointer;
}

.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }
.service-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.10); transform: translateY(-6px); }

.service-icon-wrap,
.service-card-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s;
  flex-shrink: 0;
}

.service-card:hover .service-icon-wrap,
.service-card:hover .service-card-icon { background: rgba(209,43,43,0.13); }
.service-icon { width: 28px; height: 28px; }
.service-card-icon svg { width: 28px; height: 28px; }

.service-num,
.service-card-num {
  font-size: 11px;
  font-weight: 600;
  color: rgba(209,43,43,0.45);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.service-title,
.service-card-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.5; }

.service-desc,
.service-card-desc  { font-size: 13.5px; color: var(--gray); line-height: 1.85; font-weight: 300; }

.service-link,
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  opacity: 0.8;
  transition: opacity 0.2s;
  text-decoration: none;
}

.service-link::after,
.service-card-link::after { content: ''; transition: transform 0.25s; }
.service-card:hover .service-link,
.service-card:hover .service-card-link { opacity: 1; }
.service-card:hover .service-link::after,
.service-card:hover .service-card-link::after { transform: translateX(5px); }

/* ─── ABOUT ─── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.about-headline {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 14px 0 24px;
}

.about-lead {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--border);
}

.about-stat-item {
  padding: 24px 0 20px;
  padding-left: 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-left: 3px solid var(--red);
}
.about-stat-item:nth-child(even) { border-right: none; padding-right: 0; margin-left: 24px; }
.about-stat-item:nth-child(odd)  { padding-right: 24px; }

.about-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}
.about-stat-num span { font-size: 14px; font-weight: 400; color: var(--gray); margin-left: 3px; font-family: 'Noto Sans JP', sans-serif; }
.about-stat-label { font-size: 12px; color: var(--gray); font-weight: 300; }

/* about reasons card (right column) */
.about-reasons {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.05);
}

.about-reasons-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-reasons-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}

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

.about-reason-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.about-reason-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.about-reason-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 7px;
}

.about-reason-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.5;
}

.about-reason-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
}

/* legacy classes kept for compat */
.about-features { margin-bottom: 0; }
.about-img-wrap { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; background: #f7f7f7; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.about-img-placeholder svg { width: 100%; height: auto; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }

.stat-item { border-left: 3px solid var(--red); padding-left: 18px; }

.stat-num {
  font-size: 30px; font-weight: 700;
  color: var(--dark); font-family: 'Inter', sans-serif;
  line-height: 1; margin-bottom: 6px;
}

.stat-label { font-size: 12px; color: var(--gray); font-weight: 300; }

.about-visual {
  background: var(--white);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
}

.about-visual-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}

.about-visual-label::before {
  content: ''; display: block; width: 20px; height: 1.5px; background: var(--gray);
}

.about-feature { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.about-feature:last-child { margin-bottom: 0; }

.feature-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); margin-top: 9px; flex-shrink: 0;
}

/* about-feature-item: class dùng trong front-page.php */
.about-feature-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.about-feature-icon {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 4px;
}
.about-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}
.about-feature-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.75;
  font-weight: 300;
}

.feature-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.feature-text  { font-size: 13px; color: var(--gray); font-weight: 300; line-height: 1.7; }

/* ─── PARTNER ─── */
.partner {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partner-label {
  text-align: center; font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: #767676; margin-bottom: 28px;
}

.partner-list { display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap; }
.partner-item { font-size: 13px; color: #767676; font-weight: 500; transition: color 0.2s; }
.partner-item:hover { color: var(--dark); }

/* ─── NEWS ─── */
.news { background: var(--light); }
.news-list { display: flex; flex-direction: column; }

.news-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-item:hover .news-title { color: var(--red); }

.news-item-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.news-date { font-size: 13px; color: var(--gray); font-family: 'Inter', sans-serif; flex-shrink: 0; min-width: 90px; }
.news-badge { font-size: 10px; font-weight: 700; color: var(--red); background: rgba(209,43,43,0.08); padding: 3px 10px; border-radius: 20px; flex-shrink: 0; }
.news-title { font-size: 14.5px; color: var(--dark); font-weight: 400; transition: color 0.2s; }
.news-more  { text-align: center; margin-top: 40px; }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-band-text { flex: 1; min-width: 280px; }

.cta-band-title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  position: relative;
}

.cta-band-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  position: relative;
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-band::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(209,43,43,0.08) 0%, transparent 60%); pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  color: var(--white); margin-bottom: 14px; letter-spacing: -0.02em; position: relative;
}

.cta-band p {
  font-size: 15px; color: rgba(255,255,255,0.55);
  margin-bottom: 40px; font-weight: 300; position: relative;
}

.cta-contact { display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; position: relative; }
.contact-info { color: var(--white); font-size: 16px; font-weight: 500; }

.contact-info span {
  color: rgba(255,255,255,0.4); font-size: 10px; display: block;
  margin-bottom: 5px; letter-spacing: 0.14em; text-transform: uppercase;
}

.contact-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.15); }

/* ─── FOOTER ─── */
.site-footer { background: #111; padding: 64px 0 32px; color: rgba(255,255,255,0.45); }

.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 52px; }

.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }

.footer-slogan { color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 16px; }
.footer-desc   { font-size: 13px; line-height: 1.9; max-width: 260px; font-weight: 300; }

.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 13px; list-style: none; padding: 0; margin: 0; }
.footer-nav ul li a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; font-weight: 300; }
.footer-nav ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; font-size: 12px;
}

.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ─── COMPANY TABLE ─── */
.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table th {
  font-weight: 600; width: 180px; padding: 18px 20px;
  background: #FAFAFA; font-size: 14px; color: var(--gray);
  text-align: left; vertical-align: top;
}
.company-table td { padding: 18px 20px; font-size: 14px; color: var(--dark); line-height: 1.7; }

/* ─── FEATURE CARDS (3-col) ─── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.055);
}

.feature-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--red-soft); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}

.feature-card-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature-card-text  { font-size: 13.5px; color: var(--gray); line-height: 1.8; font-weight: 300; }

/* ─── HIGHLIGHT BOXES ─── */
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }

.highlight-box {
  background: var(--light);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.highlight-box-num {
  font-size: 28px; font-weight: 700; color: var(--red);
  font-family: 'Inter', sans-serif; line-height: 1; margin-bottom: 8px;
}

.highlight-box-label { font-size: 13px; color: var(--gray); font-weight: 300; }

/* ─── SERVICE BADGE (old style) ─── */
.service-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  background: rgba(209,43,43,0.08);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hero-duration-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 6px 18px;
  border-radius: 100px;
  margin-left: 10px;
  vertical-align: middle;
}

/* ─── SPECIALTY TAGS (it-jinzai) ─── */
.specialty-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.specialty-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  background: rgba(209,43,43,0.08);
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(209,43,43,0.15);
  transition: all .2s;
}
.specialty-tag:hover { background: rgba(209,43,43,0.14); }

/* ─── FEATURE CARDS (it-jinzai strengths) ─── */
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.feature-card-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }

/* ─── SUPPORT SECTION (it-jinzai) ─── */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.support-col {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,.055);
}
.support-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.support-col ul { display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; }
.support-col li {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 300;
}
.support-col li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.license-note {
  background: #FAFAFA;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 13px;
  color: var(--gray);
  margin-top: 40px;
}
.license-note strong { color: var(--dark); }

/* ─── DOMAIN CARDS (ses) ─── */
.domain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.domain-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,.055);
  transition: box-shadow .35s, transform .35s;
}
.domain-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.10); transform: translateY(-6px); }
.domain-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.domain-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.domain-sub { font-size: 12px; color: var(--gray); font-weight: 400; }

/* ─── WHY LIST (ses) ─── */
.why-list { display: flex; flex-direction: column; gap: 20px; max-width: 680px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 28px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.why-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.why-text { font-size: 15px; color: var(--dark); font-weight: 400; line-height: 1.6; }

/* ─── SERVICES LIST (cad-bim) ─── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.services-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background .2s;
}
.services-list-item:last-child { border-bottom: none; }
.services-list-item:hover { background: #fafafa; }
.services-list-num { font-size: 12px; font-weight: 700; color: var(--red); font-family: 'Inter', sans-serif; opacity: .5; min-width: 24px; }
.services-list-text { font-size: 15px; color: var(--dark); font-weight: 400; }

/* ─── HIGHLIGHTS GRID (cad-bim, madori) ─── */
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.highlight-box {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,.055);
  text-align: center;
  transition: box-shadow .35s, transform .35s;
}
.highlight-box:hover { box-shadow: 0 16px 48px rgba(0,0,0,.10); transform: translateY(-6px); }
.highlight-num {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--red);
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
  line-height: 1.2;
}
.highlight-label { font-size: 13px; color: var(--gray); font-weight: 400; line-height: 1.5; }

/* ─── FORMAT BADGES (madori) ─── */
.format-badges { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.format-badge {
  padding: 20px 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 2px solid var(--border);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  transition: all .2s;
  text-align: center;
  min-width: 120px;
}
.format-badge:hover { border-color: var(--red); color: var(--red); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(209,43,43,.12); }

/* ─── COVERAGE TAGS (madori) ─── */
.coverage-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.coverage-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}
.coverage-tag::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ─── BIG QUOTE (training) ─── */
.big-quote { background: var(--dark); padding: 80px 0; text-align: center; }
.big-quote-text {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.big-quote-text span { color: var(--red); }

/* ─── INTRO LETTER (training) ─── */
.intro-letter {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px 56px;
  max-width: 860px;
  margin: 0 auto;
}
.intro-letter p { font-size: 15px; color: var(--dark); line-height: 2.0; font-weight: 300; margin-bottom: 20px; }
.intro-letter p:last-child { margin-bottom: 0; }
.intro-letter .greeting { font-size: 16px; font-weight: 500; color: var(--dark); margin-bottom: 28px; }

/* ─── PILLARS (training original style) ─── */
.pillar-num { font-size: 48px; font-weight: 700; color: rgba(209,43,43,.08); font-family: 'Inter', sans-serif; line-height: 1; margin-bottom: 16px; }
.pillar-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.4; }
.pillar-desc { font-size: 13.5px; color: var(--gray); line-height: 1.85; font-weight: 300; }

/* ─── STATS STRIP (training) ─── */
.stats-strip { background: var(--dark); padding: 64px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stats-inner .stat-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,.08);
  border-left: none;
}
.stats-inner .stat-item:last-child { border-right: none; }
.stat-big-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--red);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 12px;
}
.stats-inner .stat-label { font-size: 14px; color: rgba(255,255,255,.55); font-weight: 300; }

/* ─── CTA BAND LIGHT (training) ─── */
.cta-band-light {
  background: linear-gradient(150deg, #fafafa 0%, #f0f0f0 100%);
  padding: 90px 0;
}

/* ─── PAGE ABOUT ─── */
.page-subtitle { font-size: 15px; color: var(--gray); font-weight: 300; }

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

.profile-table { width: 100%; border-collapse: collapse; }
.profile-table tr { border-bottom: 1px solid var(--border); }
.profile-table tr:last-child { border-bottom: none; }
.profile-table td.label {
  font-weight: 600; width: 180px; padding: 18px 20px;
  background: #FAFAFA; font-size: 14px; color: var(--gray);
  vertical-align: top;
}
.profile-table td.value { padding: 18px 20px; font-size: 14px; color: var(--dark); line-height: 1.7; }

.sidebar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,.055);
  margin-bottom: 24px;
}
.sidebar-card:last-child { margin-bottom: 0; }

.sidebar-slogan {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.sidebar-slogan span { color: var(--red); }

.map-placeholder {
  background: #f0f0f0;
  border-radius: 12px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.contact-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray); margin-bottom: 10px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #bbb; min-width: 44px; }

/* Services cards in about page (3-col grid) */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,.055);
  transition: box-shadow .35s, transform .35s;
}
.svc-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.10); transform: translateY(-6px); }

.svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--red-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.svc-card-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.5; }
.svc-card-desc  { font-size: 13px; color: var(--gray); line-height: 1.8; font-weight: 300; }

/* Service page classes */
.page-hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}
.breadcrumb-list { display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; margin: 0; }
.breadcrumb-item { font-size: 12px; color: #aaa; }
.breadcrumb-item a { color: #aaa; transition: color 0.2s; }
.breadcrumb-item a:hover { color: var(--red); }
.breadcrumb-sep { color: #ccc; font-size: 12px; }
.breadcrumb-current { color: var(--gray); }

/* Service detail pages */
.service-intro { padding: 80px 0; }
.service-intro-inner { display: grid; grid-template-columns: 1fr; }
.service-intro-lead { font-size: 16px; color: var(--gray); line-height: 1.9; font-weight: 300; margin-top: 20px; max-width: 760px; }

.service-features { padding: 80px 0; background: var(--light); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.feature-card-num { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 0.15em; display: block; margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.feature-card-desc { font-size: 13.5px; color: var(--gray); line-height: 1.8; font-weight: 300; }

.service-flow, .training-flow { padding: 80px 0; }
.flow-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.flow-item { display: flex; align-items: flex-start; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--border); }
.flow-item:first-child { border-top: 1px solid var(--border); }
.flow-num { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 0.2em; font-family: 'Inter', sans-serif; flex-shrink: 0; padding-top: 4px; }
.flow-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.flow-desc { font-size: 14px; color: var(--gray); line-height: 1.8; font-weight: 300; }

/* Training program page */
.training-proposal { padding: 80px 0; background: var(--light); }
.proposal-letter { max-width: 800px; margin: 0 auto; }
.proposal-letter-inner { background: var(--white); border-radius: 20px; padding: 60px 64px; box-shadow: 0 2px 24px rgba(0,0,0,0.06); border: 1px solid var(--border); }
.proposal-date { font-size: 14px; color: var(--gray); margin-bottom: 32px; }
.proposal-to { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.proposal-from { font-size: 13px; color: var(--gray); line-height: 1.9; margin-bottom: 40px; margin-left: auto; width: fit-content; }
.proposal-title { font-size: 18px; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 40px; letter-spacing: 0.02em; }
.proposal-body { font-size: 14px; color: var(--dark); line-height: 2; margin-bottom: 20px; }
.proposal-closing { font-size: 14px; color: var(--dark); text-align: right; margin-top: 32px; }

.training-pillars { padding: 80px 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card { background: var(--white); border-radius: 20px; padding: 40px 32px; box-shadow: 0 2px 20px rgba(0,0,0,0.055); border-top: 3px solid var(--red); }
.pillar-card-num { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 0.2em; font-family: 'Inter', sans-serif; margin-bottom: 14px; }
.pillar-card-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.5; }
.pillar-card-desc { font-size: 13.5px; color: var(--gray); line-height: 1.85; font-weight: 300; margin-bottom: 20px; }
.pillar-list { padding-left: 16px; list-style: disc; font-size: 13px; color: var(--gray); line-height: 2; font-weight: 300; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card { grid-column: span 2; }
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: span 2; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-reasons { padding: 28px 24px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .proposal-letter-inner { padding: 40px 36px; }
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stats-inner .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 28px 0; }
  .stats-inner .stat-item:last-child { border-bottom: none; }
  .intro-letter { padding: 36px 28px; }
  .contact-block { flex-direction: column; padding: 40px 36px; }
}

/* ─── RECRUIT ─── */
.job-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 2px 20px rgba(0,0,0,.055);
  border-left: 4px solid var(--red);
}

.job-type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  background: rgba(209,43,43,0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.job-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.job-subtitle {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
}

.recruit-table tr { border-bottom: 1px solid var(--border); }
.recruit-table tr:last-child { border-bottom: none; }

.recruit-table td.label {
  font-weight: 600;
  width: 200px;
  padding: 22px 24px;
  background: #FAFAFA;
  font-size: 14px;
  color: var(--gray);
  vertical-align: top;
}

.recruit-table td.value {
  padding: 22px 24px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.8;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 28px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.who-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 6px;
}

.who-text {
  font-size: 15px;
  color: var(--dark);
  font-weight: 400;
  line-height: 1.6;
}

.contact-block {
  background: var(--dark);
  border-radius: 20px;
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-block-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-block-text p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  font-weight: 300;
}

.contact-block-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-block-row {
  font-size: 15px;
  color: var(--white);
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-block-row span {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  min-width: 44px;
}

/* ─── PRIVACY POLICY ─── */
.privacy-body {
  max-width: 800px;
}

.privacy-lead {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.privacy-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.privacy-section p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.9;
  font-weight: 300;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-list li {
  font-size: 14.5px;
  color: var(--gray);
  font-weight: 300;
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}

.privacy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

.privacy-contact {
  margin-top: 16px;
  padding: 24px 28px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
}

.privacy-contact strong { color: var(--dark); font-weight: 600; }
.privacy-contact a { color: var(--red); }

.privacy-date {
  font-size: 13px;
  color: #bbb;
  line-height: 1.8;
  margin-top: 48px;
}

/* ─── SINGLE POST ─── */
.single-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.single-main {
  padding: 72px 0 80px;
}

.single-content {
  max-width: 800px;
  font-size: 15px;
  line-height: 2;
  color: var(--dark);
}

.single-content p { margin-bottom: 1.5em; }
.single-content h2 { font-size: 22px; font-weight: 700; margin: 2em 0 0.8em; }
.single-content h3 { font-size: 18px; font-weight: 700; margin: 1.6em 0 0.6em; }
.single-content ul, .single-content ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.single-content li { margin-bottom: 0.4em; }
.single-content img { border-radius: 8px; margin: 1.5em 0; }

.single-back {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .services, .about, .news, .partners { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: span 1; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .partner-list { gap: 28px; }
  .cta-contact { flex-direction: column; gap: 20px; }
  .contact-divider { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .company-table th { width: 120px; }
  .services-cards { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .profile-table td.label { width: 110px; padding: 14px 12px; }
  .profile-table td.value { padding: 14px 12px; }
  .proposal-letter-inner { padding: 32px 20px; }
  .domain-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .intro-letter { padding: 28px 16px; }
  .why-list { max-width: 100%; }
  .job-card { padding: 28px 24px; }
  .recruit-table td.label { width: 120px; padding: 16px; }
  .recruit-table td.value { padding: 16px; }
  .contact-block { padding: 32px 24px; }
}
