/* =============================================
   de・ban — Sub Page Styles
   ============================================= */

/* ---------- Header (always scrolled style on subpages) ---------- */
.header--page {
  background: rgba(255,255,255,.95);
  box-shadow: 0 1px 0 var(--c-border);
}
.header--page::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(16px);
  z-index: -1;
}

.header--page .header__logo-img {
  filter: none;
}

.header--page .header__nav-list a {
  color: var(--c-muted);
}
.header--page .header__nav-list a:hover {
  color: var(--c-heading);
}

.header--page .btn-nav {
  border-color: var(--c-accent) !important;
  color: var(--c-accent) !important;
}

.header--page .header__hamburger span {
  background: var(--c-heading);
}

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

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

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.45) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-hero__label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: rgba(255,255,255,.7);
  margin-bottom: .75rem;
  padding: .3rem 1rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
}

.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: .5rem;
}

.page-hero__subtitle {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: .8rem 0;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--c-muted);
}

.breadcrumb a {
  color: var(--c-accent);
  transition: color .2s;
}
.breadcrumb a:hover {
  color: var(--c-heading);
}

/* ---------- Page Intro ---------- */
.page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-intro__lead {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-heading);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.page-intro__body {
  font-size: .95rem;
  color: var(--c-text);
  line-height: 2;
}

.page-intro__image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

/* ---------- Section alt ---------- */
.section--alt {
  background: var(--c-surface);
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.feature-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74,140,42,.08);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  color: var(--c-accent);
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .85rem;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .3s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item p {
  font-size: .8rem;
  color: var(--c-muted);
  text-align: center;
  margin-top: .6rem;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color .3s, transform .3s var(--ease);
}
.pricing-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
}

.pricing-card--featured {
  border-color: var(--c-accent);
  box-shadow: 0 4px 20px rgba(74,140,42,.1);
  position: relative;
}
.pricing-card--featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  background: var(--c-accent);
  color: #fff;
  padding: .3rem 1rem;
  border-radius: 100px;
}

.pricing-card__name {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: .25rem;
}

.pricing-card__size {
  font-size: .9rem;
  color: var(--c-muted);
  margin-bottom: 1rem;
}

.pricing-card__price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--c-accent);
  margin-bottom: .5rem;
}
.pricing-card__price span {
  font-size: .8rem;
  font-weight: 400;
  color: var(--c-muted);
}

.pricing-card__note {
  font-size: .8rem;
  color: var(--c-muted);
}

.pricing-note {
  text-align: center;
  font-size: .8rem;
  color: var(--c-muted);
  margin-top: 2rem;
}

/* ---------- License Box ---------- */
.license-box {
  margin-bottom: 3rem;
}

.license-box__item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-accent);
  border-radius: 0 12px 12px 0;
  padding: 2rem 2.5rem;
}

.license-box__item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: .5rem;
}

.license-box__number {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: .25rem;
}

.license-box__item p:last-child {
  font-size: .85rem;
  color: var(--c-muted);
}

/* ---------- Stats Grid ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
}

.stat-card__number {
  display: block;
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .5rem;
}
.stat-card__number small {
  font-size: 1.2rem;
}

.stat-card p {
  font-size: .85rem;
  color: var(--c-muted);
}

/* ---------- Projects Grid ---------- */
.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
}

.project-card:nth-child(even) {
  direction: rtl;
}
.project-card:nth-child(even) > * {
  direction: ltr;
}

.project-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: 1.5rem;
}

.project-card__images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.project-card__images img:first-child {
  grid-column: 1 / -1;
  height: 200px;
}

.project-card__info {
  padding: 2rem 2.5rem 2rem 0;
}

.project-card:nth-child(even) .project-card__info {
  padding: 2rem 0 2rem 2.5rem;
}

.project-card__number {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .4;
  display: block;
  margin-bottom: .5rem;
}

.project-card__info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: .5rem;
}

.project-card__info p {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.8;
}

/* ---------- Page CTA ---------- */
.page-cta {
  background: var(--c-heading);
  text-align: center;
  padding: 5rem 0;
}

.page-cta h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
}

.page-cta p {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 2rem;
}

.page-cta .hero__cta {
  animation: none;
}

/* ---------- Company Table ---------- */
.company-table-wrap {
  overflow-x: auto;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.company-table th,
.company-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.company-table th {
  width: 200px;
  font-weight: 600;
  color: var(--c-heading);
  background: var(--c-surface);
  white-space: nowrap;
}

.company-biz-list {
  list-style: none;
  padding: 0;
}
.company-biz-list li {
  padding-left: 1em;
  position: relative;
}
.company-biz-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--c-accent);
}

/* ---------- Access ---------- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.access-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-accent);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
}

.access-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: .75rem;
}

.access-card p {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.8;
}

.access-tel {
  margin-top: .5rem;
  font-weight: 600;
  color: var(--c-accent) !important;
}

.access-note {
  font-size: .85rem;
  color: var(--c-muted);
  padding: 1rem 1.5rem;
  background: var(--c-surface);
  border-radius: 8px;
}

/* ---------- Policy ---------- */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-intro {
  font-size: 1rem;
  color: var(--c-text);
  line-height: 2;
  margin-bottom: 3rem;
  padding: 1.5rem 2rem;
  background: var(--c-surface);
  border-radius: 12px;
}

.policy-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--c-border);
}

.policy-block:last-of-type {
  border-bottom: none;
}

.policy-block h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: 1rem;
  padding-left: .75rem;
  border-left: 3px solid var(--c-accent);
}

.policy-block p {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 2;
}

.policy-block ul {
  list-style: none;
  margin-top: .75rem;
}

.policy-block ul li {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 2;
  padding-left: 1em;
  position: relative;
}
.policy-block ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--c-accent);
}

.policy-contact {
  margin-top: 1rem;
  padding: 1.5rem;
  background: var(--c-surface);
  border-radius: 10px;
  font-size: .9rem;
  color: var(--c-text);
  line-height: 2;
}

.policy-contact a {
  color: var(--c-accent);
}

.policy-date {
  margin-top: 3rem;
  font-size: .8rem;
  color: var(--c-muted);
  text-align: right;
}

/* ---------- Welfare ---------- */
.welfare-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.welfare-intro__badge {
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.welfare-intro__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--c-heading);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.welfare-intro__lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-accent);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.welfare-intro__body {
  font-size: .95rem;
  color: var(--c-text);
  line-height: 2;
}

/* ---------- Welfare Flow ---------- */
.welfare-flow {
  max-width: 680px;
  margin: 0 auto;
}

.welfare-flow__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 1.75rem 2rem;
}

.welfare-flow__step {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  background: var(--c-accent);
  color: #fff;
  padding: .4rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  align-self: center;
}

.welfare-flow__content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: .5rem;
}

.welfare-flow__content p {
  font-size: .88rem;
  color: var(--c-text);
  line-height: 1.8;
}

.welfare-flow__arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--c-accent);
  padding: .5rem 0;
}

/* ---------- SDGs ---------- */
.sdgs-intro__text {
  font-size: .95rem;
  color: var(--c-text);
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sdgs-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  transition: border-color .3s, box-shadow .3s;
}
.sdgs-card:hover {
  border-color: var(--c-accent);
  box-shadow: 0 4px 20px rgba(74,140,42,.06);
}

.sdgs-card__header {
  margin-bottom: 1rem;
}

.sdgs-card__title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--c-heading);
  margin-bottom: .25rem;
}

.sdgs-card__subtitle {
  font-size: .8rem;
  color: var(--c-muted);
}

.sdgs-card__text {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.sdgs-card__icons {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.sdgs-card__icons img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .company-table th {
    width: 120px;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .welfare-flow__item {
    flex-direction: column;
    gap: 1rem;
  }

  .page-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    grid-template-columns: 1fr;
  }
  .project-card:nth-child(even) {
    direction: ltr;
  }
  .project-card__info,
  .project-card:nth-child(even) .project-card__info {
    padding: 0 1.5rem 1.5rem;
  }
  .project-card__images img:first-child {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Support Page ---------- */
.support-impact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: linear-gradient(135deg, var(--c-accent) 0%, #2d6a18 100%);
  color: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.support-impact__stat {
  flex: 1;
  max-width: 280px;
}

.support-impact__number {
  display: block;
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.support-impact__unit {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin: .25rem 0 .75rem;
  opacity: .85;
}

.support-impact__stat p {
  font-size: .9rem;
  line-height: 1.6;
  opacity: .9;
  margin: 0;
}

.support-impact__divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,.35);
  flex-shrink: 0;
}

.support-intro {
  max-width: 800px;
  margin: 0 auto;
}

.support-intro__text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--c-body);
  margin-bottom: 1.25rem;
}

.support-countries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.support-country {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.support-country__region {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--c-accent);
  background: rgba(74,140,42,.08);
  border-radius: 20px;
  padding: .2rem .75rem;
  margin-bottom: 1rem;
}

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

.support-country ul li {
  font-size: .95rem;
  color: var(--c-body);
  padding: .35rem 0;
  border-bottom: 1px solid var(--c-border);
}

.support-country ul li:last-child {
  border-bottom: none;
}

.support-unicef {
  text-align: center;
  padding: 2rem;
  background: var(--c-bg);
  border-radius: 12px;
}

.support-unicef p {
  font-size: .95rem;
  margin-bottom: .75rem;
  color: var(--c-body);
}

.support-unicef__link {
  display: inline-block;
  color: var(--c-accent);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border-bottom: 1px solid var(--c-accent);
  padding-bottom: 1px;
  transition: opacity .2s;
}

.support-unicef__link:hover {
  opacity: .7;
}

/* Support page CTA */
.page-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(74,140,42,.06) 0%, rgba(224,133,42,.06) 100%);
}

.page-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--c-heading);
}

.page-cta p {
  font-size: 1rem;
  color: var(--c-muted);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .support-impact {
    flex-direction: column;
    gap: 2rem;
  }

  .support-impact__divider {
    width: 60px;
    height: 1px;
  }

  .support-countries {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .support-countries {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   Consulting Page — Navy & Trust Theme
   ============================================= */

/* Hero override: deeper, cooler overlay */
.page-hero--consulting .page-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(15,25,50,.55) 0%,
    rgba(15,25,50,.7) 100%
  );
}

/* Lead paragraph */
.cons-lead {
  max-width: 840px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.cons-lead p {
  font-size: 1rem;
  line-height: 2.1;
  color: var(--c-text);
}

/* ---- Target 2-column ---- */
.cons-targets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cons-target {
  position: relative;
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.cons-target:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

/* SME — lighter, warm tone */
.cons-target--sme {
  background: #f7f9fc;
  border: 1px solid #e0e6ef;
}
/* Enterprise — darker, authoritative */
.cons-target--enterprise {
  background: linear-gradient(160deg, #1b2a4a 0%, #243659 100%);
  color: #fff;
}
.cons-target--enterprise .cons-target__title {
  color: #fff;
}
.cons-target--enterprise .cons-target__text {
  color: rgba(255,255,255,.8);
}
.cons-target--enterprise .cons-target__text strong {
  color: #fff;
}
.cons-target--enterprise .cons-target__list li {
  color: rgba(255,255,255,.75);
  border-bottom-color: rgba(255,255,255,.12);
}
.cons-target--enterprise .cons-target__list li::before {
  background: rgba(255,255,255,.5);
}

.cons-target__badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  padding: .3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.cons-target--sme .cons-target__badge {
  background: rgba(74,140,42,.1);
  color: var(--c-accent);
}
.cons-target--enterprise .cons-target__badge {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
}

.cons-target__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: 1rem;
}

.cons-target__text {
  font-size: .92rem;
  line-height: 1.9;
  color: var(--c-text);
  margin-bottom: 1.25rem;
}
.cons-target__text strong {
  color: var(--c-heading);
  font-weight: 700;
}

.cons-target__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cons-target__list li {
  font-size: .88rem;
  color: var(--c-text);
  padding: .6rem 0 .6rem 1.25rem;
  border-bottom: 1px solid var(--c-border);
  position: relative;
  line-height: 1.6;
}
.cons-target__list li:last-child {
  border-bottom: none;
}
.cons-target__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
}

/* ---- Service Cards (3-column) ---- */
.cons-services-lead {
  text-align: center;
  font-size: 1rem;
  color: var(--c-muted);
  margin-bottom: 2.5rem;
}

.cons-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cons-service {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.cons-service:hover {
  border-color: #3a5a8c;
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27,42,74,.1);
}

.cons-service__icon {
  width: 56px;
  height: 56px;
  color: #1b2a4a;
  margin: 0 auto 1.25rem;
}

.cons-service__number {
  font-family: var(--font-en);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: #3a5a8c;
  margin-bottom: .6rem;
}

.cons-service__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: .85rem;
}

.cons-service__text {
  font-size: .88rem;
  color: var(--c-text);
  line-height: 1.9;
}

/* CTA override for consulting — navy theme */
.page-cta--consulting {
  background: linear-gradient(160deg, #1b2a4a 0%, #243659 100%);
}
.page-cta--consulting h2 {
  color: #fff;
}
.page-cta--consulting p {
  color: rgba(255,255,255,.6);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .cons-targets {
    grid-template-columns: 1fr;
  }
  .cons-services {
    grid-template-columns: 1fr;
  }
  .cons-target {
    padding: 2rem 1.5rem;
  }
}
