.wic-pf {
  --wic-ink: #10243e;
  --wic-ink-soft: #294760;
  --wic-blue: #146fa8;
  --wic-blue-dark: #0d567f;
  --wic-cyan: #16a7a2;
  --wic-orange: #f47721;
  --wic-orange-dark: #d95d0b;
  --wic-green: #13795b;
  --wic-green-bg: #eaf8f2;
  --wic-surface: #ffffff;
  --wic-soft: #f3f7fb;
  --wic-soft-blue: #eaf4fb;
  --wic-line: #d7e3ec;
  --wic-muted: #647b8d;
  --wic-shadow: 0 20px 55px rgba(16, 36, 62, 0.11);
  color: var(--wic-ink-soft);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.wic-pf *, .wic-pf *::before, .wic-pf *::after { box-sizing: border-box; }
.wic-pf button, .wic-pf input { font: inherit; }
.wic-pf [hidden] { display: none !important; }
.wic-pf-shell { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.wic-pf h1, .wic-pf h2, .wic-pf h3, .wic-pf p { margin-top: 0; }
.wic-pf h1, .wic-pf h2, .wic-pf h3 { color: var(--wic-ink); line-height: 1.13; letter-spacing: -0.025em; }
.wic-pf h1 { font-size: clamp(38px, 5vw, 64px); margin-bottom: 22px; }
.wic-pf h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 14px; }
.wic-pf h3 { font-size: 24px; }
.wic-pf a { color: inherit; }

.wic-pf-kicker,
.wic-pf-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--wic-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.wic-pf-kicker::before,
.wic-pf-section-label::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--wic-orange);
}

.wic-pf-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 96px;
  background:
    radial-gradient(circle at 88% 20%, rgba(22, 167, 162, .16), transparent 30%),
    radial-gradient(circle at 8% 95%, rgba(20, 111, 168, .13), transparent 31%),
    linear-gradient(145deg, #ffffff 0%, #f3f8fc 62%, #edf7f6 100%);
  border-bottom: 1px solid var(--wic-line);
}

.wic-pf-hero::after {
  content: "";
  position: absolute;
  right: -115px;
  top: -145px;
  width: 370px;
  height: 370px;
  border: 58px solid rgba(20, 111, 168, .05);
  border-radius: 50%;
}

.wic-pf-hero .wic-pf-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .7fr);
  align-items: center;
  gap: 68px;
}

.wic-pf-hero-copy > p {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--wic-muted);
  font-size: clamp(17px, 2vw, 20px);
}

.wic-pf-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.wic-pf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.wic-pf-button:hover { transform: translateY(-2px); }
.wic-pf-button-primary { color: #fff !important; background: var(--wic-orange); box-shadow: 0 12px 28px rgba(244, 119, 33, .23); }
.wic-pf-button-primary:hover { background: var(--wic-orange-dark); box-shadow: 0 15px 32px rgba(244, 119, 33, .29); }
.wic-pf-button-secondary { color: var(--wic-ink) !important; background: #fff; border-color: var(--wic-line); }
.wic-pf-button-secondary:hover { border-color: var(--wic-blue); box-shadow: 0 11px 26px rgba(16, 36, 62, .09); }

.wic-pf-hero-card {
  padding: 30px;
  border: 1px solid rgba(20, 111, 168, .16);
  border-radius: 24px;
  background: rgba(255, 255, 255, .89);
  box-shadow: var(--wic-shadow);
  backdrop-filter: blur(12px);
}

.wic-pf-hero-card > span { color: var(--wic-blue); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.wic-pf-hero-card > strong { display: block; margin: 8px 0 0; color: var(--wic-ink); font-size: clamp(48px, 7vw, 76px); line-height: 1; letter-spacing: -.055em; }
.wic-pf-hero-card > p { margin: 7px 0 22px; color: var(--wic-muted); }
.wic-pf-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wic-pf-mini-stats div { padding: 13px; border-radius: 12px; background: var(--wic-soft); text-align: center; }
.wic-pf-mini-stats b { display: block; color: var(--wic-ink); font-size: 20px; }
.wic-pf-mini-stats span { color: var(--wic-muted); font-size: 13px; }

.wic-pf-steps { position: relative; z-index: 3; margin-top: -42px; }
.wic-pf-steps .wic-pf-shell { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--wic-line); border-radius: 20px; background: #fff; box-shadow: var(--wic-shadow); }
.wic-pf-step { display: flex; gap: 15px; padding: 23px; border-right: 1px solid var(--wic-line); }
.wic-pf-step:last-child { border-right: 0; }
.wic-pf-step > span { display: grid; flex: 0 0 38px; width: 38px; height: 38px; place-items: center; border-radius: 11px; background: var(--wic-soft-blue); color: var(--wic-blue); font-weight: 900; }
.wic-pf-step strong { display: block; margin-bottom: 4px; color: var(--wic-ink); }
.wic-pf-step p { margin: 0; color: var(--wic-muted); font-size: 14px; line-height: 1.5; }

.wic-pf-finder-section { padding: 78px 0 84px; background: #fff; }
.wic-pf-compact .wic-pf-finder-section { padding: 20px 0; }
.wic-pf-search-card { margin-bottom: 34px; padding: 28px; border: 1px solid var(--wic-line); border-radius: 22px; background: var(--wic-surface); box-shadow: 0 16px 45px rgba(16, 36, 62, .08); }
.wic-pf-search-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; margin-bottom: 22px; }
.wic-pf-search-heading h2 { margin-bottom: 8px; }
.wic-pf-search-heading p { margin-bottom: 0; color: var(--wic-muted); }
.wic-pf-total-pill { flex: 0 0 auto; min-width: 126px; padding: 14px 17px; border-radius: 14px; background: var(--wic-soft-blue); text-align: center; }
.wic-pf-total-pill strong { display: block; color: var(--wic-blue); font-size: 25px; line-height: 1.05; }
.wic-pf-total-pill span { color: var(--wic-muted); font-size: 12px; }

.wic-pf-search-wrap { position: relative; }
.wic-pf-search-wrap svg { position: absolute; left: 19px; top: 50%; width: 24px; height: 24px; color: var(--wic-blue); transform: translateY(-50%); pointer-events: none; }
.wic-pf-search {
  width: 100%;
  min-height: 64px;
  padding: 14px 92px 14px 57px !important;
  border: 2px solid #cbdbe7 !important;
  border-radius: 14px !important;
  background: #f9fbfd !important;
  color: var(--wic-ink) !important;
  font-size: 18px !important;
  font-weight: 650;
  outline: none;
  box-shadow: none !important;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.wic-pf-search:focus { border-color: var(--wic-cyan) !important; background: #fff !important; box-shadow: 0 0 0 5px rgba(22, 167, 162, .12) !important; }
.wic-pf-search::placeholder { color: #8295a3; font-weight: 500; }
.wic-pf-clear { position: absolute; right: 14px; top: 50%; padding: 8px 11px; border: 0; border-radius: 8px; background: var(--wic-soft); color: var(--wic-blue); font-size: 13px; font-weight: 800; cursor: pointer; transform: translateY(-50%); }
.wic-pf-clear:hover { background: var(--wic-soft-blue); }

.wic-pf-filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 17px; }
.wic-pf-filter { padding: 9px 14px; border: 1px solid var(--wic-line); border-radius: 999px; background: #fff; color: var(--wic-ink-soft); font-size: 14px; font-weight: 800; cursor: pointer; }
.wic-pf-filter span { margin-left: 5px; color: var(--wic-muted); font-size: 12px; }
.wic-pf-filter:hover, .wic-pf-filter.is-active { border-color: var(--wic-blue); background: var(--wic-blue); color: #fff; }
.wic-pf-filter.is-active span, .wic-pf-filter:hover span { color: rgba(255,255,255,.75); }
.wic-pf-live-status { margin: 15px 0 0; color: var(--wic-muted); font-size: 13px; }
.wic-pf-live-status strong { color: var(--wic-blue); }

.wic-pf-brand-section { margin-top: 38px; }
.wic-pf-brand-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; padding: 18px 21px; border: 1px solid var(--wic-line); border-radius: 17px; background: linear-gradient(90deg, #f7fafc, #fff); }
.wic-pf-brand-heading h2 { margin: 0; font-size: 25px; letter-spacing: -.01em; }
.wic-pf-brand-dot { width: 13px; height: 13px; border-radius: 50%; box-shadow: 0 0 0 5px rgba(20,111,168,.1); }
.wic-pf-brand-dot-epson { background: var(--wic-blue); }
.wic-pf-brand-dot-canon { background: var(--wic-orange); box-shadow: 0 0 0 5px rgba(244,119,33,.11); }
.wic-pf-brand-visible { margin-left: auto; color: var(--wic-muted); font-size: 13px; font-weight: 750; }
.wic-pf-series-list { display: grid; gap: 11px; }
.wic-pf-series { display: grid; grid-template-columns: 210px 1fr; overflow: hidden; border: 1px solid var(--wic-line); border-radius: 15px; background: #fff; transition: border-color .18s ease, box-shadow .18s ease; }
.wic-pf-series:hover { border-color: #b8d0df; box-shadow: 0 10px 30px rgba(16,36,62,.06); }
.wic-pf-series-name { padding: 16px 18px; border-right: 1px solid var(--wic-line); background: var(--wic-soft); }
.wic-pf-series-name strong { display: block; color: var(--wic-ink); font-size: 15px; }
.wic-pf-series-name span { color: var(--wic-muted); font-size: 12px; }
.wic-pf-models { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; padding: 13px 15px; }
.wic-pf-model { padding: 7px 11px; border: 1px solid #d6e1e8; border-radius: 999px; background: #fff; color: var(--wic-ink-soft); font-size: 13px; font-weight: 750; line-height: 1.2; cursor: pointer; transition: border-color .15s ease, background-color .15s ease, color .15s ease, transform .15s ease; }
.wic-pf-model:hover { border-color: var(--wic-blue); background: var(--wic-soft-blue); color: var(--wic-blue-dark); transform: translateY(-1px); }
.wic-pf-model.is-exact { border-color: var(--wic-green); background: var(--wic-green-bg); color: var(--wic-green); box-shadow: 0 0 0 3px rgba(19,121,91,.09); }

.wic-pf-no-results { padding: 52px 24px; border: 1px dashed #c9d8e2; border-radius: 18px; background: var(--wic-soft); text-align: center; }
.wic-pf-no-results > span { display: grid; width: 50px; height: 50px; margin: 0 auto 14px; place-items: center; border-radius: 50%; background: #fff; color: var(--wic-orange); font-size: 25px; font-weight: 900; box-shadow: 0 8px 23px rgba(16,36,62,.08); }
.wic-pf-no-results h3 { margin-bottom: 7px; }
.wic-pf-no-results p { color: var(--wic-muted); }
.wic-pf-reset-search { padding: 10px 15px; border: 0; border-radius: 10px; background: var(--wic-blue); color: #fff; font-weight: 800; cursor: pointer; }

.wic-pf-info-section { padding: 84px 0; background: var(--wic-soft); border-top: 1px solid var(--wic-line); border-bottom: 1px solid var(--wic-line); }
.wic-pf-info-section .wic-pf-shell { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 72px; }
.wic-pf-info-copy > p { color: var(--wic-muted); font-size: 18px; }
.wic-pf-info-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 25px 0 0; padding: 0; list-style: none; }
.wic-pf-info-copy li { position: relative; padding: 13px 14px 13px 42px; border: 1px solid var(--wic-line); border-radius: 12px; background: #fff; color: var(--wic-ink); font-weight: 700; }
.wic-pf-info-copy li::before { content: "✓"; position: absolute; left: 14px; top: 12px; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: var(--wic-green-bg); color: var(--wic-green); font-size: 12px; font-weight: 900; }
.wic-pf-cta-card { padding: 31px; border-radius: 23px; background: var(--wic-ink); color: rgba(255,255,255,.78); box-shadow: 0 24px 55px rgba(16,36,62,.2); }
.wic-pf-cta-card > span { color: #7ddbd6; font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.wic-pf-cta-card h3 { margin: 9px 0 12px; color: #fff; font-size: 30px; }
.wic-pf-cta-card .wic-pf-button { width: 100%; margin: 8px 0 12px; }
.wic-pf-text-link { display: block; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.13); color: #fff !important; font-weight: 750; text-decoration: none !important; }
.wic-pf-text-link:last-child { border-bottom: 0; }
.wic-pf-text-link:hover { color: #7ddbd6 !important; }

.wic-pf-faq-section { padding: 84px 0 92px; background: #fff; }
.wic-pf-faq-section .wic-pf-shell { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.wic-pf-faq-heading { position: sticky; top: 30px; align-self: start; }
.wic-pf-faq-list { display: grid; gap: 11px; }
.wic-pf-faq-list details { border: 1px solid var(--wic-line); border-radius: 14px; background: #fff; }
.wic-pf-faq-list summary { position: relative; padding: 18px 50px 18px 19px; color: var(--wic-ink); font-weight: 800; cursor: pointer; list-style: none; }
.wic-pf-faq-list summary::-webkit-details-marker { display: none; }
.wic-pf-faq-list summary::after { content: "+"; position: absolute; right: 18px; top: 50%; color: var(--wic-blue); font-size: 23px; transform: translateY(-50%); }
.wic-pf-faq-list details[open] summary::after { content: "−"; }
.wic-pf-faq-list details p { margin: 0; padding: 0 19px 19px; color: var(--wic-muted); }

@media (max-width: 900px) {
  .wic-pf-hero .wic-pf-shell,
  .wic-pf-info-section .wic-pf-shell,
  .wic-pf-faq-section .wic-pf-shell { grid-template-columns: 1fr; gap: 38px; }
  .wic-pf-steps .wic-pf-shell { grid-template-columns: 1fr; }
  .wic-pf-step { border-right: 0; border-bottom: 1px solid var(--wic-line); }
  .wic-pf-step:last-child { border-bottom: 0; }
  .wic-pf-faq-heading { position: static; }
}

@media (max-width: 700px) {
  .wic-pf-shell { width: min(100% - 22px, 1160px); }
  .wic-pf-hero { padding: 58px 0 78px; }
  .wic-pf-hero h1 { font-size: 39px; }
  .wic-pf-hero-actions .wic-pf-button { width: 100%; }
  .wic-pf-steps { margin-top: -30px; }
  .wic-pf-finder-section { padding: 58px 0; }
  .wic-pf-search-card { padding: 18px; border-radius: 17px; }
  .wic-pf-search-heading { align-items: flex-start; flex-direction: column; }
  .wic-pf-total-pill { width: 100%; }
  .wic-pf-search { min-height: 58px; padding-left: 51px !important; font-size: 16px !important; }
  .wic-pf-series { grid-template-columns: 1fr; }
  .wic-pf-series-name { border-right: 0; border-bottom: 1px solid var(--wic-line); }
  .wic-pf-models { padding: 12px; }
  .wic-pf-model { font-size: 12px; }
  .wic-pf-info-copy ul { grid-template-columns: 1fr; }
  .wic-pf-info-section, .wic-pf-faq-section { padding: 60px 0; }
}


/* Version 2.2: highlighted search, direct purchase links and Canon manual */
.wic-pf .wic-pf-finder-section {
  scroll-margin-top: 110px;
}

.wic-pf .wic-pf-search-card {
  position: relative;
  overflow: hidden;
  border: 2px solid #f2a45a;
  background: linear-gradient(135deg, rgba(255,247,238,.98), rgba(255,255,255,.98));
  box-shadow: 0 18px 48px rgba(16,36,62,.10), 0 0 0 5px rgba(244,119,33,.06);
}

.wic-pf .wic-pf-search-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #f47721, #f3a04d, #146fa8);
}

.wic-pf .wic-pf-search {
  border: 3px solid #f2a45a !important;
  background: #fff !important;
  box-shadow: 0 0 0 5px rgba(244,119,33,.08) !important;
}

.wic-pf .wic-pf-search:focus {
  border-color: #e86710 !important;
  box-shadow: 0 0 0 6px rgba(244,119,33,.17), 0 10px 26px rgba(16,36,62,.08) !important;
}

.wic-pf .wic-pf-purchase-notice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  margin: 18px 0 4px;
  padding: 14px 16px;
  border: 1px solid #f3c797;
  border-radius: 14px;
  background: #fff8f1;
  color: #17324d;
  font-size: 15px;
  line-height: 1.5;
}

.wic-pf .wic-pf-purchase-notice strong {
  color: #c8580d;
}

.wic-pf .wic-pf-buy-key-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 17px;
  border: 1px solid #e86710;
  border-radius: 999px;
  background: #f47721;
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 7px 18px rgba(244,119,33,.18);
}

.wic-pf .wic-pf-buy-key-link:hover,
.wic-pf .wic-pf-buy-key-link:focus {
  background: #d85e0c;
  color: #fff !important;
  transform: translateY(-1px);
}

.wic-pf a.wic-pf-model {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
}

.wic-pf a.wic-pf-model:hover,
.wic-pf a.wic-pf-model:focus {
  border-color: #f47721;
  background: #fff4e9;
  color: #9e4004 !important;
  box-shadow: 0 7px 18px rgba(244,119,33,.16);
  outline: none;
}

.wic-pf .wic-pf-canon-manual-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 13px;
  border: 1px solid #176fa5;
  border-radius: 999px;
  background: #fff;
  color: #0e5e91 !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
}

.wic-pf .wic-pf-canon-manual-link:hover,
.wic-pf .wic-pf-canon-manual-link:focus {
  background: #0e5e91;
  color: #fff !important;
}

.wic-pf .wic-pf-search-card.wic-pf-scroll-highlight {
  animation: wicPfSearchPulse 1.7s ease;
}

@keyframes wicPfSearchPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 18px 48px rgba(16,36,62,.10), 0 0 0 0 rgba(244,119,33,.38);
  }
  35% {
    transform: translateY(-2px);
    box-shadow: 0 24px 55px rgba(16,36,62,.14), 0 0 0 14px rgba(244,119,33,.12);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 48px rgba(16,36,62,.10), 0 0 0 5px rgba(244,119,33,.06);
  }
}

@media (max-width: 700px) {
  .wic-pf .wic-pf-finder-section {
    scroll-margin-top: 76px;
  }

  .wic-pf .wic-pf-purchase-notice {
    align-items: flex-start;
    padding: 14px;
  }

  .wic-pf .wic-pf-buy-key-link {
    width: 100%;
  }

  .wic-pf .wic-pf-brand-heading {
    flex-wrap: wrap;
  }

  .wic-pf .wic-pf-canon-manual-link {
    order: 3;
    width: 100%;
  }
}
