/* ====== PCB Page Styles (plain CSS, responsive, iOS-safe) ====== */
.pcb-page {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: #27323f;
  line-height: 1.5;
}

.pcb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.pcb-index-index .page-title-wrap {
    display: none;
}
.pcb-index-index #maincontent {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}
/* Hero */
.pcb-hero {
    background: linear-gradient(135deg, #1755a8 0%, #0d3d6b 100%);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    min-height: 250px;
}
.pcb-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: 1px;
}
.pcb-hero p {
    font-size: 16px;
    opacity: 0.95;
    color: #fff !important;
    margin: 0 0 22px;
}
 
.pcb-btn {
    display: inline-block;
    background: #fff;
    color: #3065bf;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    transition: transform .15sease, box-shadow .15sease, background .15sease;
    margin: 15px 0;
}
.pcb-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(0,0,0,.22); background:#1177e6; }

/* Section headings */
.pcb-section {
  padding: 42px 0;
  margin-bottom: 35px;
}
.pcb-section h2 {
    font-size: 43px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 8px;
    color: #3065bf;
}
.pcb-section .sub {
    text-align: center;
    color: #666;
    margin-bottom: 30px !important;
}

/* Cards grid */
.pcb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.pcb-card {
  background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(13, 17, 23, .08);
    padding: 16px;
    text-align: left;
}
.pcb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #b6cef4;
    border-radius: 10px !important;
}
.pcb-card .num {
   line-height: 24px;
    min-width: 24px;
    text-align: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1755a8, #1a7abf);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(23, 85, 168, 0.3);
}
.pcb-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin: 2px 0 6px;
    color: #1755a8;
    text-align: center;
}
.pcb-card p {
   font-size: 16px;
    color: #666;
    text-align: center;
    font-weight: 300;
    line-height: 32px;
}

/* Supported formats */
.pcb-formats {
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.pcb-format {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(13,17,23,.08);
  padding: 14px;
  text-align:center;
}
.pcb-format:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #b6cef4;
}
.pcb-format .icon {
  width: 44px; height: 44px; margin: 0 auto 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}
.pcb-format h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 8px 0 4px;
}
.pcb-format p {
    text-align: center;
    margin-bottom: 22px !important;
    font-size: 14px;
    color: #666;
}
.pcb-container p {
   margin-bottom: 15px !important;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
}

/* Why choose (features) */
.pcb-why-grid {
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.pcb-why-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(13,17,23,.08);
  padding: 14px;
  text-align:left;
}
.pcb-why-card:hover {
	border: 1px solid #b6cef4;
	border-radius: 10px !important;
	box-shadow: 0 6px 18px rgba(2, 6, 23, .06);
	}
.pcb-why-card .badge {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #e8f5e9;
    text-align: center;
    margin: 0 auto;
}
.pcb-why-card h4 {
      font-size: 16px;
    font-weight: 800;
    margin: 8px 0 8px;
    text-align: center;
}

.pcb-why-card p {
    margin-bottom: 22px !important;
    color: #666;
    text-align: center;
    line-height: 25px;
    font-size: 16px;
}

/* Form section */
label.design-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.pcb-form-wrap {
  padding: 48px 0;
  background: #fff;
}
.pcb-form-wrap h2 {
    font-size: 43px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 8px;
    color: #3065bf;
}
.pcb-form-wrap .sub {
  text-align:center; color:#666; margin-bottom:22px !important;font-size: 16px;
}
.pcb-form-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(13, 17, 23, .10);
    padding: 60px;
    margin-top: 20px;
    border: 1px solid #b6cef4;
}
.pcb-field {
  display: flex;
    gap: 47px;
    margin-bottom: 35px;
}
.pcb-field .col {
  flex:1;
}
input.pcb-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}
 
.pcb-textarea {min-height: 110px;
    resize: vertical;
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s; }
.pcb-input:focus, .pcb-select:focus, .pcb-textarea:focus {
  border-color: #1f8fff;
  box-shadow: 0 0 0 3px rgba(31,143,255,.15);
  outline: none;
}
.pcb-submit {
  display:block; width:100%;
  border: none;
  border-radius: 999px;
  color:#fff; font-weight:800;
  padding: 12px 16px; font-size: 15px;
  box-shadow: 0 8px 24px rgba(13,17,23,.18);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      background: linear-gradient(135deg, #1755a8, #1a7abf);
}
.pcb-submit:hover { transform: translateY(-1px); box-shadow:0 10px 30px rgba(13,17,23,.22); background:linear-gradient(135deg, #1755a8, #1a7abf);}

/* Responsive */
@media (max-width: 1024px) {
  .pcb-grid { grid-template-columns: repeat(3, 1fr); }
  .pcb-formats { grid-template-columns: repeat(3, 1fr); }
  .pcb-why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .pcb-grid { grid-template-columns: repeat(2, 1fr); }
  .pcb-formats { grid-template-columns: repeat(2, 1fr); }
  .pcb-why-grid { grid-template-columns: repeat(2, 1fr); }
  .pcb-field { flex-direction: column; }
  .pcb-hero h1 { font-size: 26px; }
}
