/* ==========================================================================
   Gross Pay Calculator — Scoped CSS (Prorated Monthly Gross)
   Prefix: .gpc-
   ========================================================================== */

/* ---------- CSS Variables ---------- */
.gpc-wrap {
  --gpc-primary: #007AFF;
  --gpc-primary-dark: #0066D6;
  --gpc-orange: #FFA709;
  --gpc-orange-dark: #E0900A;
  --gpc-green: #60B158;
  --gpc-pink: #FF6961;
  --gpc-ink: #1E2538;
  --gpc-gray: #515869;
  --gpc-gray2: #8F95A6;
  --gpc-bg: #FAFBFC;
  --gpc-card: #FFFFFF;
  --gpc-border: #E5E8EE;
  --gpc-border-hover: #D5DAE3;
  --gpc-soft: #F4F6FA;
  --gpc-soft-blue: #E6F2FF;
  --gpc-surface: #F8FAFB;
  --gpc-font-sans: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  --gpc-font-mono: 'JetBrains Mono', 'Courier New', monospace;
  font-family: var(--gpc-font-sans);
  color: var(--gpc-ink);
  line-height: 1.5;
}
.gpc-wrap *, .gpc-wrap *::before, .gpc-wrap *::after { box-sizing: border-box; }
.gpc-wrap h1, .gpc-wrap h2, .gpc-wrap h3, .gpc-wrap h4, .gpc-wrap h5, .gpc-wrap h6 { color: var(--gpc-ink); }

/* ---------- Template overrides ---------- */
.page-template-page-ai-calculator .banner_section { display: none !important; }
.page-template-page-ai-calculator .calculator_sec1 { padding: 0 !important; }
.page-template-page-ai-calculator .salary_calculator_sec { padding: 0 !important; display: none !important; }

/* ---------- Layout ---------- */
.gpc-section { padding: 10px 20px; }
.gpc-s-center { text-align: center; }

/* ============ HERO ============ */
.gpc-hero {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  background: var(--gpc-bg) !important;
  padding: 64px 0 80px !important;
}
.gpc-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gpc-badge-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #FFFFFF !important;
  color: var(--gpc-ink) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  border: 1px solid var(--gpc-border) !important;
  box-shadow: 0 1px 2px rgba(30,37,56,0.04) !important;
}
.gpc-badge-pill::before,
.gpc-badge-pill::after {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: var(--gpc-primary) !important;
  display: inline-block !important;
}

.gpc-hero-title {
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin: 20px auto 12px !important;
  max-width: 780px !important;
  color: var(--gpc-ink) !important;
  letter-spacing: -1px !important;
}

.gpc-hero-sub {
  font-size: 18px !important;
  color: var(--gpc-gray) !important;
  line-height: 1.6 !important;
  max-width: 750px !important;
  margin: 0 auto !important;
}

.gpc-trust-row {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 28px auto 0 !important;
}
.gpc-trust-pill {
  background: #fff !important;
  border: 1px solid var(--gpc-border) !important;
  border-radius: 999px !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--gpc-gray) !important;
  box-shadow: 0 2px 10px rgba(30,37,56,0.04) !important;
}

/* ============ CALC GRID ============ */
.gpc-calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}

.gpc-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(30,37,56,0.06);
  position: relative;
  overflow: hidden;
}
.gpc-gradient-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gpc-primary);
}
.gpc-input-card { padding: 0; }

/* ============ CARD HEADER ============ */
.gpc-card-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 20px 24px 16px !important;
  border-bottom: 1px solid #F2F4F8 !important;
}
.gpc-card-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gpc-card-icon {
  color: var(--gpc-primary);
}
.gpc-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gpc-ink);
}
.gpc-fy-badge {
  background: var(--gpc-soft-blue) !important;
  color: var(--gpc-primary) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 5px 12px !important;
  border-radius: 999px !important;
}

/* ============ ACCORDION ============ */
.gpc-accordion { border-top: 1px solid #F2F4F8; }
.gpc-accordion:first-of-type { border-top: none; }

.gpc-acc-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer;
  padding: 16px 24px;
}
.gpc-acc-head-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gpc-acc-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gpc-primary);
}
.gpc-acc-head h3 {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--gpc-ink) !important;
  text-transform: none !important;
}
.gpc-chev {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 6px;
  background: var(--gpc-soft-blue);
  color: var(--gpc-primary);
  transition: transform 200ms ease;
}
.gpc-acc-head[aria-expanded="true"] .gpc-chev { transform: rotate(180deg); }

.gpc-acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms ease;
}
.gpc-acc-body-inner {
  padding: 4px 24px 20px;
  display: grid;
  gap: 16px;
}

/* ============ FORM FIELDS ============ */
.gpc-field { display: flex; flex-direction: column; gap: 6px; }
.gpc-field label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1e2538 !important;
    text-transform: uppercase !important;
    font-family: 'Instrument Sans';
    padding-bottom: 5px;
}
.gpc-field-row { display: grid; gap: 12px; }
.gpc-field-row-2 { grid-template-columns: 1fr 1fr; }

.gpc-input,
.gpc-select {
  width: 100% !important;
  background: var(--gpc-surface) !important;
  border: 1px solid var(--gpc-border) !important;
  border-radius: 10px !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--gpc-ink) !important;
  transition: 200ms ease !important;
  outline: none !important;
}
.gpc-input:focus,
.gpc-select:focus {
  background: #fff !important;
  border-color: var(--gpc-primary) !important;
  box-shadow: 0 0 0 3px rgba(0,122,255,0.15) !important;
}

.gpc-input-prefix {
  position: relative;
  display: flex;
  align-items: center;
}
.gpc-pfx {
  position: absolute;
  left: 14px;
  color: var(--gpc-gray);
  font-weight: 600;
  font-size: 14px;
  pointer-events: none;
}
.gpc-input-prefix .gpc-input { padding-left: 28px !important; }

/* Radio group */
.gpc-radio-group {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}
.gpc-radio-group label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--gpc-surface) !important;
  border: 1px solid var(--gpc-border) !important;
  padding: 9px 14px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--gpc-ink) !important;
  cursor: pointer !important;
  transition: 200ms ease !important;
  flex: 1 !important;
  justify-content: center !important;
  min-width: 0 !important;
  text-transform: none !important;
}
.gpc-radio-group label:has(input:checked) {
  background: var(--gpc-soft-blue) !important;
  border-color: var(--gpc-primary) !important;
  color: var(--gpc-primary) !important;
}

.gpc-styled-radio {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  border: 2px solid var(--gpc-primary) !important;
  background: #fff !important;
  cursor: pointer !important;
  position: relative !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
  margin: 0 !important;
}
.gpc-styled-radio:checked {
  background: #fff !important;
  border-color: var(--gpc-primary) !important;
}
.gpc-styled-radio:checked::after {
  content: '' !important;
  position: absolute !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--gpc-primary) !important;
  top: 3px !important;
  left: 3px !important;
}

/* Buttons */
.gpc-btn-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 0 !important;
  padding: 16px 24px 20px !important;
  border-top: 1px solid #F2F4F8 !important;
}
.gpc-btn {
  padding: 12px 18px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: 200ms ease !important;
  cursor: pointer !important;
  border: none !important;
  font-family: inherit !important;
}
.gpc-btn-primary {
  background: var(--gpc-primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(0,122,255,0.2) !important;
  flex: 1 !important;
}
.gpc-btn-primary:hover { background: var(--gpc-primary-dark) !important; }
.gpc-btn-ghost {
  background: var(--gpc-surface) !important;
  color: var(--gpc-primary) !important;
  border: 1px solid var(--gpc-border) !important;
}
.gpc-btn-ghost:hover {
  background: var(--gpc-soft-blue) !important;
  border-color: var(--gpc-primary) !important;
}

.gpc-hint-line {
  font-size: 14px;
  font-weight: 500;
  color: var(--gpc-gray2);
  padding: 0 24px 20px;
  text-align: center;
}

/* ============ RESULT PANEL ============ */
.gpc-result-card { padding: 0; }

/* Live Calculation header */
.gpc-result-header {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 20px 24px 0 !important;
}
.gpc-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gpc-green);
  animation: gpc-pulse 2s infinite;
}
@keyframes gpc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.gpc-live-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gpc-green);
  text-transform: uppercase;
}

/* Donut section */
.gpc-donut-section {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 20px 24px;
  align-items: center;
}
.gpc-donut-col { display: flex; justify-content: center; }
.gpc-donut { position: relative; width: 160px; height: 160px; }
.gpc-donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gpc-donut-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.gpc-dc-pct {
  font-size: 28px;
  font-weight: 700;
  color: var(--gpc-ink);
  line-height: 1;
}
.gpc-dc-lbl {
  font-size: 9px;
  font-weight: 600;
  color: var(--gpc-gray2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Stats column */
.gpc-stats-col { display: grid; gap: 12px; }
.gpc-stat-line {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gpc-stat-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.gpc-dot-blue { background: var(--gpc-primary); }
.gpc-dot-green { background: var(--gpc-green); }
.gpc-dot-orange { background: var(--gpc-orange); }
.gpc-stat-key {
  font-size: 13px;
  font-weight: 500;
  color: var(--gpc-gray);
  flex: 1;
}
.gpc-stat-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--gpc-ink);
  text-align: right;
}

/* Breakdown rows */
.gpc-result-breakdown {
  margin: 0 24px;
  padding: 16px 20px;
  border: 1.5px dashed var(--gpc-border);
  border-radius: 12px;
  background: #fff;
}
.gpc-bd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #F2F4F8;
}
.gpc-bd-row:last-child { border-bottom: none; }
.gpc-bd-key {
  font-size: 14px;
  font-weight: 500;
  color: var(--gpc-gray);
}
.gpc-bd-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--gpc-ink);
  text-align: right;
}

.gpc-bd-total {
  border-bottom: none !important;
  border-top: 1.5px dashed var(--gpc-border);
  padding-top: 14px !important;
  margin-top: 4px;
}
.gpc-bd-total .gpc-bd-key {
  font-weight: 600;
  color: var(--gpc-ink);
  font-size: 16px;

}
.gpc-bd-total .gpc-bd-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--gpc-primary);
}

/* Formula bar */
.gpc-formula-bar {
  margin: 16px 24px;
  padding: 14px 18px;
  background: var(--gpc-soft-blue);
  border: 1px solid rgba(0,122,255,0.12);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gpc-gray);
  
  line-height: 1.7;
  overflow-x: auto;
}
.gpc-formula-bar strong {
  color: var(--gpc-primary);
  font-weight: 700;
}

/* Compliance check */
.gpc-compliance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 24px 24px;
  padding: 14px 18px;
  background: #F0FFF4;
  border: 1px solid #C6F6D5;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #276749;
  line-height: 1.55;
}
.gpc-compliance svg {
  display: none;
}
.gpc-compliance::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gpc-green);
  flex-shrink: 0;
  margin-top: 4px;
}
.gpc-compliance.gpc-warning {
  background: #FFFBEB;
  border-color: #FED7AA;
  color: #92400E;
}
.gpc-compliance.gpc-warning::before { background: var(--gpc-orange); }


/* ============ FORMULA STEP-BY-STEP SECTION ============ */
.gpc-formula-section {
  padding: 80px 0;
  background: #fff;
}
.gpc-fs-title {
  font-family: var(--gpc-font-sans);
  font-size: 36px;
  font-weight: 700;
  color: var(--gpc-ink);
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.gpc-fs-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--gpc-gray);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* 3 step cards row — flex like hourly calc */
.gpc-fs-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0 0 40px;
}
.gpc-fs-step-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--gpc-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gpc-fs-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gpc-soft-blue);
  color: var(--gpc-primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.gpc-fs-step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gpc-ink);
  margin: 0;
}
.gpc-fs-step-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--gpc-gray);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.gpc-fs-code {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gpc-ink);
  background: var(--gpc-soft);
  border: 1px solid var(--gpc-border);
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: auto;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}
.gpc-fs-step-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  flex-shrink: 0;
}

/* Master formula card — blue tinted like hourly calc */
.gpc-fs-formula-card {
  margin-top: 0;
  background: #F5FAFF;
  border: 1px solid var(--gpc-soft-blue);
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}
.gpc-fs-formula-left {
  padding: 0;
  border-right: none;
}
.gpc-fs-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gpc-primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.gpc-fs-formula-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--gpc-ink);
  line-height: 1.2;
  margin: 0 0 14px;
}
.gpc-fs-formula-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--gpc-gray);
  line-height: 1.65;
  margin: 0;
}
.gpc-fs-formula-right {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gpc-fs-code-block {
  background: #F5FAFF;
  border: 1px solid rgba(0,122,255,0.1);
  border-radius: 12px;
  padding: 18px 20px;
}
.gpc-fs-code-block code {
  font-size: 14px;
  font-family: 'Instrument Sans';
  font-weight: 500;
  color: var(--gpc-primary);
  line-height: 1.6;
  display: block;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
.gpc-fs-hl {
  color: var(--gpc-primary);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
.gpc-fs-worked {
  background: var(--gpc-surface);
  border: 2px dashed rgba(0,122,255,0.3);
  border-radius: 12px;
  padding: 14px 18px;
}
.gpc-fs-worked-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--gpc-primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.gpc-fs-worked-calc {
  font-family: 'Instrument Sans';
  font-size: 13px;
  font-weight: 400;
  color: var(--gpc-gray);
  line-height: 1.6;
}
.gpc-fs-worked-calc strong {
  display: inline-block;
  background: var(--gpc-primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
}

/* Methodology & sources — blue tinted wrapper with white cards */
.gpc-meth-card {
  background: #F5FAFF;
  border: 1px solid var(--gpc-soft-blue);
  border-radius: 20px;
  padding: 40px;
  overflow: visible;
}
.gpc-meth-header {
  padding: 0 0 28px;
  gap: 24px;
  align-items: start;
  border-bottom: none;
}
.gpc-meth-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gpc-ink);
    padding-bottom: 15px;
  white-space: nowrap;
}
.gpc-meth-header p {
  font-size: 16px;
  font-weight: 400;
  color: var(--gpc-gray);
  line-height: 1.65;
  margin: 0;
  max-width: 820px;
}
.gpc-meth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gpc-meth-ref {
  background: #fff;
  border: 1px solid var(--gpc-soft-blue);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--gpc-soft-blue);
  border-bottom: 1px solid var(--gpc-soft-blue);
}
.gpc-meth-ref:nth-child(3n) { border-right: 1px solid var(--gpc-soft-blue); }
.gpc-meth-ref:nth-child(n+4) { border-bottom: 1px solid var(--gpc-soft-blue); }
.gpc-meth-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--gpc-soft-blue);
  color: var(--gpc-primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.gpc-meth-ref h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gpc-ink);
  margin: 0;
  line-height: 1.3;
}
.gpc-meth-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gpc-primary);
  text-transform: uppercase;
  display: block;
}
.gpc-meth-ref p {
  font-size: 15px;
  font-weight: 400;
  color: var(--gpc-gray);
  line-height: 1.55;
  margin: 0;
}

/* ============ SHARED SECTION STYLES ============ */
.gpc-s-h2 {
  font-size: 32px; font-weight: 700; color: var(--gpc-ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.gpc-s-intro {
  font-size: 17px; font-weight: 400; color: var(--gpc-gray);
  line-height: 1.7; max-width: 620px;
  margin-bottom: 32px;
}
.gpc-s-center .gpc-s-intro,
.gpc-s-intro.gpc-s-center { margin-left: auto; margin-right: auto; }

.gpc-chk-svg {
  width: 20px; height: 20px;
  flex-shrink: 0; color: var(--gpc-primary);
}
.gpc-benefit-card .gpc-chk-svg {
  width: 35px; height: 32px;
  flex-shrink: 0; color: var(--gpc-primary);
}

/* ============ SECTION 2 — STATS & BENEFITS ============ */
.gpc-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 40px;
}
.gpc-stat-card {
  background: #fff; border: 1px solid #EEF0F5;
  border-radius: 16px; padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(30,37,56,0.04);
}
.gpc-stat-num { font-size: 48px; font-weight: 700; line-height: 1; }
.gpc-stat-desc { font-size: 16px; font-weight: 500; color: var(--gpc-gray); margin-top: 15px; line-height: 1.5; }
.gpc-s1 .gpc-stat-num { color: var(--gpc-primary); }
.gpc-s2c .gpc-stat-num { color: var(--gpc-green); }
.gpc-s3c .gpc-stat-num { color: var(--gpc-orange); }

.gpc-benefit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 40px;
}
.gpc-benefit-card {
  background: #fff; border: 1px solid #EEF0F5;
  border-radius: 16px; padding: 24px;
  transition: 200ms ease; text-align: left;
}
.gpc-benefit-card:hover { border-color: var(--gpc-border-hover); }
.gpc-benefit-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.gpc-benefit-card h3 {
  font-size: 18px; font-weight: 600; line-height: 1.3; color: var(--gpc-ink);
}
.gpc-benefit-card p {
  font-size: 16px; font-weight: 400; color: var(--gpc-gray);
  line-height: 1.6; margin-top: 16px; text-align: left;
}

/* ============ SECTION 3 — UNDERSTANDING ============ */
.gpc-s3-intro { margin-bottom: 25px; padding-right: 30px; }
.gpc-s3-intro h2 {
  font-size: 32px; font-weight: 700; color: var(--gpc-ink);
  line-height: 1.2; margin-bottom: 18px;
}
.gpc-s3-intro p {
  font-size: 16px; font-weight: 400; color: var(--gpc-gray); line-height: 1.7; padding-bottom: 15px;
}
.gpc-s3-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start;
}
.gpc-s3-card {
  background: #fff; border: 1px solid #EEF0F5;
  border-radius: 16px; padding: 20px 24px;
}
.gpc-s3-card h3 {
  font-size: 18px; font-weight: 700; color: var(--gpc-ink); margin-bottom: 18px;
}
.gpc-s3-wide { grid-column: 1 / -1; margin-top: 0; }
.gpc-dyk {
  background: #F5FAFF; border: 1px solid var(--gpc-border);
}

.gpc-included-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 13px;
}
.gpc-included-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--gpc-ink);
}
.gpc-dyk-list {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 15px;
}
.gpc-dyk-list li {
  display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start;
  font-size: 14px; font-weight: 400; color: var(--gpc-gray); line-height: 1.6;
}
.gpc-radio-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--gpc-primary); background: #fff;
  display: inline-block; position: relative; margin-top: 3px;
}
.gpc-radio-dot::after {
  content: ''; position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gpc-primary); top: 3px; left: 3px;
}
.gpc-why-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px 20px;
  list-style: none; padding: 0; margin: 0;
}
.gpc-why-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--gpc-ink);
}

/* Comparison tables */
.gpc-cmp-h3 {
  font-size: 28px; font-weight: 700; color: var(--gpc-ink);
  text-align: left; margin-top: 40px; margin-bottom: 35px;
}
.gpc-tbl-wrap {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--gpc-border);
  box-shadow: 0 4px 20px rgba(255,167,9,0.05);
}
.gpc-tbl-scroll { overflow-x: auto; }
.gpc-tbl-scroll .gpc-cmp-table { min-width: 640px; }
.gpc-cmp-table { width: 100%; border-collapse: collapse; }
.gpc-cmp-table thead th {
  background: var(--gpc-primary);
  color: #fff; font-weight: 600; text-align: left;
  padding: 14px 16px; font-size: 14px;
}
.gpc-cmp-table tbody td {
  padding: 12px 16px;
  font-size: 14px; font-weight: 500; color: var(--gpc-ink);
  border-top: 1px solid #EEF0F5;
}
.gpc-cmp-table tbody tr:nth-child(odd) td { background: #FFFFFF; }
.gpc-cmp-table tbody tr:nth-child(even) td { background: #F9FAFC; }
.gpc-yn { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; }
.gpc-yes { color: var(--gpc-orange-dark); }
.gpc-no { color: var(--gpc-pink); }
.gpc-check-orange { border-color: var(--gpc-orange) !important; }
.gpc-check-orange:checked { background: var(--gpc-orange) !important; border-color: var(--gpc-orange) !important; }
.gpc-check-red { border-color: var(--gpc-pink) !important; background: #fff !important; }

/* ============ SECTION 4 — HOW IT WORKS ============ */
.gpc-steps-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  margin: 40px 0 48px; position: relative;
}
.gpc-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; padding: 0 8px;
}
.gpc-step::after {
  content: ''; position: absolute;
  top: 24px; left: calc(50% + 28px); right: calc(-50% + 28px);
  border-top: 2px dashed #C7CCD6; z-index: 0;
}
.gpc-step:last-child::after { display: none; }
.gpc-step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gpc-primary); color: #fff;
  font-weight: 700; font-size: 20px;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,122,255,0.2);
  position: relative; z-index: 1;
}
.gpc-step-title { font-size: 16px; font-weight: 600; color: var(--gpc-ink); margin-top: 12px; }
.gpc-step-desc { font-size: 14px; font-weight: 400; color: var(--gpc-gray); margin-top: 4px; line-height: 1.5; max-width: 160px; }

/* Formula grid */
.gpc-formula-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 16px;
}
.gpc-formula-card {
  background: #FFFFFF; border-radius: 14px;
  padding: 18px 20px; border: 1px solid var(--gpc-border);
  transition: 200ms ease;
  display: flex; align-items: center; gap: 14px;
}
.gpc-formula-card:hover { border-color: var(--gpc-border-hover); }
.gpc-formula-icn {
  flex-shrink: 0; width: 44px; height: 44px;
  border-radius: 12px; background: var(--gpc-primary);
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(0,122,255,0.18);
}
.gpc-formula-icn svg { width: 22px; height: 22px; }
.gpc-formula-body { flex: 1; min-width: 0; }
.gpc-formula-lbl {
  font-size: 11px; font-weight: 700;
  color: var(--gpc-primary);
  text-transform: uppercase; margin-bottom: 6px;
  display: block;
}
.gpc-formula-card code {
  font-family: var(--gpc-font-sans);
  font-size: 14px; font-weight: 500; color: var(--gpc-ink);
  line-height: 1.4; display: block;
  background: var(--gpc-soft); padding: 8px 12px;
  border-radius: 8px; border: 1px solid var(--gpc-border);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gpc-formula-highlight {
  background: var(--gpc-primary); border-color: transparent;
  grid-column: 1 / -1;
}
.gpc-formula-highlight .gpc-formula-icn {
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); box-shadow: none;
}
.gpc-formula-highlight .gpc-formula-lbl {
  color: rgba(255,255,255,0.9); background: none;
}
.gpc-formula-highlight code {
  background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: #fff;
}

/* Worked example */
.gpc-example-card {
  margin-top: 32px; background: #fff; border-radius: 14px;
  overflow: hidden; border: 1px solid var(--gpc-border);
}
.gpc-example-head {
  line-height: 40px; padding: 12px 18px;
  background: var(--gpc-primary); color: #fff;
  font-size: 16px; font-weight: 600;
}
.gpc-example-body { padding: 16px 20px; }
.gpc-given-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 15px; }
.gpc-given-pill {
  background: #FFF6E0; border-radius: 6px; padding: 6px 12px;
  font-size: 13px; font-weight: 500; color: var(--gpc-orange-dark);
}
.gpc-calc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
.gpc-calc-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px;
  padding: 10px 12px; background: var(--gpc-surface); border-radius: 8px;
  border: 1px solid #F2F4F8;
}
.gpc-cr-l {
  font-size: 13px; font-weight: 500; color: var(--gpc-gray);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gpc-cr-r {
  font-size: 13px; font-weight: 700; color: var(--gpc-orange-dark);
  background: #fff; padding: 4px 10px; border-radius: 6px;
  border: 1px solid var(--gpc-border); white-space: nowrap;
}
.gpc-calc-total {
  grid-column: 1 / -1; background: #FFEFC8; border-color: #FFD98F;
}
.gpc-calc-total .gpc-cr-l { font-weight: 700; color: var(--gpc-ink); font-size: 14px; }
.gpc-calc-total .gpc-cr-r {
  background: var(--gpc-primary); color: #fff; border-color: transparent; font-size: 14px;
}
.gpc-calc-summary {
  margin-top: 15px; padding: 12px 14px;
  background: var(--gpc-soft-blue); border-left: 4px solid var(--gpc-primary);
  border-radius: 8px; font-size: 15px; font-weight: 700; color: var(--gpc-ink); line-height: 1.4;
}
.gpc-calc-footer {
  margin-top: 8px; font-size: 14px; font-weight: 500;
  color: var(--gpc-gray); text-align: right;
}

/* ============ FAQ ============ */
.gpc-faq-section {
  background: var(--gpc-bg);
}
.gpc-faq-title {
  font-family: var(--gpc-font-sans);
  font-size: 36px;
  font-weight: 700;
  color: var(--gpc-ink);
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.gpc-faq-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--gpc-gray);
  text-align: center;
  margin: 0 auto 0;
  line-height: 1.6;
}
.gpc-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 40px;
}
.gpc-faq-col { display: grid; gap: 12px; align-content: start; }
.gpc-faq-item {
  background: #fff; border: 1px solid var(--gpc-border);
  border-radius: 12px; overflow: hidden; transition: 200ms ease;
}
.gpc-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px; cursor: pointer; transition: 200ms ease;
}
.gpc-q-text {
  font-size: 18px; font-weight: 600; color: var(--gpc-ink); text-align: left;
}
.gpc-q-chev {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 8px; background: var(--gpc-soft-blue);
  color: var(--gpc-primary); display: grid; place-items: center;
  transition: transform 250ms ease;
}
.gpc-faq-item.gpc-open .gpc-faq-q {
  background: var(--gpc-soft-blue); margin-bottom: 15px;
}
.gpc-faq-item.gpc-open .gpc-q-chev {
  transform: rotate(180deg); background: #fff;
}
.gpc-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 350ms ease;
}
.gpc-faq-a-inner p {
  padding: 0 16px 16px 16px;
  font-size: 16px; font-weight: 400; color: var(--gpc-gray); line-height: 1.7;
}

/* ============ RELATED CALCULATORS ============ */
.gpc-related-section { background: var(--gpc-bg); }
.gpc-related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 40px;
}
.gpc-related-card {
  background: #fff; border: 1px solid #EEF0F5;
  border-radius: 16px; padding: 20px;
  display: flex; flex-direction: column; transition: 200ms ease;
}
.gpc-related-card:hover { border-color: var(--gpc-border-hover); }
.gpc-related-head-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.gpc-related-card h3 {
  font-size: 18px; font-weight: 700; color: var(--gpc-ink); margin: 0;
}
.gpc-related-card p {
  font-size: 14px; font-weight: 400; color: var(--gpc-gray);
  line-height: 1.6; text-align: left; flex: 1; margin-top: 0;
}
.gpc-related-btn {
  margin-top: 16px; width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--gpc-primary) !important;
  border-radius: 10px !important; background: #fff !important;
  color: var(--gpc-primary) !important; font-weight: 600 !important;
  font-size: 14px !important;
  display: inline-flex !important; align-items: center !important;
  justify-content: center !important; gap: 6px !important;
  transition: 200ms ease !important; text-decoration: none !important;
  cursor: pointer !important; font-family: inherit !important;
}
.gpc-related-btn:hover {
  background: var(--gpc-primary) !important;
  color: #fff !important; border-color: var(--gpc-primary) !important;
}

/* ============ CTA SECTION ============ */
.gpc-cta-section {
  background: var(--gpc-bg);
}
.gpc-cta-card {
  background: #1A2138;
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  color: #fff;
}
.gpc-cta-label {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 28px;
}
.gpc-cta-title {
font-family: 'Instrument Sans';
    color: #fff !important;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 24px;
}
.gpc-cta-desc {
  color: #fff;
  font-size: 16px;
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 36px;
}
.gpc-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.gpc-btn-cta-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 28px !important;
  border-radius: 10px !important;
  min-height: 48px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  transition: all 0.2s cubic-bezier(0.5, 0, 0.5, 1) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  background: #fff !important;
  color: var(--gpc-primary) !important;
  border: 1.5px solid #fff !important;
}
.gpc-btn-cta-primary:hover {
  background: var(--gpc-soft-blue) !important;
}
.gpc-btn-cta-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 28px !important;
  border-radius: 10px !important;
  min-height: 48px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  transition: all 0.2s cubic-bezier(0.5, 0, 0.5, 1) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid #fff !important;
}
.gpc-btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}
.gpc-cta-checks {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 24px;
}
.gpc-cta-checks span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.gpc-cta-checks span b {
  color: var(--gpc-green);
  font-weight: 700;
}

/* ============ TOAST ============ */
.gpc-toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--gpc-ink); color: #fff;
  padding: 12px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  box-shadow: 0 12px 32px rgba(30,37,56,0.3);
  opacity: 0; transition: 300ms ease;
  z-index: 100; pointer-events: none;
}
.gpc-toast.gpc-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ GROSS PAY REFERENCE TABLE ============ */
.gpc-ref-table-section {
  background: var(--gpc-bg);
}
.gpc-reftbl-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--gpc-ink);
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.gpc-faq-section {
    background: #ffffff;
}
.gpc-reftbl-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--gpc-gray);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.gpc-reftbl-wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  overflow-x: auto;
  border: 1px solid var(--gpc-border);
  margin-top: 0;
}
.gpc-reftbl {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  table-layout: auto;
  min-width: 900px;
}
.gpc-reftbl thead th {
  background: var(--gpc-primary);
  color: #fff;
  font-family: var(--gpc-font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  text-align: left;
  padding: 13px 16px;
  white-space: nowrap;
  vertical-align: middle;
}
.gpc-reftbl thead th:first-child {
  border-top-left-radius: 16px;
}
.gpc-reftbl thead th:last-child {
  border-top-right-radius: 16px;
}
.gpc-reftbl tbody td {
  font-family: var(--gpc-font-sans);
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gpc-ink);
  border-bottom: 1px solid var(--gpc-border);
  white-space: nowrap;
  vertical-align: middle;
}
.gpc-reftbl tbody tr:last-child td {
  border-bottom: none;
}
.gpc-reftbl tbody tr:nth-child(odd) td {
  background: #FFFFFF;
}
.gpc-reftbl tbody tr:nth-child(even) td {
  background: #F5FAFF;
}
/* Column 1 — Role: primary blue underline */
.gpc-reftbl tbody td:first-child {
  color: var(--gpc-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(0,122,255,0.25);
  text-underline-offset: 2px;
}
/* Column 2 — Location: gray */
.gpc-reftbl tbody td:nth-child(2) {
  color: var(--gpc-gray);
  font-weight: 500;
}
/* Column 3 — Monthly Gross: ink bold */
.gpc-reftbl tbody td:nth-child(3) {
  color: var(--gpc-ink);
  font-weight: 700;
}
/* Column 4 — Basis: gray */
.gpc-reftbl tbody td:nth-child(4) {
  color: var(--gpc-gray);
  font-weight: 500;
}
/* Column 5 — Worked: gray */
.gpc-reftbl tbody td:nth-child(5) {
  color: var(--gpc-gray);
  font-weight: 500;
}
/* Column 6 — LOP: gray */
.gpc-reftbl tbody td:nth-child(6) {
  color: var(--gpc-gray);
  font-weight: 500;
}
/* Column 7 — Method + prorated: ink, prorated amount bold */
.gpc-reftbl tbody td:nth-child(7) {
  color: var(--gpc-ink);
  font-weight: 500;
}

/* ============ CONTENT SECTION ============ */
.gpc-content-section { padding: 40px 0; }
.gpc-content-block { margin-bottom: 24px; }
.gpc-content-block h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.gpc-content-body { font-size: 15px; color: var(--gpc-gray); line-height: 1.7; }
.gpc-content-body p { margin-bottom: 12px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .gpc-calc-grid { grid-template-columns: 1fr; }
  .gpc-stat-num { font-size: 40px; }
  .gpc-benefit-grid { gap: 15px; margin-top: 30px; }
}
@media (max-width: 1024px) {
  .gpc-related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .gpc-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .gpc-s3-grid { grid-template-columns: 1fr; }
  .gpc-why-list { grid-template-columns: repeat(2, 1fr); }
  .gpc-formula-grid { grid-template-columns: 1fr; gap: 15px; }
  .gpc-steps-row { grid-template-columns: 1fr; gap: 24px; }
  .gpc-step::after { display: none; }
  .gpc-step { flex-direction: row; align-items: center; text-align: left; gap: 16px; }
  .gpc-step-desc { max-width: none; }
  .gpc-related-grid { grid-template-columns: repeat(2, 1fr); }
  .gpc-faq-grid { grid-template-columns: 1fr; }
  .gpc-calc-grid-2 { grid-template-columns: 1fr; }
  .gpc-stats-row { grid-template-columns: repeat(2, 1fr); }
  .gpc-donut-section { grid-template-columns: 1fr; justify-items: center; }
  .gpc-stats-col { width: 100%; }
  .gpc-s3-intro { margin-bottom: 15px; padding-right: 0; }
  .gpc-cmp-h3 { margin-top: 30px; margin-bottom: 30px; font-size: 26px; }
  .gpc-step-title { margin-top: 0; }
  .gpc-formula-card { padding: 13px 15px; }
  /* Formula step-by-step responsive */
  .gpc-fs-steps { flex-direction: column; gap: 16px; }
  .gpc-fs-step-arrow { transform: rotate(90deg); padding: 4px 0; justify-content: center; display: none; }
  .gpc-fs-formula-card { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .gpc-meth-grid { grid-template-columns: repeat(2, 1fr); }
  .gpc-meth-header { grid-template-columns: 1fr; gap: 12px; }
  .gpc-meth-card { padding: 20px; }
}
@media (max-width: 768px) {
  .gpc-q-text {
    font-size: 16px;
}
.gpc-cta-desc {
    margin: 0 auto 26px;
}
.punching-process__steps, .punching-benefits__grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
  .gpc-hero { padding: 48px 0 56px !important; }
  .gpc-hero-title { font-size: 36px !important; }
  .gpc-benefit-grid { grid-template-columns: 1fr; }
  .gpc-related-grid { grid-template-columns: 1fr; }
  .gpc-cta-card { padding: 48px 24px; border-radius: 20px; }
  .gpc-cta-title { white-space: normal; }
  .gpc-cta-buttons { flex-direction: column; align-items: center; }
  .gpc-btn-cta-primary, .gpc-btn-cta-secondary { width: 100% !important; max-width: 280px !important; }
  .gpc-cta-checks { gap: 16px; }
  .gpc-why-list { grid-template-columns: 1fr; }
  .gpc-stats-row { grid-template-columns: repeat(1, 1fr); }
  .gpc-field-row-2 { grid-template-columns: 1fr; }
  .gpc-bd-total .gpc-bd-val { font-size: 18px; }
  .gpc-formula-section { padding: 56px 0; }
  .gpc-fs-title { font-size: 26px; }
  .gpc-reftbl-title { font-size: 26px; }
  .gpc-faq-title { font-size: 28px; }
  .gpc-fs-formula-title { font-size: 20px; }
  .gpc-meth-grid { grid-template-columns: 1fr; }
  .gpc-meth-ref { border-right: none !important; }
  .gpc-meth-ref:nth-child(n+1) { border-bottom: 1px solid var(--gpc-border); }
  .gpc-meth-ref:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .gpc-radio-group { flex-direction: column !important; }
  .gpc-radio-group label { flex: none !important; }
}
