/* PC Power Tech heritage presentation layer — local assets only. */
:root {
  --pc-blue: #2734df;
  --pc-blue-dark: #151d9a;
  --pc-orange: #eea021;
  --pc-gold: #fcca46;
  --max-width: 990px;
  --pc-shadow: 0 10px 32px rgba(17, 25, 96, .20);
}

html, body {
  background: #ededed url('../assets/images/page-texture.jpg') repeat fixed;
}

.wrapper {
  margin: 12px auto;
  min-height: calc(100vh - 24px);
  border: 1px solid rgba(37, 50, 224, .16);
  box-shadow: var(--pc-shadow);
}

.site-header {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: var(--pc-blue);
}

.brand {
  display: block;
  width: 100%;
  font-size: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  background: linear-gradient(#303dec, #202ccb);
  border-bottom: 4px solid var(--pc-gold);
}

.nav-main > li > a {
  padding: 11px 20px;
  font-size: 12px;
  border-right-color: rgba(255,255,255,.18);
}

.nav-main > li > a:hover,
.nav-main > li.open > a,
.nav-main > li:hover > a {
  background: var(--pc-gold);
  color: #151515;
}

.nav-main > li.active > a {
  background: var(--pc-gold);
  color: #111;
  border-bottom-color: #111;
}

.main-body {
  padding: 28px 34px 36px;
  background: linear-gradient(180deg, #fff 0, #fff 84%, #fafafa 100%);
}

.content-inner { max-width: none; }

.hero-panel {
  min-height: 245px;
  padding: 43px min(37%, 350px) 38px 35px;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(25,35,171,.98) 0%, rgba(37,50,224,.94) 57%, rgba(37,50,224,.34) 100%),
    url('../assets/images/service-remote-support.png') 88% 50% / 150px auto no-repeat,
    var(--pc-blue);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.hero-panel h1 { font-size: 28px; text-transform: uppercase; }
.hero-panel p { margin-left: 0; }
.hero-cta { border-radius: 0; box-shadow: 0 3px 0 rgba(0,0,0,.22); }

.service-showcase {
  margin: 0 0 28px;
  padding: 22px;
  background: #f5f5f5;
  border-top: 3px solid var(--pc-blue);
  border-bottom: 3px solid var(--pc-gold);
}

.service-showcase h2 {
  margin: 0 0 18px;
  color: var(--pc-blue);
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
}

.service-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card {
  display: flex;
  min-width: 0;
  min-height: 168px;
  padding: 12px 8px;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  color: #222;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid #ddd;
  border-bottom: 4px solid var(--pc-orange);
}
.service-card:hover { color: var(--pc-blue); border-color: var(--pc-blue); transform: translateY(-2px); }
.service-card img { width: auto; height: 112px; object-fit: contain; }

.page-illustration {
  float: right;
  width: 190px;
  margin: 0 0 22px 28px;
  padding: 18px;
  text-align: center;
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-bottom: 4px solid var(--pc-orange);
}
.page-illustration img { max-height: 145px; object-fit: contain; }

.pageheader, h1.pageheader {
  color: var(--pc-blue);
  text-transform: uppercase;
  border-bottom: 3px solid var(--pc-gold);
}

.productoverview { border-radius: 0; border-left-width: 6px; }
.po_header { text-transform: uppercase; }
.site-footer { margin-top: 0; border-top: 4px solid var(--pc-gold); }

@media (max-width: 900px) {
  .wrapper { margin: 0 auto; min-height: 100vh; border: 0; }
  .site-header { min-height: 0; }
  .nav-toggle { position: absolute; right: 14px; bottom: 12px; z-index: 2; background: rgba(16,24,151,.92); border: 1px solid rgba(255,255,255,.45); }
  .site-nav { border-bottom-width: 3px; }
  .hero-panel { padding: 30px 26px; background: linear-gradient(135deg, var(--pc-blue), var(--pc-blue-dark)); }
  .service-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .brand img { min-height: 92px; object-fit: cover; object-position: left center; }
  .nav-toggle { width: 42px; height: 42px; }
  .main-body { padding: 20px 16px 28px; }
  .hero-panel h1 { font-size: 21px; }
  .service-showcase { padding: 16px 10px; }
  .service-card { min-height: 145px; font-size: 11px; }
  .service-card img { height: 92px; }
  .page-illustration { float: none; width: 100%; margin: 0 0 22px; padding: 12px; }
  .page-illustration img { max-height: 120px; }
}
