/* ═══════════════════════════════════════════════════════════
   pcroom.xyz — Component Styles v1
   Site-specific components not covered by common.css v2
   ═══════════════════════════════════════════════════════════ */

/* ═══ Hero Section ═══ */
.hero {
  background: linear-gradient(180deg, #0a1929 0%, #0f1d2e 100%);
  color: var(--white);
}

.hero .hero-glow {
  top: -80px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--primary-light), transparent 70%);
  opacity: .12;
}

.hero-slogan {
  font-size: 18px;
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: .3px;
}

.hero-visual { margin: 24px auto 0; }

.coolant-trace {
  stroke-dasharray: 6 3;
  animation: coolant-flow 2s linear infinite;
}
@keyframes coolant-flow {
  to { stroke-dashoffset: -18; }
}

/* ── Hero Offer ── */
.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 150, 136, .1);
  border: 1px solid rgba(0, 150, 136, .25);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-size: 14px;
  color: var(--primary-light);
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.offer-link {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity var(--duration) var(--ease);
}
.offer-link:hover { opacity: .8; }

/* ── Hero Buttons ── */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-btns .btn-primary,
.hero-btns .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}
.hero-btns .btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.hero-btns .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.hero-btns .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.hero-btns .btn-outline:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
}

/* ── Hero Trust Indicators ── */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-trust-item {
  text-align: center;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 16px 10px;
}
.hero-trust-item .num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-light);
  display: block;
  font-variant-numeric: tabular-nums;
}
.hero-trust-item .label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.45);
  margin-top: 4px;
  display: block;
}

/* ═══ Logo Wall / Partners ═══ */
.logo-wall {
  background: var(--gray-900);
  padding: 32px 0;
  text-align: center;
}
.logo-wall-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.partner-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 36px;
  margin-bottom: 18px;
}
.partner-logo {
  color: rgba(255,255,255,.35);
  font-size: 14px;
  font-weight: 500;
}
.cert-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.25);
  font-size: 12px;
}
.cert-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  flex-shrink: 0;
}

/* ═══ Services Grid ═══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-card .icon { font-size: 32px; line-height: 1; }
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
}
.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
}
.service-card .tag { align-self: flex-start; }
.service-card.accent-teal { border-left: 3px solid var(--primary); }

.link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: opacity var(--duration) var(--ease);
  text-decoration: none;
  display: inline-block;
}
.link:hover { opacity: .75; }

/* ═══ Results Grid ═══ */
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}
.result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
}
.result-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.r-icon { margin-bottom: 16px; }
.r-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.r-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ═══ Timeline ═══ */
.tl { display: flex; flex-direction: column; gap: 0; }
.tl-step {
  display: flex;
  gap: 20px;
  padding: 20px 0 20px 0;
  border-left: 2px solid var(--gray-200);
  padding-left: 24px;
  position: relative;
}
.tl-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -45px;
  margin-right: 4px;
}
.tl-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.tl-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ═══ Mission / Vision / Values Band ═══ */
.mvv-band {
  background: var(--gray-900);
  padding: 36px 0;
}
.mvv-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.mvv-item .tag {
  flex-shrink: 0;
  margin-top: 2px;
}
.mvv-item .val {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.8;
}

/* ═══ Contact Section ═══ */
.contact-section {
  background: var(--gray-50);
}
.contact-qr {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}
.contact-qr-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact-qr-item img {
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 4px;
  border: 1px solid var(--gray-200);
}
.contact-qr-item span {
  font-size: 12px;
  color: var(--gray-400);
}

/* ═══ Footer Extras ═══ */
.f-logo {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}
.f-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,.4);
  margin-top: 8px;
}
.footer-icp { margin-top: 8px; }
.footer-icp a { color: rgba(255,255,255,.35); }

/* ═══ Language Switch ═══ */
.lang-switch {
  font-size: 12px;
  color: var(--gray-400) !important;
  border: 1px solid var(--gray-200);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: all var(--duration) var(--ease);
}
.lang-switch:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
}

/* ═══ Scroll Animations ═══ */
.animate-in {
  animation: fadeUp .6s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .result-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-slogan { font-size: 16px; }
  .hero-offer {
    padding: 10px 18px;
    font-size: 13px;
    gap: 10px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    width: 100%;
    max-width: 320px;
  }
  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .hero-trust-item .num { font-size: 20px; }
  .hero-visual { max-width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }

  .tl-step { padding-left: 18px; gap: 14px; }
  .tl-marker {
    width: 34px;
    height: 34px;
    font-size: 14px;
    margin-left: -38px;
  }

  .partner-grid { gap: 12px 20px; }
  .cert-strip { gap: 8px 16px; }

  .contact-qr { gap: 20px; }
}

@media (max-width: 480px) {
  .hero-trust-item .num { font-size: 18px; }
  .hero-offer { border-radius: var(--radius); text-align: center; }
}
