/* ===========================
   コーケン協同組合 共通スタイル
   =========================== */

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

/* CSS Variables */
:root {
  --blue-primary: #0c5aa6;
  --blue-dark: #083d73;
  --blue-light: #e8f1fb;
  --green-primary: #3d9e2f;
  --green-dark: #2d7522;
  --green-light: #eaf6e8;
  --silver: #8fa0b4;
  --text-dark: #222222;
  --text-mid: #555555;
  --text-light: #888888;
  --bg-white: #ffffff;
  --bg-light: #f5f7fa;
  --bg-gray: #eef0f4;
  --border: #d8dde6;
  --shadow: 0 4px 20px rgba(12, 90, 166, 0.10);
  --radius: 8px;
  --max-width: 1100px;
  --header-h: 72px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.8;
  font-size: 15px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--bg-white);
  border-bottom: 3px solid var(--blue-primary);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  object-fit: contain;
}
.site-logo .logo-badge {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.logo-sub {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

/* NAV */
.global-nav { display: flex; align-items: center; gap: 4px; }
.global-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.global-nav a:hover,
.global-nav a.active {
  background: var(--blue-light);
  color: var(--blue-primary);
  text-decoration: none;
}
.nav-contact-btn {
  background: var(--green-primary) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 24px !important;
  margin-left: 8px;
}
.nav-contact-btn:hover {
  background: var(--green-dark) !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--blue-primary);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
}

/* ===========================
   PAGE WRAPPER
   =========================== */
.page-body { padding-top: var(--header-h); }

/* ===========================
   HERO (index)
   =========================== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 50%, #1a7fd4 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.45;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,61,115,0.85) 0%, rgba(12,90,166,0.4) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  color: #fff;
}
.hero-label {
  display: inline-block;
  background: var(--green-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.hero h1 em {
  font-style: normal;
  color: #7ee8fa;
}
.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.9;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--green-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--green-dark); text-decoration: none; color: #fff; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 13px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); text-decoration: none; color: #fff; }

/* Country flags strip */
.country-strip {
  background: rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 12px 24px;
}
.country-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.country-tag {
  background: rgba(255,255,255,0.15);
  padding: 3px 12px;
  border-radius: 24px;
  font-size: 12px;
  color: #fff;
}

/* ===========================
   SECTION COMMONS
   =========================== */
.section {
  padding: 80px 24px;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-alt { background: var(--bg-light); }
.section-blue {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
  color: #fff;
}
.section-green {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: #fff;
}

/* Section header */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 10px;
}
.section-blue .section-label,
.section-green .section-label { color: rgba(255,255,255,0.7); }
.section-header h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.section-blue .section-header h2,
.section-green .section-header h2 { color: #fff; }
.section-header p {
  margin-top: 14px;
  color: var(--text-mid);
  font-size: 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}
.section-blue .section-header p,
.section-green .section-header p { color: rgba(255,255,255,0.85); }

/* Divider */
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--green-primary));
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ===========================
   CARDS
   =========================== */
.card-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(12,90,166,0.15);
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
}
.card-img-dummy {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d0dff0, #c8dce8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8fa0b4;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.card-body { padding: 24px; }
.card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.card-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue-primary);
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  text-decoration: none;
  transition: gap 0.2s;
}
.card-link:hover { gap: 8px; text-decoration: none; }
.card-link::after { content: '→'; }

/* ===========================
   STRENGTHS
   =========================== */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.strength-item {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
}
.strength-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
/* アイコン画像（絵文字の代替） */
.icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.strength-icon .icon-img {
  width: 48px;
  height: 48px;
}
.job-cat-icon .icon-img {
  width: 24px;
  height: 24px;
}
/* 国旗画像 */
.flag-icon {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 4px;
  /* 画像未配置時のフォールバック */
  background: #d0dff0;
}
.strength-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.strength-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

/* ===========================
   NEWS
   =========================== */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-dark);
  transition: background 0.2s;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { color: var(--blue-primary); }
.news-date {
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
  min-width: 90px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.news-cat {
  font-size: 11px;
  background: var(--blue-light);
  color: var(--blue-primary);
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
  font-weight: 700;
  min-width: 60px;
  text-align: center;
}
.news-title {
  font-size: 14px;
  line-height: 1.6;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: var(--bg-light);
  border-top: 4px solid var(--blue-primary);
  padding: 72px 24px;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.cta-tel {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: 0.05em;
  margin: 16px 0 4px;
}
.cta-time {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 28px;
}
.btn-cta {
  display: inline-block;
  background: var(--blue-primary);
  color: #fff;
  padding: 16px 48px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-cta:hover { background: var(--blue-dark); color: #fff; text-decoration: none; }

/* ===========================
   PAGE HEADER (subpages)
   =========================== */
.page-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
  padding: 56px 24px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.page-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.page-header .page-header-en {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  margin-top: 4px;
}
.breadcrumb {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span::before { content: '/'; margin-right: 8px; }

/* ===========================
   TABLE
   =========================== */
.overview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.overview-table th,
.overview-table td {
  padding: 16px 20px;
  border: 1px solid var(--border);
  line-height: 1.7;
}
.overview-table th {
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 700;
  width: 180px;
  text-align: left;
  white-space: nowrap;
}
.overview-table td { background: #fff; }

/* ===========================
   FLOW STEPS
   =========================== */
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-primary), var(--green-primary));
}
.flow-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
  position: relative;
  z-index: 1;
}
.flow-num-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(12,90,166,0.25);
}
.flow-num-badge span { font-size: 18px; }
.flow-content {
  padding: 16px 0 48px 24px;
}
.flow-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.flow-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.flow-col {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px;
}
.flow-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
  display: inline-block;
}
.flow-col.company .flow-col-label { background: var(--blue-light); color: var(--blue-primary); }
.flow-col.koken .flow-col-label { background: var(--green-light); color: var(--green-dark); }
.flow-col.local .flow-col-label { background: #fef3e2; color: #b86a00; }
.flow-col p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ===========================
   JOB TYPES
   =========================== */
.jobtype-category {
  margin-bottom: 48px;
}
.jobtype-category-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-dark);
  padding: 12px 20px;
  background: var(--blue-light);
  border-left: 4px solid var(--blue-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 20px;
}
.jobtype-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}
.jobtype-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.jobtype-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-primary);
  flex-shrink: 0;
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-label .required {
  background: var(--blue-primary);
  color: #fff;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 6px;
  font-weight: 700;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px var(--blue-light);
}
.form-textarea { min-height: 160px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.form-submit:hover { background: var(--blue-dark); }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.8);
  padding: 56px 24px 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo-name { color: #fff; font-size: 20px; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 16px;
  color: rgba(255,255,255,0.7);
}
.footer-address {
  font-size: 12px;
  line-height: 1.9;
  margin-top: 14px;
  color: rgba(255,255,255,0.6);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-nav-list a::before { content: '›'; color: var(--green-primary); }
.footer-nav-list a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   TO TOP
   =========================== */
.to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--blue-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  z-index: 900;
}
.to-top:hover { background: var(--blue-dark); color: #fff; text-decoration: none; }

/* ===========================
   ABOUT / STORY
   =========================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-img-dummy {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c8dce8, #b0cfe0);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7fa0b4;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.col-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 14px;
  line-height: 1.5;
}
.col-text p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 12px;
}
.col-text p:last-child { margin-bottom: 0; }

/* ===========================
   INTERN BENEFITS
   =========================== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.benefit-img-dummy {
  width: 100%;
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, #c8dce8, #b0cfe0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7fa0b4;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.benefit-body { padding: 20px; }
.benefit-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.benefit-body p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ===========================
   CAPACITY TABLE
   =========================== */
.capacity-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: center;
}
.capacity-table th {
  background: var(--blue-primary);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
}
.capacity-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
}
.capacity-table tr:nth-child(even) td { background: var(--bg-light); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .global-nav { display: none; }
  .hamburger { display: flex; }
  .strength-grid,
  .card-grid-3,
  .benefit-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .flow-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 16px; }
  .page-header { padding: 40px 16px 32px; }
  .hero-content { padding: 60px 16px; }
  .news-item { flex-wrap: wrap; gap: 8px; }
  .contact-form { padding: 24px 16px; }
}
