/* Inner page shared styles */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: #fff;
  padding: 64px 0 48px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(26px,4vw,42px); font-weight: 700; margin-bottom: 12px; }
.page-hero p { opacity: .85; font-size: 16px; max-width: 600px; margin: 0 auto; }

.sub-nav { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 10px 0; }
.sub-nav ul { display: flex; list-style: none; gap: 4px; flex-wrap: wrap; }
.sub-nav ul li a { padding: 7px 16px; border-radius: 6px; font-size: 13.5px; font-weight: 500; color: var(--text-muted); white-space: nowrap; }
.sub-nav ul li a:hover, .sub-nav ul li a.active { background: var(--blue); color: #fff; }

.inner-section { padding: 72px 0; }
.inner-section + .inner-section { padding-top: 0; }

/* Two-col layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child { order: 1; }
.two-col img { border-radius: 12px; box-shadow: var(--shadow); width: 100%; }

/* Content styles */
.content-block h2 { font-size: 24px; font-weight: 700; color: var(--blue-dark); margin-bottom: 16px; line-height: 1.3; }
.content-block h3 { font-size: 18px; font-weight: 700; color: var(--blue); margin: 24px 0 10px; }
.content-block p { color: var(--text-muted); line-height: 1.85; margin-bottom: 14px; font-size: 15px; }
.content-block ul { list-style: none; margin-bottom: 16px; }
.content-block ul li { padding: 6px 0 6px 20px; position: relative; color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }
.content-block ul li::before { content: '▸'; position: absolute; left: 0; color: var(--blue); }
.content-block .tag { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin: 0 4px 6px 0; }

/* Card grid */
.card-grid { display: grid; gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4,1fr); }

.info-card {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 28px 24px;
  border-left: 4px solid var(--blue);
  transition: transform .2s, box-shadow .2s;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.info-card .ic-icon { font-size: 28px; margin-bottom: 12px; }
.info-card h3 { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.info-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* Highlight band */
.highlight-band { background: var(--blue-light); border-radius: 12px; padding: 40px; margin: 40px 0; }
.highlight-band h3 { font-size: 20px; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; }
.highlight-band p { color: var(--text-muted); line-height: 1.8; }

/* CTA section */
.cta-section { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; padding: 64px 0; text-align: center; }
.cta-section h2 { font-size: clamp(22px,3vw,34px); font-weight: 700; margin-bottom: 14px; }
.cta-section p { opacity: .85; font-size: 16px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: #fff; color: var(--blue-dark); font-size: 15px; padding: 14px 36px; }
.cta-section .btn-primary:hover { background: var(--accent); color: #fff; }

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card { background: #fff; border-radius: 12px; padding: 32px 24px; text-align: center; box-shadow: var(--shadow); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; }
.team-card h3 { font-size: 17px; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--blue); font-weight: 500; margin-bottom: 12px; }
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* News / Blog list */
.post-list { display: grid; gap: 24px; }
.post-card { display: grid; grid-template-columns: 240px 1fr; gap: 28px; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform .2s; }
.post-card:hover { transform: translateY(-3px); }
.post-card-img { background: var(--blue-light); min-height: 180px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 28px 28px 28px 0; }
.post-card-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.post-card-body h3 { font-size: 17px; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; line-height: 1.4; }
.post-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.post-card-body a.read-more { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--blue); }

/* Career */
.job-card { background: #fff; border-radius: 12px; padding: 32px; box-shadow: var(--shadow); margin-bottom: 20px; border-left: 4px solid var(--blue); }
.job-card h3 { font-size: 19px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.job-tag { background: var(--blue-light); color: var(--blue); font-size: 12px; font-weight: 600; padding: 3px 12px; border-radius: 20px; }
.job-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.job-card .apply-btn { display: inline-block; background: var(--blue); color: #fff; padding: 9px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; }
.job-card .apply-btn:hover { background: var(--blue-dark); color: #fff; }

/* Customer logos */
.logo-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.logo-item { background: var(--bg-soft); border-radius: 8px; padding: 20px; display: flex; align-items: center; justify-content: center; min-height: 80px; transition: box-shadow .2s; }
.logo-item:hover { box-shadow: var(--shadow); }
.logo-item img { max-height: 48px; max-width: 120px; object-fit: contain; filter: grayscale(40%); transition: filter .2s; }
.logo-item:hover img { filter: none; }

/* Office map placeholder */
.map-placeholder { background: var(--bg-soft); border-radius: 12px; height: 400px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 15px; border: 2px dashed var(--border); }

@media (max-width: 1024px) {
  .card-grid.cols-4 { grid-template-columns: repeat(2,1fr); }
  .logo-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse > :first-child { order: 1; }
  .two-col.reverse > :last-child { order: 2; }
  .card-grid.cols-2, .card-grid.cols-3 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .post-card { grid-template-columns: 1fr; }
  .post-card-img { min-height: 160px; }
  .post-card-body { padding: 20px; }
  .logo-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
