/* Checklist form styles — namespaced under .checklist-wrapper */
/* Variable names kept as-is from the standalone app; they are scoped to .checklist-wrapper
   and do not collide with the CRM variables (--color-accent, --color-bg-*, etc.). */

.checklist-wrapper {
  --brand-red: #ef3340;
  --brand-navy: #0f2c4d;
  --brand-blue: #1d4c7a;
  --ink: #1b1f24;
  --muted: #5a6773;
  --paper: #fff;
  --panel: #f6f8fa;
  --line: #e5e9ef;
  --radius: 12px;
  --chip-bg: #ffe9ec;
  --chip-border: #ffccd1;
  font: 15px/1.5 system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
}

.checklist-wrapper * {
  box-sizing: border-box;
}

.checklist-wrapper .wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 84px;
}

.checklist-wrapper .progress-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
}

.checklist-wrapper .progress-track {
  height: 6px;
  background: #f0f3f7;
}

.checklist-wrapper .progress-bar {
  height: 6px;
  background: var(--brand-red);
  width: 0%;
  transition: width 0.25s ease;
}

@media print {
  .checklist-wrapper .progress-wrap {
    display: none !important;
  }
}

.checklist-wrapper .heading-block {
  padding: 18px 0 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.checklist-wrapper .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  font-weight: 800;
}

.checklist-wrapper h1.title {
  margin: 0.35rem 0 0;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.checklist-wrapper .title .hot {
  color: var(--brand-red);
}

.checklist-wrapper .title .cool {
  color: var(--brand-navy);
}

.checklist-wrapper .shortcut-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  flex-shrink: 0;
}

.checklist-wrapper .keycap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 0 #d6dce3;
  font-weight: 700;
  color: var(--brand-navy);
}

.checklist-wrapper .shortcut-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checklist-wrapper .section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  margin: 18px 0;
  box-shadow: 0 1px 0 #f0f3f7 inset;
  position: relative;
}

.checklist-wrapper .section.disabled {
  opacity: 0.5;
  filter: grayscale(1);
}

.checklist-wrapper .section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
}

.checklist-wrapper .section h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--brand-navy);
  text-transform: uppercase;
  padding-left: 12px;
  position: relative;
}

.checklist-wrapper .section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: linear-gradient(180deg, var(--brand-red), #ff6a73);
  border-radius: 3px;
}

.checklist-wrapper .grid {
  display: grid;
  gap: 12px;
}

.checklist-wrapper .g-2 {
  grid-template-columns: repeat(2, 1fr);
}

.checklist-wrapper .g-3 {
  grid-template-columns: repeat(3, 1fr);
}

.checklist-wrapper .g-4 {
  grid-template-columns: repeat(4, 1fr);
}

.checklist-wrapper .full {
  grid-column: 1 / -1;
}

.checklist-wrapper .line {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.checklist-wrapper .line label {
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.checklist-wrapper .u {
  flex: 1;
  min-width: 45px;
  appearance: none;
  border: none;
  border-bottom: 2px solid #cfd6df;
  background: transparent;
  padding: 6px 2px 4px;
  color: var(--ink);
  font-weight: 600;
  margin-left: 6px;
}

.checklist-wrapper .u:focus {
  outline: none;
  border-bottom-color: var(--brand-red);
  box-shadow: 0 2px 0 0 var(--brand-red);
}

.checklist-wrapper .stack .line {
  margin: 2px 0;
}

.checklist-wrapper .top-hd {
  display: block;
  font-weight: 900;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.checklist-wrapper .box {
  width: 100%;
  min-height: 140px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  resize: vertical;
}

.checklist-wrapper .box:focus {
  outline: 2px solid var(--brand-red);
  outline-offset: 0;
}

.checklist-wrapper input[type="checkbox"],
.checklist-wrapper input[type="radio"] {
  accent-color: var(--brand-red);
}

.checklist-wrapper input[type="date"] {
  cursor: pointer;
  width: 100%;
}

.checklist-wrapper input[type="number"]::-webkit-outer-spin-button,
.checklist-wrapper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.checklist-wrapper input[type="number"] {
  -moz-appearance: textfield;
}

.checklist-wrapper .tickline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.checklist-wrapper .tick {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--ink);
}

.checklist-wrapper .muted {
  color: var(--muted);
  font-weight: 700;
}

.checklist-wrapper .push {
  margin-left: auto;
}

.checklist-wrapper .chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.checklist-wrapper .chip {
  position: relative;
  display: inline-block;
}

.checklist-wrapper .chip input[type="checkbox"],
.checklist-wrapper .chip input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checklist-wrapper .chip label {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  color: var(--brand-navy);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: 0.15s background, 0.15s border-color, 0.15s color;
}

.checklist-wrapper .chip input:checked + label {
  border-color: var(--brand-red);
  background: var(--chip-bg);
  box-shadow: 0 0 0 2px var(--chip-border) inset;
}

.checklist-wrapper .form-step {
  display: none;
}

.checklist-wrapper .form-step.active {
  display: block;
}

.checklist-wrapper #chips_a4a_countries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  align-items: stretch;
}

.checklist-wrapper .country-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checklist-wrapper #chips_a4a_countries .chip {
  flex: 1;
}

.checklist-wrapper #chips_a4a_countries .chip input {
  accent-color: var(--brand-red);
}

.checklist-wrapper #chips_a4a_countries .chip label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--brand-navy);
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.checklist-wrapper #chips_a4a_countries .chip.custom-chip {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--brand-red);
  border-radius: 10px;
  background: var(--chip-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 0 0 1px var(--chip-border);
  gap: 8px;
  min-height: 38px;
  height: 38px;
}

.checklist-wrapper #chips_a4a_countries .chip.custom-chip input[type="checkbox"] {
  display: none;
}

.checklist-wrapper #chips_a4a_countries .chip.custom-chip .chip-input {
  flex: 1;
  border: none;
  outline: none;
  font-weight: 800;
  color: var(--brand-navy);
  background: transparent;
  padding: 4px 2px;
  min-width: 0;
  width: 100%;
  height: 100%;
  line-height: 1.4;
}

.checklist-wrapper #chips_a4a_countries .chip.custom-chip.selected {
  border-color: var(--brand-red);
  background: var(--chip-bg);
  box-shadow: 0 0 0 2px var(--chip-border) inset;
}

.checklist-wrapper #chips_a4a_countries .chip.custom-chip .chip-remove {
  border: none;
  background: var(--brand-red);
  color: #fff;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: absolute;
  top: -12px;
  right: -12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.1s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  opacity: 0;
  pointer-events: none;
}

.checklist-wrapper #chips_a4a_countries .chip.custom-chip:hover .chip-remove {
  opacity: 1;
  pointer-events: auto;
}

.checklist-wrapper #chips_a4a_countries .chip.custom-chip .chip-remove:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.checklist-wrapper .video-card {
  position: relative;
  padding: 0;
  overflow: visible;
}

.checklist-wrapper .video-card .video-layout {
  display: flex;
  gap: 0;
  margin: 0;
  align-items: stretch;
}

.checklist-wrapper .video-card .video-main {
  flex: 1;
  padding: 18px;
  padding-right: 18px;
  margin-right: 240px;
}

.checklist-wrapper .video-card .video-tabs-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 240px;
  background: #f3f5f8;
  border-left: 1px solid #d6dde8;
  border-radius: 0 14px 14px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: none;
  z-index: 1;
}

.checklist-wrapper .video-card .video-tabs-panel .video-tabs-header {
  padding: 0;
}

.checklist-wrapper .video-card .video-tabs-panel .video-add-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #d6dde8;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.checklist-wrapper .video-card .video-tabs-panel .video-add-btn .plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.checklist-wrapper .video-card .video-tabs-panel .a4a-country-tabs {
  padding: 0;
  flex: 1;
  overflow-y: auto;
  border-radius: 0 0 14px 0;
}

.checklist-wrapper .video-card .video-tabs-panel .a4a-country-tabs .country-tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-right: 40px;
}

.checklist-wrapper .video-card .video-tabs-panel .video-tab-remove {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: var(--brand-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.checklist-wrapper .video-card .video-tabs-panel .country-tab:hover .video-tab-remove {
  opacity: 1;
  pointer-events: auto;
}

.checklist-wrapper .video-card .card-actions {
  top: 14px;
  right: 16rem;
  left: auto;
}

.checklist-wrapper .video-card .section-header {
  padding: 18px;
  padding-right: 260px;
  margin: 0;
}

.checklist-wrapper .video-card .video-entry-controls {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checklist-wrapper .video-card .video-entry-controls button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #cfd6df;
  background: #fff;
  color: var(--brand-navy);
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checklist-wrapper .video-card .video-entry-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checklist-wrapper .video-card .video-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checklist-wrapper .video-card .video-tab {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #cfd6df;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: border 0.2s ease, background 0.2s ease;
}

.checklist-wrapper .video-card .video-tab.active {
  border-color: var(--brand-red);
  background: var(--chip-bg);
  color: var(--brand-navy);
  box-shadow: 0 0 0 2px var(--chip-border) inset;
}

.checklist-wrapper .a4a-country-panel {
  min-width: 220px;
  flex: 0 0 36%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f2f2f2;
  border: 1px solid #d6dde8;
  border-radius: 0 14px 14px 0;
  padding: 18px 18px 18px 32px;
  height: 100%;
  margin-left: -36px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 10px 22px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.checklist-wrapper .a4a-country-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  height: 100%;
  max-height: none;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
  scrollbar-width: none;
}

.checklist-wrapper .a4a-country-tabs::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.checklist-wrapper .a4a-card .narrow-input {
  width: 45px;
  min-width: 45px;
  max-width: 45px;
  box-sizing: border-box;
}

.checklist-wrapper .print-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  overflow: visible;
  padding: 0;
}

.checklist-wrapper .print-card .a4a-main {
  flex: 1;
  padding: 18px;
}

.checklist-wrapper .mag-configs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist-wrapper .mag-config {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 12px;
}

.checklist-wrapper .print-card .magazine-layout {
  display: flex;
  gap: 0;
  margin: 0;
  align-items: stretch;
}

.checklist-wrapper .print-card .magazine-main {
  flex: 1;
  padding: 18px;
  padding-right: 18px;
  margin-right: 240px;
}

.checklist-wrapper .print-card .magazine-tabs-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 240px;
  background: #f3f5f8;
  border-left: 1px solid #d6dde8;
  border-radius: 0 14px 14px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: none;
  z-index: 1;
}

.checklist-wrapper .print-card .magazine-tabs-panel .video-tabs-header {
  padding: 0;
}

.checklist-wrapper .print-card .magazine-tabs-panel .video-add-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #d6dde8;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.checklist-wrapper .print-card .magazine-tabs-panel .video-add-btn .plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.checklist-wrapper .print-card .magazine-tabs-panel .a4a-country-tabs {
  padding: 0;
  flex: 1;
  overflow-y: auto;
  border-radius: 0 0 14px 0;
}

.checklist-wrapper .print-card .magazine-tabs-panel .a4a-country-tabs .country-tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-right: 40px;
}

.checklist-wrapper .print-card .magazine-tabs-panel .magazine-tab-remove {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: var(--brand-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.checklist-wrapper .print-card .magazine-tabs-panel .country-tab:hover .magazine-tab-remove {
  opacity: 1;
  pointer-events: auto;
}

.checklist-wrapper .print-card .card-actions {
  top: 14px;
  right: 16rem;
  left: auto;
}

.checklist-wrapper .print-card .section-header {
  width: 100%;
  padding-right: 260px;
}

.checklist-wrapper .country-tab {
  padding: 10px 12px;
  font-size: 0.9em;
  font-weight: 800;
  color: var(--brand-navy);
  text-align: left;
  background: transparent;
  border: none;
  border-top: 1px solid #ccd4df;
  position: relative;
  cursor: pointer;
  transition: padding-left 0.15s ease, color 0.15s ease;
}

.checklist-wrapper .country-tab:first-child {
  border-top: none;
}

.checklist-wrapper .country-tab:hover {
  padding-left: 16px;
  color: var(--brand-blue);
}

.checklist-wrapper .country-tab.active {
  padding-left: 16px;
  color: var(--brand-navy);
  box-shadow: inset 4px 0 0 var(--brand-red);
  background: rgba(0, 0, 0, 0.02);
}

.checklist-wrapper .card-actions {
  position: absolute;
  top: 10px;
  right: 14px;
  display: inline-flex;
  gap: 6px;
  z-index: 6;
}

.checklist-wrapper .card-actions button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 6px 8px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.checklist-wrapper .card-actions button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.checklist-wrapper .country-panel-title {
  font-weight: 800;
  margin-bottom: 6px;
  font-size: 0.85em;
  text-align: left;
  padding-left: 2px;
}

.checklist-wrapper .a4a-card {
  display: flex;
  align-items: stretch;
  gap: 0 !important;
  position: relative;
  overflow: visible;
  background: #f8f9fb;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 44, 77, 0.08);
  padding: 0;
}

.checklist-wrapper .a4a-main {
  flex: 1;
  background: #f8f9fb;
  border-radius: 14px 0 0 14px;
  padding: 16px;
  padding-right: 16px;
  position: relative;
  z-index: 2;
}

.checklist-wrapper .a4a-card .a4a-main {
  margin-right: 210px;
}

.checklist-wrapper .social-card .a4a-main {
  margin-right: 0;
}

.checklist-wrapper .a4a-card .tickline .muted {
  min-width: 70px;
  text-align: right;
}

.checklist-wrapper .a4a-card .tickline input[type="number"] {
  width: 45px;
  max-width: 45px;
}

.checklist-wrapper .social-card .tickline .muted {
  min-width: 70px;
  text-align: right;
}

.checklist-wrapper .social-card .tickline input[type="number"] {
  width: 45px;
  max-width: 45px;
}

.checklist-wrapper .social-card .narrow-input {
  width: 45px;
  min-width: 45px;
  max-width: 45px;
  box-sizing: border-box;
}

.checklist-wrapper .actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
  background: linear-gradient(180deg,
    transparent,
    rgba(255, 255, 255, 0.9) 40%,
    #fff);
  padding: 14px 0;
  z-index: 50;
}

.checklist-wrapper .step-error-banner {
  display: none;
  margin: 10px 0 16px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--brand-red);
  font-size: 0.95rem;
  line-height: 1.4;
}

.checklist-wrapper .step-error-banner ul {
  margin: 6px 0 0 18px;
  padding: 0;
}

.checklist-wrapper .step-error-banner li {
  margin: 4px 0;
}

.checklist-wrapper .error-message {
  color: var(--brand-red);
  font-size: 0.85rem;
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  border-radius: 8px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: 0;
  transform: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  z-index: 60;
  pointer-events: none;
}

.checklist-wrapper #error-popups {
  position: absolute;
  left: 8px;
  top: 0;
  width: 280px;
  pointer-events: none;
  z-index: 60;
}

.checklist-wrapper .u.error {
  border-bottom-color: var(--brand-red);
  box-shadow: 0 2px 0 0 var(--brand-red);
}

.checklist-wrapper .box.error {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 2px var(--brand-red) inset;
}

.checklist-wrapper input[type="checkbox"].error,
.checklist-wrapper input[type="radio"].error {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

.checklist-wrapper .btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-navy);
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.checklist-wrapper .primary {
  background: linear-gradient(180deg, var(--brand-red), #da1c2a);
  border: none;
  color: #fff;
}

.checklist-wrapper .review-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin: 12px 0;
}

.checklist-wrapper .review-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
  font-weight: 900;
  color: var(--brand-navy);
  text-transform: uppercase;
}

.checklist-wrapper .review-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: linear-gradient(180deg, var(--brand-red), #ff6a73);
  border-radius: 3px;
}

.checklist-wrapper .review-title span {
  padding-left: 12px;
}

.checklist-wrapper .kv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.checklist-wrapper .kv div b {
  color: var(--brand-navy);
}

.checklist-wrapper .review-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checklist-wrapper .review-line {
  font-weight: 600;
  color: var(--ink);
}

.checklist-wrapper .review-gap {
  height: 10px;
}

.checklist-wrapper .pill {
  display: inline-block;
  border: 2px solid var(--brand-red);
  background: var(--chip-bg);
  box-shadow: 0 0 0 2px var(--chip-border) inset;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 800;
  margin: 2px;
}

@media print {
  .checklist-wrapper .actions {
    display: none !important;
  }

  .checklist-wrapper .section {
    break-inside: avoid;
  }

  .checklist-wrapper .u {
    border-bottom: 2px solid #000 !important;
    color: #000 !important;
  }

  .checklist-wrapper textarea.box {
    border-color: #000 !important;
  }

  .checklist-wrapper input[type="checkbox"],
  .checklist-wrapper input[type="radio"] {
    accent-color: #000;
  }
}

.checklist-wrapper .google-ads-options {
  margin-top: 10px;
  padding: 12px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 10px;
}

.checklist-wrapper .google-ads-options .top-hd {
  font-weight: 900;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.checklist-wrapper .google-ads-options textarea.box {
  font-family: inherit;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .checklist-wrapper .g-2,
  .checklist-wrapper .g-3,
  .checklist-wrapper .g-4 {
    grid-template-columns: 1fr;
  }

  .checklist-wrapper .kv {
    grid-template-columns: 1fr;
  }
}

/* Success page styles */
.checklist-wrapper .success-shell {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.checklist-wrapper .success-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.checklist-wrapper .success-card h2 {
  margin: 0 0 12px;
  color: var(--brand-navy);
  font-size: 1.6rem;
}

.checklist-wrapper .success-card p {
  margin: 0 0 16px;
  color: var(--muted);
}
