/* Flexible PCB Inquiry Form — v1.0.0 — all values hardcoded */
/* Quote TYPE */
.pcb-quote-wrap{
    max-width:1300px;
    margin:0 auto;
    padding:20px 0;
}

.pcb-quote-nav{
    display:flex;
    gap:16px;
    list-style:none;
    padding:0;
    margin:0;
}

.pcb-quote-item{
    flex:1;
}

.pcb-quote-item a{
    display:block;
    text-decoration:none;
}

.pcb-quote-box{
    position:relative;
    height:120px;
    background:#fff;
    border:2px solid #e5e7eb;
    border-radius:16px;
    display:flex;
    /*flex-direction:column;*/
    justify-content:center;
    align-items:center;
    transition:all .3s ease;
    overflow:hidden;
}

.pcb-quote-box img{
    width:110px;
    height:80px;
    /*object-fit:contain;*/
    /*margin-bottom:12px;*/
    border-radius:10px;
    margin-right:10px;
}

.pcb-quote-box span{
    font-size:16px;
    font-weight:600;
    color:#222;
    text-align:center;
    line-height:1.4;
}

.pcb-quote-item:hover .pcb-quote-box{
    border-color:#00a86b;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,168,107,.15);
}

.pcb-quote-item:hover .pcb-quote-box span{
    color:#00a86b;
}

.pcb-quote-active .pcb-quote-box{
    border-color:#00a86b;
    color:#00a86b;
    box-shadow:0 12px 30px rgba(0,168,107,.25);
}

.pcb-quote-active .pcb-quote-box span{
    color:#00a86b;
}

.pcb-quote-active .pcb-quote-box::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:-8px;
    transform:translateX(-50%) rotate(45deg);
    width:16px;
    height:16px;
    background:#00b673;
}

.pcb-quote-new{
    position:absolute;
    top:10px;
    right:10px;
    padding:3px 8px;
    font-size:13px;
    font-style:normal;
    font-weight:700;
    color:#fff;
    background:#ff5b2e;
    border-radius:20px;
    line-height:1;
}

@media (max-width:768px){

    .pcb-quote-wrap{
        padding:12px 0;
        overflow:hidden;
    }

    .pcb-quote-nav{
        display:flex;
        flex-wrap:nowrap;
        gap:10px;
        overflow-x:auto;
        overflow-y:hidden;
        padding:0 15px 10px;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
    }

    .pcb-quote-nav::-webkit-scrollbar{
        display:none;
    }

    .pcb-quote-item{
        flex:0 0 120px;
        /*min-width:120px;*/
    }

    .pcb-quote-box{
        height:90px;
        border-radius:12px;
    }

    .pcb-quote-box img{
        /*width:30px;*/
        /*height:30px;*/
        margin:8px 2px;
    }

    .pcb-quote-box span{
        font-size:14px;
        line-height:1.3;
        padding:0 6px;
    }

    .pcb-quote-new{
        top:6px;
        right:6px;
        font-size:9px;
        padding:2px 6px;
    }

}

/* ── BASE ── */
.fpcb-wrap *, .fpcb-wrap *::before, .fpcb-wrap *::after { box-sizing: border-box; }
.fpcb-wrap {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size:16px;
  line-height: 1.6;
  color: #1a2a1e;
  background: #f4faf6;
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

/* ── PAGE HEADER ── */
.fpcb-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 36px 40px;
  background: linear-gradient(135deg, #005a2d 0%, #007a3d 55%, #00a651 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.fpcb-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.fpcb-header h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .5px;
  position: relative;
}
.fpcb-header p {
  color: rgba(255,255,255,.82);
  font-size:16px;
  margin: 8px 0 0;
  position: relative;
}
.fpcb-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 22px;
  position: relative;
}
.fpcb-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-weight: 500;
}
.fpcb-step-n {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size:14px; font-weight: 700;
  color: rgba(255,255,255,.8);
  flex-shrink: 0;
}
.fpcb-step.on { color: #fff; }
.fpcb-step.on .fpcb-step-n { background: #fff; color: #007a3d; }
.fpcb-step-sep { width: 40px; height: 1px; background: rgba(255,255,255,.28); margin: 0 6px; flex-shrink: 0; }

/* ── MAIN LAYOUT ── */
.fpcb-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  align-items: start;
}

/* ── CARD ── */
.fpcb-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d4eadc;
  box-shadow: 0 2px 8px rgba(0,100,50,.08);
  overflow: hidden;
  margin-bottom: 20px;
}
.fpcb-card-head {
  background: linear-gradient(90deg, #e8f5ee 0%, #f8fdf9 100%);
  border-bottom: 2px solid #00a651;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fpcb-card-ico {
  width: 32px; height: 32px;
  background: #00a651;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fpcb-card-ico svg { fill: #fff; width: 17px; height: 17px; display: block; }
.fpcb-card-head h2 {
  font-size: 17px;
  font-weight: 700;
  color: #005a2d;
  margin: 0;
  letter-spacing: .2px;
}
.fpcb-card-sub { font-size:14px; color: #6b8575; margin-top: 2px; }
.fpcb-card-body { padding: 22px; }

/* ── UPLOAD ZONE ── */
.fpcb-upload-zone {
  border: 2px dashed #c5e8d5;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all .22s;
  background: #f0f8f3;
}
.fpcb-upload-zone:hover, .fpcb-upload-zone.drag-over {
  border-color: #00a651;
  background: #e8f5ee;
}
.fpcb-upload-ico {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #00a651, #007a3d);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(0,166,81,.18);
}
.fpcb-upload-ico svg { fill: #fff; width: 24px; height: 24px; display: block; }
.fpcb-upload-zone h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a2a1e;
  margin: 0 0 6px;
}
.fpcb-upload-zone p { font-size: 14px; color: #6b8575; margin: 0 0 6px; }
.fpcb-upload-limit {
  display: inline-block;
  background: #e8f5ee;
  border: 1px solid #c5e8d5;
  color: #007a3d;
  font-size:14px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  margin-top: 6px;
}
.fpcb-upload-btn {
  display: inline-block;
  background: #00a651;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 24px;
  border-radius: 6px;
  margin-top: 14px;
  cursor: pointer;
  transition: background .2s;
}
.fpcb-upload-btn:hover { background: #007a3d; }
#fpcb-file-input { display: none; }

.fpcb-file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.fpcb-file-row {
  display: flex; align-items: center; gap: 10px;
  background: #e8f5ee;
  border: 1px solid #c5e8d5;
  border-radius: 6px;
  padding: 8px 12px;
}
.fpcb-file-ico {
  width: 28px; height: 28px;
  background: #00a651;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fpcb-file-ico svg { fill: #fff; width: 14px; height: 14px; }
.fpcb-file-name { flex: 1; font-size: 14px; color: #1a2a1e; font-weight: 500; word-break: break-all; }
.fpcb-file-sz { font-size:14px; color: #6b8575; flex-shrink: 0; }
.fpcb-file-del {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(224,53,53,.12);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
  padding: 0;
}
.fpcb-file-del:hover { background: rgba(224,53,53,.25); }
.fpcb-file-del svg { fill: #e03535; width: 10px; height: 10px; }

/* ── FORM ELEMENTS ── */
.fpcb-grid { display: grid; gap: 18px; }
.fpcb-g2 { grid-template-columns: 1fr 1fr; }
.fpcb-g3 { grid-template-columns: 1fr 1fr 1fr; }
.fpcb-g4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.fpcb-span2 { grid-column: span 2; }
.fpcb-span3 { grid-column: span 3; }

.fpcb-fg { display: flex; flex-direction: column; gap: 7px; }
.fpcb-label {
  font-size: 14px;
  font-weight: 600;
  color: #3d5245;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fpcb-req { color: #e03535; font-size:16px; line-height: 1; }
.fpcb-tip {
  width: 16px; height: 16px;
  background: #c5e8d5;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size:12px; font-weight: 700;
  color: #007a3d;
  cursor: help;
  flex-shrink: 0;
  position: relative;
}
.fpcb-tip:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,30,15,.9);
  color: #fff;
  font-size:14px;
  padding: 6px 10px;
  border-radius: 5px;
  white-space: normal;
  text-align: center;
  z-index: 9999;
  max-width: 200px;
  font-weight: 400;
  pointer-events: none;
}

.fpcb-wrap input[type="text"],
.fpcb-wrap input[type="number"],
.fpcb-wrap input[type="email"],
.fpcb-wrap select,
.fpcb-wrap textarea {
  width: 100%;
  padding: 9px 13px;
  border: 1.5px solid #d4eadc;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size:16px;
  color: #1a2a1e;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  box-shadow: none;
}
.fpcb-wrap input:focus,
.fpcb-wrap select:focus,
.fpcb-wrap textarea:focus {
  border-color: #00a651;
  box-shadow: 0 0 0 3px rgba(0,166,81,.14);
}
.fpcb-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300a651' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 34px;
  cursor: pointer;
}
.fpcb-wrap textarea { resize: vertical; min-height: 88px; }
.fpcb-wrap input[type="number"] { -moz-appearance: textfield; }
.fpcb-wrap input[type="number"]::-webkit-outer-spin-button,
.fpcb-wrap input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }

/* input with unit suffix */
.fpcb-input-unit {
  display: flex; align-items: stretch;
  border: 1.5px solid #d4eadc;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.fpcb-input-unit:focus-within { border-color: #00a651; box-shadow: 0 0 0 3px rgba(0,166,81,.14); }
.fpcb-input-unit input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  flex: 1; min-width: 0;
}
.fpcb-unit {
  background: #f0f8f3;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #6b8575;
  border-left: 1px solid #d4eadc;
  flex-shrink: 0;
  display: flex; align-items: center;
}

/* ── BUTTON GROUPS ── */
.fpcb-btns { display: flex; flex-wrap: wrap; gap: 7px; }
.fpcb-btn {
  padding: 7px 15px;
  border: 1.5px solid #d4eadc;
  border-radius: 6px;
  background: #fff;
  color: #3d5245;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
}
.fpcb-btn:hover { border-color: #00a651; color: #00a651; background: #e8f5ee; }
.fpcb-btn.on { border-color: #00a651; background: #00a651; color: #fff; box-shadow: 0 2px 8px rgba(0,166,81,.2); }

/* ── THICKNESS GRID ── */
.fpcb-thick-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.fpcb-thick-btn {
  padding: 5px 11px;
  border: 1.5px solid #d4eadc;
  border-radius: 5px;
  background: #fff;
  color: #3d5245;
  font-size:14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.fpcb-thick-btn:hover { border-color: #00a651; color: #00a651; }
.fpcb-thick-btn.on { border-color: #00a651; background: #00a651; color: #fff; }

/* ── HELPER IMAGE BOXES ── */
.fpcb-helper-img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
.fpcb-helper-img svg { display: block; }

/* ── SIZE INPUT PAIR ── */
.fpcb-size-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fpcb-size-row .fpcb-input-unit { flex: 1; }
.fpcb-size-x { color: #6b8575; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.fpcb-unit-toggle {
  display: flex;
  background: #f0f8f3;
  border: 1px solid #d4eadc;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.fpcb-unit-toggle button {
  padding: 8px 14px;
  border: none;
  background: transparent;
  font-size:14px;
  font-weight: 600;
  color: #6b8575;
  cursor: pointer;
  transition: all .15s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.fpcb-unit-toggle button.on { background: #00a651; color: #fff; }

/* ── PANEL OPTIONS ── */
.fpcb-panel-opts {
  background: #f0f8f3;
  border: 1px solid #d4eadc;
  border-radius: 8px;
  padding: 16px;
  display: none;
}
.fpcb-panel-opts.show { display: block; }

/* ── STIFFENER TABLE ── */
.fpcb-stiffener-opts { display: none; }
.fpcb-stiffener-opts.show { display: block; }
.fpcb-stiff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

/* ── DIVIDER ── */
.fpcb-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 18px 0 14px;
}
.fpcb-divider span {
  font-size:14px;
  font-weight: 700;
  color: #007a3d;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.fpcb-divider::before, .fpcb-divider::after {
  content: ''; flex: 1; height: 1px; background: #c5e8d5;
}

/* ── NOTE BOX ── */
.fpcb-note {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  border-radius: 8px;
  padding: 11px 14px;
  font-size:14px;
  color: #7c5e00;
  line-height: 1.6;
  margin-top: 10px;
  display: flex; align-items: flex-start; gap: 9px;
}
.fpcb-note svg { fill: #c68a00; width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }

/* ── SUBMIT BAR ── */
.fpcb-submit-bar {
  background: linear-gradient(135deg, #005a2d, #007a3d);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.fpcb-agree-wrap { flex: 1; }
.fpcb-agree-row {
  display: flex; align-items: flex-start; gap: 9px;
  margin-bottom: 8px;
}
.fpcb-agree-row input[type="checkbox"] {
  width: 15px; height: 15px;
  margin-top: 2px;
  accent-color: #00c060;
  flex-shrink: 0;
  border: none; box-shadow: none; padding: 0;
}
.fpcb-agree-row label {
  font-size:14px;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  line-height: 1.5;
}
.fpcb-agree-row label a { color: #00c060; }
.fpcb-agree-note { font-size:14px; color: rgba(255,255,255,.6); line-height: 1.5; }
.fpcb-submit-btn {
  padding: 13px 34px;
  background: linear-gradient(135deg, #00c060, #00a651);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .4px;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 4px 20px rgba(0,192,96,.35);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
}
.fpcb-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,192,96,.48); }
.fpcb-submit-btn svg { fill: #fff; width: 18px; height: 18px; }

/* ── NOTICE ── */
.fpcb-notice {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 14px;
  display: none;
}
.fpcb-notice.err { background: #fff2f2; border: 1px solid #ffccc7; color: #cf1322; display: block; }

/* ── SIDEBAR SUMMARY ── */
.fpcb-sidebar { position: sticky; top: 24px; }
.fpcb-sum-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #d4eadc;
  box-shadow: 0 4px 20px rgba(0,100,50,.1);
  overflow: hidden;
}
.fpcb-sum-head {
  background: linear-gradient(135deg, #007a3d, #005a2d);
  padding: 15px 18px;
  display: flex; align-items: center; gap: 10px;
}
.fpcb-sum-head svg { fill: #fff; width: 20px; height: 20px; }
.fpcb-sum-head h3 { font-size: 16px; font-weight: 700; color: #fff; margin: 0; letter-spacing: .3px; }
.fpcb-sum-body { padding: 16px; }
.fpcb-sum-sec { margin-bottom: 14px; }
.fpcb-sum-sec-title {
  font-size:13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00a651;
  border-bottom: 1px solid #c5e8d5;
  padding-bottom: 5px;
  margin-bottom: 8px;
}
.fpcb-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  padding: 4px 0;
  border-bottom: 1px dashed #d4eadc;
}
.fpcb-sum-row:last-child { border-bottom: none; }
.fpcb-sum-k { font-size:14px; color: #6b8575; flex-shrink: 0; max-width: 100px; }
.fpcb-sum-v { font-size:14px; font-weight: 600; color: #1a2a1e; text-align: right; word-break: break-all; }
.fpcb-sum-v.hi { color: #00a651; }
em.fpcb-em { font-style: italic; font-weight: 400; color: #ccc; font-size:14px; }
.fpcb-help-box {
  background: #f0f8f3;
  border: 1px solid #d4eadc;
  border-radius: 8px;
  padding: 13px;
  margin-top: 14px;
  font-size:14px;
  color: #6b8575;
  line-height: 1.65;
}
.fpcb-help-box strong { color: #007a3d; }
.fpcb-help-box a { color: #00a651; text-decoration: none; }
.fpcb-help-box a:hover { text-decoration: underline; }

/* ── MODAL ── */
.fpcb-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 99999;
  align-items: center; justify-content: center;
  padding: 20px;
}
.fpcb-modal-overlay.show { display: flex; }
.fpcb-modal-box {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  width: 100%; max-width: 460px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  animation: fpcbIn .28s ease;
}
@keyframes fpcbIn {
  from { transform: scale(.88) translateY(12px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.fpcb-modal-head {
  background: #00a651;
  padding: 30px 28px 22px;
  text-align: center;
  position: relative;
}
.fpcb-modal-x {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0; color: #fff; font-size: 18px; font-weight: 400; line-height: 1;
  transition: background .18s;
}
.fpcb-modal-x:hover { background: rgba(255,255,255,.32); }
.fpcb-modal-check {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.fpcb-modal-check svg { fill: #fff; width: 30px; height: 30px; }
.fpcb-modal-title { margin: 0; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: .2px; }
.fpcb-modal-sub { margin: 6px 0 0; font-size:14px; color: rgba(255,255,255,.78); font-weight: 400; }
.fpcb-modal-body { padding: 22px 26px 26px; }
.fpcb-modal-msg { margin: 0 0 18px; font-size: 14px; color: #4a5568; line-height: 1.65; font-weight: 400; }
.fpcb-modal-msg strong { color: #007a3d; font-weight: 600; }
.fpcb-modal-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.fpcb-modal-step { display: flex; align-items: flex-start; gap: 12px; }
.fpcb-step-dot {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: #e8f5ee;
  border: 1px solid #c5e8d5;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.fpcb-step-dot svg { fill: #007a3d; width: 15px; height: 15px; }
.fpcb-step-t { margin: 0 0 2px; font-size:14px; font-weight: 600; color: #1a202c; }
.fpcb-step-d { margin: 0; font-size:14px; color: #718096; line-height: 1.5; font-weight: 400; }
.fpcb-modal-hr { border-top: 1px solid #e8edf2; margin-bottom: 18px; }
.fpcb-modal-close {
  width: 100%; padding: 11px;
  border-radius: 8px; background: #00a651; border: none;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px; font-weight: 600; color: #fff;
  letter-spacing: .2px; transition: background .2s;
}
.fpcb-modal-close:hover { background: #007a3d; }

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
  .fpcb-layout { grid-template-columns: 1fr; }
  .fpcb-sidebar { position: static; }
}
@media (max-width:700px) {
  .fpcb-g2, .fpcb-g3, .fpcb-g4 { grid-template-columns: 1fr; }
  .fpcb-span2, .fpcb-span3 { grid-column: span 1; }
  .fpcb-stiff-grid { grid-template-columns: 1fr; }
  .fpcb-submit-bar { flex-direction: column; }
  .fpcb-wrap { padding: 14px 12px 40px; }
  .fpcb-header { padding: 22px 16px; }
  .fpcb-header h1 { font-size: 22px; }
  .fpcb-step-sep { width: 20px; }
}
