/* =============================================
   OrientHeal Bridge - Inner Pages Shared CSS
   Covers: about, business, products, markets, contact
   ============================================= */

/* ── SECTION BASICS ── */
.bg-light { background: var(--bg-card, #f0f4f8); }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1a2c 0%, #0d2240 50%, #0a3352 100%);
  padding: 120px 0 80px;
}
.page-hero-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 1rem 0;
}
.page-hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  max-width: 560px;
}

/* ── ABOUT PAGE ── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.about-intro-text p {
  color: var(--text-muted, #6b7280);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}
.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg, #f9fafb);
  border-radius: 10px;
  transition: all .25s;
}
.pillar-item:hover { background: rgba(10,110,189,.06); transform: translateX(4px); }
.pillar-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0a6ebd, #06a8a0);
  border-radius: 10px;
  flex-shrink: 0;
  color: #fff;
  font-size: .9rem;
}
.pillar-item strong { display: block; font-size: .95rem; margin-bottom: .2rem; }
.pillar-item p { margin: 0; font-size: .875rem; color: var(--text-muted, #6b7280); }

.mission-card {
  background: linear-gradient(135deg, #0a6ebd, #06a8a0);
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
  text-align: center;
  position: sticky;
  top: 100px;
}
.mission-icon {
  width: 70px; height: 70px;
  background: rgba(255,255,255,.15);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}
.mission-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: .75rem; }
.mission-card p  { opacity: .9; line-height: 1.7; font-size: .95rem; }
.mission-tags {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.mission-tags span {
  background: rgba(255,255,255,.2);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: all .3s;
  border-top: 4px solid transparent;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.value-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: #fff;
}
.v1 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.v2 { background: linear-gradient(135deg, #06a8a0, #0891b2); }
.v3 { background: linear-gradient(135deg, #10b981, #059669); }
.v4 { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.value-card:nth-child(1) { border-top-color: #3b82f6; }
.value-card:nth-child(2) { border-top-color: #06a8a0; }
.value-card:nth-child(3) { border-top-color: #10b981; }
.value-card:nth-child(4) { border-top-color: #8b5cf6; }
.value-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.value-card p  { color: var(--text-muted, #6b7280); line-height: 1.7; font-size: .925rem; }

/* Academic research grid */
.acad-research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.acad-research-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: all .3s;
}
.acad-research-item:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.acad-research-item > i {
  font-size: 2rem;
  background: linear-gradient(135deg, #0a6ebd, #06a8a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.acad-research-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.acad-research-item p  { color: var(--text-muted, #6b7280); font-size: .875rem; line-height: 1.6; margin: 0; }

/* ── SERVICES PAGE ── */
.service-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-card, #f0f4f8);
  border-radius: 20px;
  flex-wrap: wrap;
}
.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  position: relative;
  min-width: 140px;
}
.flow-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #0a6ebd, #06a8a0);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}
.flow-num {
  position: absolute;
  top: -8px; right: -8px;
  background: #0b1a2c;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.flow-item span { font-size: .925rem; font-weight: 600; text-align: center; }
.flow-arrow { color: #0a6ebd; font-size: 1.2rem; opacity: .5; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.service-detail-grid.reverse { grid-template-columns: 320px 1fr; }
.service-detail-grid.reverse .service-detail-visual { order: -1; }

.service-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: linear-gradient(135deg, #0a6ebd, #06a8a0);
  color: #fff;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.service-badge.s2 { background: linear-gradient(135deg, #06a8a0, #10b981); }
.service-badge.s3 { background: linear-gradient(135deg, #8b5cf6, #0a6ebd); }

.service-detail-content > p {
  color: var(--text-muted, #6b7280);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}
.service-detail-list { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.detail-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(10,110,189,.1);
  color: #0a6ebd;
  font-size: .9rem;
}
.detail-icon.s2 { background: rgba(6,168,160,.1); color: #06a8a0; }
.detail-item strong { display: block; font-size: .95rem; margin-bottom: .25rem; }
.detail-item p { margin: 0; font-size: .875rem; color: var(--text-muted, #6b7280); line-height: 1.6; }

.service-scope {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-card, #f0f4f8);
  border-radius: 12px;
}
.service-scope h4 { font-size: .9rem; font-weight: 700; margin-bottom: .75rem; }
.scope-tags {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.scope-tags span {
  display: flex; align-items: center; gap: .35rem;
  padding: 5px 12px;
  background: #fff;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,.08);
}

.service-visual-card {
  background: linear-gradient(135deg, #0a6ebd, #06a8a0);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service-visual-card.s2 { background: linear-gradient(135deg, #06a8a0, #10b981); }
.service-visual-card.s3 { background: linear-gradient(135deg, #8b5cf6, #0a6ebd); }
.svc-icon-large { font-size: 3.5rem; margin-bottom: 1rem; opacity: .9; }
.svc-num-large {
  font-size: 5rem; font-weight: 800; opacity: .15;
  position: absolute; bottom: -10px; right: 10px;
  line-height: 1;
}

.service-market-dots { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.svc-market {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .75rem;
  background: #fff;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
}
.svc-market .flag { font-size: 1.1rem; }

.hospital-mini-scroll {
  display: flex; flex-direction: column; gap: .4rem; margin-top: 1rem;
}
.hospital-badge-mini {
  padding: 6px 12px;
  background: rgba(6,168,160,.08);
  border: 1px solid rgba(6,168,160,.2);
  border-radius: 8px;
  font-size: .8rem;
  color: #06a8a0;
  font-weight: 600;
}

.service-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #8b5cf6, #0a6ebd);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 800;
}
.step-item strong { display: block; font-size: .95rem; margin-bottom: .25rem; }
.step-item p { margin: 0; font-size: .875rem; color: var(--text-muted, #6b7280); line-height: 1.6; }

.service-note {
  font-size: .85rem;
  color: var(--text-muted, #6b7280);
  font-style: italic;
  padding: .75rem 1rem;
  background: rgba(139,92,246,.06);
  border-left: 3px solid #8b5cf6;
  border-radius: 0 8px 8px 0;
  margin-top: 1.5rem;
}
.service-markets-covered {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: 1rem;
}
.covered-item {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .75rem;
  background: #fff;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
}
.covered-item i.fa-check { color: #06a8a0; }
.covered-item i.fa-plus  { color: #8b5cf6; }

/* ── PRODUCTS PAGE ── */
.product-sticky-nav {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.prod-nav-links {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.prod-nav-links::-webkit-scrollbar { display: none; }
.prod-nav-link {
  display: flex; align-items: center; gap: .5rem;
  padding: 1rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted, #6b7280);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.prod-nav-link:hover, .prod-nav-link.active {
  color: #0a6ebd;
  border-bottom-color: #0a6ebd;
}

.product-section-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}
.product-section-grid.reverse { grid-template-columns: 280px 1fr; }
.product-section-grid.reverse .product-section-visual { order: -1; }

.product-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}
.product-tag.blue   { background: rgba(10,110,189,.1); color: #0a6ebd; }
.product-tag.teal   { background: rgba(6,168,160,.1);  color: #06a8a0; }
.product-tag.green  { background: rgba(16,185,129,.1); color: #10b981; }
.product-tag.purple { background: rgba(139,92,246,.1); color: #8b5cf6; }

.product-section-content > p {
  color: var(--text-muted, #6b7280);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}
.product-categories { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.prod-cat { display: flex; gap: 1rem; align-items: flex-start; }
.prod-cat-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}
.prod-cat-icon.blue   { background: linear-gradient(135deg, #0a6ebd, #2563eb); }
.prod-cat-icon.teal   { background: linear-gradient(135deg, #06a8a0, #0891b2); }
.prod-cat-icon.green  { background: linear-gradient(135deg, #10b981, #059669); }
.prod-cat-icon.purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.prod-cat h4 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.prod-cat p  { margin: 0; font-size: .875rem; color: var(--text-muted, #6b7280); line-height: 1.6; }

.product-advantages {
  display: flex; gap: 1.25rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.adv-item {
  flex: 1; min-width: 140px;
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--bg-card, #f0f4f8);
  border-radius: 14px;
}
.adv-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 auto .75rem;
}
.adv-icon.blue   { background: linear-gradient(135deg, #0a6ebd, #2563eb); }
.adv-icon.teal   { background: linear-gradient(135deg, #06a8a0, #0891b2); }
.adv-icon.green  { background: linear-gradient(135deg, #10b981, #059669); }
.adv-icon.purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.adv-item strong { display: block; font-size: .875rem; font-weight: 700; margin-bottom: .25rem; }
.adv-item p { margin: 0; font-size: .8rem; color: var(--text-muted, #6b7280); line-height: 1.5; }

.product-benefits {
  display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.25rem 0;
}
.benefit-badge {
  display: flex; align-items: center; gap: .4rem;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
}
.benefit-badge.teal   { background: rgba(6,168,160,.1);  color: #06a8a0; border: 1px solid rgba(6,168,160,.25); }
.benefit-badge.purple { background: rgba(139,92,246,.1); color: #8b5cf6; border: 1px solid rgba(139,92,246,.25); }

.market-context-box {
  padding: 1.5rem;
  border-radius: 14px;
  margin-top: 1.25rem;
}
.market-context-box h4 { font-size: .95rem; font-weight: 700; margin-bottom: .6rem; }
.market-context-box p  { margin: 0; font-size: .875rem; color: var(--text-muted, #6b7280); line-height: 1.7; }
.teal-box   { background: rgba(6,168,160,.06);  border: 1px solid rgba(6,168,160,.2);  }
.purple-box { background: rgba(139,92,246,.06); border: 1px solid rgba(139,92,246,.2); }

.silk-apps {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .75rem;
}
.silk-app {
  display: flex; align-items: center; gap: .5rem;
  padding: 6px 14px;
  background: rgba(139,92,246,.08);
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  color: #8b5cf6;
}

.product-section-visual {
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: sticky;
  top: 130px;
}
.blue-visual   { background: linear-gradient(135deg, rgba(10,110,189,.12), rgba(37,99,235,.12)); border: 1px solid rgba(10,110,189,.2); }
.teal-visual   { background: linear-gradient(135deg, rgba(6,168,160,.12), rgba(8,145,178,.12)); border: 1px solid rgba(6,168,160,.2); }
.green-visual  { background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(5,150,105,.12)); border: 1px solid rgba(16,185,129,.2); }
.purple-visual { background: linear-gradient(135deg, rgba(139,92,246,.12), rgba(109,40,217,.12)); border: 1px solid rgba(139,92,246,.2); }
.prod-visual-icon { font-size: 5rem; margin-bottom: .75rem; }
.blue-visual   .prod-visual-icon { color: #0a6ebd; }
.teal-visual   .prod-visual-icon { color: #06a8a0; }
.green-visual  .prod-visual-icon { color: #10b981; }
.purple-visual .prod-visual-icon { color: #8b5cf6; }
.prod-visual-label {
  font-size: 1.05rem;
  font-weight: 700;
  opacity: .7;
}

/* ── MARKETS PAGE ── */
.priority-legend {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding: 1.25rem 0;
}
.priority-item {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 600;
  font-size: .9rem;
}
.p-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.priority-item.p1 .p-dot { background: #0a6ebd; }
.priority-item.p2 .p-dot { background: #06a8a0; }
.priority-item.p3 .p-dot { background: #8b5cf6; }

.priority-heading {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.priority-heading h2 { font-size: 1.5rem; font-weight: 800; }
.ph-dot { width: 14px; height: 14px; border-radius: 50%; background: #0a6ebd; flex-shrink: 0; }
.p2-dot { background: #06a8a0; }
.p3-dot { background: #8b5cf6; }

.market-full-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.market-full-cards.two-col { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }

.market-full-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: all .3s;
}
.market-full-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }

.mfc-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.mfc-flag { font-size: 2.8rem; line-height: 1; flex-shrink: 0; }
.mfc-title h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .35rem; }
.mfc-stats {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.mfc-stats span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted, #6b7280);
  display: flex; align-items: center; gap: .3rem;
}
.mfc-stats i { color: #0a6ebd; }

.priority-badge-sm {
  margin-left: auto;
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 700;
}
.priority-badge-sm.p1 { background: rgba(10,110,189,.1); color: #0a6ebd; }
.priority-badge-sm.p2 { background: rgba(6,168,160,.1);  color: #06a8a0; }
.priority-badge-sm.p3 { background: rgba(139,92,246,.1); color: #8b5cf6; }

.market-full-card > p {
  color: var(--text-muted, #6b7280);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.mfc-partners h4 {
  font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: .75rem;
  color: var(--text-muted, #6b7280);
}
.mfc-partners ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.mfc-partners li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .875rem; color: var(--text-primary, #0b1a2c); font-weight: 500;
}
.mfc-partners li i { color: #0a6ebd; font-size: .85rem; width: 16px; }

.local-ops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.local-op-item {
  display: flex; flex-direction: column;
  align-items: center; gap: .75rem;
  padding: 1.75rem 1rem;
  background: #fff;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  font-weight: 700;
  font-size: .925rem;
  transition: all .3s;
}
.local-op-item:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.local-op-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #0a6ebd, #06a8a0);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex; gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-card, #f0f4f8);
  border-radius: 16px;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}
.email-icon { background: linear-gradient(135deg, #0a6ebd, #06a8a0); }
.contact-info-label { font-size: .8rem; font-weight: 700; color: var(--text-muted, #6b7280); margin-bottom: .25rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-info-value { font-size: 1rem; font-weight: 700; color: #0a6ebd; text-decoration: none; }
.contact-info-value:hover { text-decoration: underline; }

.contact-partnerships { margin-top: 2rem; }
.contact-partnerships h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .4rem; }
.contact-partnerships > p { color: var(--text-muted, #6b7280); font-size: .9rem; margin-bottom: 1.25rem; }
.partnership-cards { display: flex; flex-direction: column; gap: 1rem; }
.partnership-card {
  display: flex; gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: all .25s;
}
.partnership-card:hover { transform: translateX(4px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.pcard-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, #0a6ebd, #06a8a0);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
}
.partnership-card strong { display: block; font-size: .95rem; margin-bottom: .2rem; }
.partnership-card p { margin: 0; font-size: .85rem; color: var(--text-muted, #6b7280); line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; gap: 1rem; }
.form-row.two-col > .form-group { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .85rem; font-weight: 700; color: var(--text-primary, #0b1a2c); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: .9rem;
  font-family: inherit;
  background: #fff;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #0a6ebd; box-shadow: 0 0 0 3px rgba(10,110,189,.1); }
.form-group textarea { resize: vertical; }
.btn-full { width: 100%; justify-content: center; }
.form-message {
  padding: .9rem 1.25rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  margin-top: .5rem;
}
.form-message.success { background: rgba(16,185,129,.1); color: #059669; border: 1px solid rgba(16,185,129,.25); }
.form-message.error   { background: rgba(239,68,68,.1);  color: #dc2626; border: 1px solid rgba(239,68,68,.25); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .mission-card { position: static; }
  .service-detail-grid,
  .service-detail-grid.reverse { grid-template-columns: 1fr; }
  .service-detail-grid.reverse .service-detail-visual { order: 0; }
  .product-section-grid,
  .product-section-grid.reverse { grid-template-columns: 1fr; }
  .product-section-grid.reverse .product-section-visual { order: 0; }
  .product-section-visual { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row.two-col { flex-direction: column; }
  .market-full-cards.two-col { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .page-hero { min-height: 320px; padding: 100px 0 60px; }
  .page-hero-title { font-size: 1.9rem; }
  .service-flow { gap: .75rem; padding: 1.5rem 1rem; }
  .flow-arrow { display: none; }
  .market-full-cards { grid-template-columns: 1fr; }
  .product-advantages { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
}
