/* =========================================================
   COMMON PRICE-RANGE PAGE STYLES
   Used by every Under £500, Under £700, Under £1,000 and
   other price-range page. Page colours are controlled by the
   page-specific data file.
   ========================================================= */

:root {
  --LP-page-background: #f5f7fa;
  --LP-surface: #ffffff;
  --LP-surface-soft: #eef2f7;
  --LP-text: #0f172a;
  --LP-muted: #64748b;
  --LP-border: rgba(15, 23, 42, .10);
  --LP-accent: #2563eb;
  --LP-accent-dark: #1d4ed8;
  --LP-header-background: rgba(8, 17, 31, .97);
  --LP-header-text: #ffffff;
  --LP-header-muted: #cbd5e1;
  --LP-hero-gradient: linear-gradient(118deg, #08111f 0%, #10213d 58%, #0f2d46 100%);
  --LP-hero-text: #ffffff;
  --LP-hero-muted: #cbd5e1;
  --LP-hero-highlight: #38bdf8;
  --LP-featured-background: linear-gradient(155deg, #0f3b66 0%, #172554 100%);
  --LP-featured-accent: #7dd3fc;
  --LP-image-background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  --LP-normal-button: #16a34a;
  --LP-normal-button-hover: #15803d;
  --LP-voucher-button: #f97316;
  --LP-voucher-button-hover: #ea580c;
  --LP-badge: #dc2626;
  --LP-badge-text: #ffffff;
  --LP-footer-gradient: linear-gradient(118deg, #08111f 0%, #10213d 62%, #0f2d46 100%);
  --LP-content-width: 1180px;
  --LP-card-radius: 22px;
  --LP-image-height: 220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--LP-page-background);
  color: var(--LP-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.LP_shell {
  width: min(var(--LP-content-width), calc(100% - 40px));
  margin-inline: auto;
  min-width: 0;
}

.LP_header {
  position: relative;
  top: 0;
  z-index: 50;
  min-height: 58px;
  background: var(--LP-header-background);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(12px);
}

.LP_header-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.LP_brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: var(--LP-header-text);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.LP_brand-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #281433;
  background: linear-gradient(135deg, var(--LP-hero-highlight), #fb7185);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.LP_brand-text {
  font-size: 18px;
  letter-spacing: -.02em;
}

.LP_nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  margin-left: 6px;
}

.LP_nav-link {
  padding: 7px 9px;
  border-radius: 9px;
  color: var(--LP-header-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}

.LP_nav-link:hover,
.LP_nav-link:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  outline: none;
}


/* Highlight the Laptop Buying Guide separately */
.LP_nav-dropdown a[href$="laptop-buying-guide.html"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin-top: 8px;
  padding: 13px 12px;

  background: linear-gradient(135deg, #f5f3ff 0%, #eef2ff 100%);
  border: 1px solid #c4b5fd;
  border-radius: 11px;

  color: #5b21b6;
  font-weight: 800;

  box-shadow: 0 6px 16px rgba(91, 33, 182, 0.08);
  transition: 0.2s ease;
}

.LP_nav-dropdown a[href$="laptop-buying-guide.html"]::after {
  content: "GUIDE";
  padding: 4px 7px;

  background: #7c3aed;
  border-radius: 999px;

  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.LP_nav-dropdown a[href$="laptop-buying-guide.html"]:hover,
.LP_nav-dropdown a[href$="laptop-buying-guide.html"]:focus-visible {
  background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 100%);
  color: #4c1d95;
  border-color: #a78bfa;
  box-shadow: 0 8px 20px rgba(91, 33, 182, 0.14);
  transform: translateY(-1px);
}



.LP_header-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.LP_header-stat {
  min-width: 62px;
  padding: 4px 8px;
  border-left: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
}

.LP_header-stat-value,
.LP_header-stat-label {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LP_header-stat-value {
  color: var(--LP-header-text);
  font-size: 13px;
  line-height: 1.15;
}

.LP_header-stat-label {
  margin-top: 2px;
  color: var(--LP-header-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.LP_hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 58px;
  background: var(--LP-hero-gradient);
  color: var(--LP-hero-text);
  border-radius: 0 0 42px 42px;
}

.LP_hero::before,
.LP_hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.LP_hero::before {
  width: 320px;
  height: 320px;
  right: -95px;
  top: -190px;
  border: 58px solid rgba(250, 204, 21, .10);
}

.LP_hero::after {
  width: 210px;
  height: 210px;
  left: 42%;
  bottom: -160px;
  background: rgba(244, 63, 94, .14);
}

.LP_hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  align-items: center;
  gap: 36px;
}

.LP_hero-content,
.LP_hero-visual,
.LP_hero-image-wrap,
.LP_featured {
  min-width: 0;
}

.LP_eyebrow {
  margin: 0 0 8px;
  color: var(--LP-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.LP_hero-eyebrow {
  width: fit-content;
  max-width: 100%;
  padding: 7px 11px;
  overflow: hidden;
  border-radius: 999px;
  border: 0;
  background: var(--LP-hero-highlight);
  color: #2a1633;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LP_hero-title {
  max-width: 690px;
  margin: 0;
  color: var(--LP-hero-text);
  font-size: clamp(2.25rem, 4.6vw, 4.15rem);
  line-height: .97;
  letter-spacing: -.05em;
  overflow-wrap: anywhere;
}

.LP_hero-title-part {
  display: block;
}

.LP_hero-title-highlight {
  width: fit-content;
  max-width: 100%;
  margin-top: 7px;
  color: var(--LP-hero-highlight);
  text-shadow: 0 8px 30px rgba(0, 0, 0, .22);
}

.LP_hero-description {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--LP-hero-muted);
  font-size: 16px;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.LP_search {
  width: min(100%, 440px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 9px;
  margin-top: 22px;
}

.LP_search-input,
.LP_search-button {
  min-height: 44px;
  border-radius: 13px;
}

.LP_search-input {
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  border: 2px solid rgba(255, 255, 255, .28);
  outline: none;
  background: #ffffff;
  color: #0f172a;
}

.LP_search-input:focus {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .18);
}

.LP_search-button {
  border: 0;
  background: var(--LP-hero-highlight);
  color: #281433;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  transition: background .18s ease, transform .18s ease;
}

.LP_search-button:hover {
  background: #fde047;
  transform: translateY(-1px);
}

.LP_retailers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
}

.LP_retailer-label {
  color: var(--LP-hero-muted);
  font-size: 12px;
  font-weight: 700;
}

.LP_retailer-chip {
  max-width: 135px;
  padding: 5px 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LP_hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(150px, .75fr);
  min-height: 270px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, .96);
  border-radius: 22px;
  background: var(--LP-surface);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .23);
  transform: rotate(.7deg);
  transform-origin: center;
}

.LP_hero-image-wrap {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background: var(--LP-image-background);
}

.LP_hero-image {
  position: absolute;
  inset: 17px;
  width: calc(100% - 34px);
  height: calc(100% - 34px);
  max-width: calc(100% - 34px);
  max-height: calc(100% - 34px);
  object-fit: contain;
  object-position: center;
}

.LP_hero-image-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  max-width: calc(100% - 26px);
  padding: 6px 9px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--LP-badge);
  color: var(--LP-badge-text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LP_price-cap {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  max-width: calc(100% - 28px);
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 0 7px;
  padding: 9px 12px 10px;
  overflow: hidden;
  border: 2px solid #ffffff;
  border-radius: 12px;
  background: #281433;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(40, 20, 51, .22);
  transform: rotate(-1deg);
}

.LP_price-cap-label,
.LP_price-cap-suffix {
  overflow: hidden;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LP_price-cap-label {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--LP-hero-highlight);
}

.LP_price-cap-value {
  max-width: 100%;
  overflow: hidden;
  color: #ffffff;
  font-size: 28px;
  line-height: .95;
  letter-spacing: -.05em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LP_price-cap-suffix {
  padding-bottom: 2px;
  color: #f5d0fe;
}

.LP_featured {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 18px;
  background: var(--LP-featured-background);
  color: #ffffff;
}

.LP_featured-label {
  display: -webkit-box;
  overflow: hidden;
  color: var(--LP-featured-accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.LP_featured-title {
  display: -webkit-box;
  margin: 9px 0 0;
  overflow: hidden;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.LP_featured-prices {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 15px;
  min-width: 0;
}

.LP_featured-price,
.LP_featured-old-price {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LP_featured-price {
  color: var(--LP-featured-accent);
  font-size: 26px;
  line-height: 1.1;
}

.LP_featured-old-price {
  color: #dc2626;
  font-size: 12px;
  text-decoration: line-through;
}

.LP_featured-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 8px 12px;
  overflow: hidden;
  border-radius: 11px;
  background: #ffffff;
  color: #9f1239;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LP_disclosure-wrap {
  padding: 20px 0 0;
}

.LP_disclosure {
  margin: 0;
  padding: 11px 14px;
  border: 1px solid var(--LP-border);
  border-radius: 8px;
  background: var(--LP-surface);
  color: var(--LP-muted);
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.LP_disclosure-link {
  color: var(--LP-accent);
  font-weight: 800;
}

.LP_deal-section,
.LP_info-section,
.LP_faq-section {
  padding: 44px 0;
}

.LP_deal-section {
  position: relative;
}

.LP_deal-section::before {
  display: none;
}

.LP_deal-section + .LP_deal-section {
  padding-top: 0;
}

.LP_section-heading {
  max-width: 760px;
  margin-bottom: 18px;
  min-width: 0;
}

.LP_deal-section .LP_section-heading {
  position: relative;
  z-index: 1;
  width: auto;
  margin-left: 0;
  margin-right: auto;
  padding-left: 14px;
  border-left: 3px solid var(--LP-accent);
}

.LP_section-heading-centred {
  margin-inline: auto;
  text-align: center;
}

.LP_section-title {
  margin: 0;
  color: var(--LP-text);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.13;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}

.LP_section-description {
  margin: 9px 0 0;
  color: var(--LP-muted);
  font-size: 15px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.LP_deal-layout {
  width: min(100%, 1100px);
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-inline: auto;
}

.LP_deal-layout-no-sidebar {
  grid-template-columns: 1fr;
}

.LP_deal-sidebar {
  min-width: 0;
  align-self: start;
  position: sticky;
  top: 78px;
  overflow: hidden;
  border: 1px solid var(--LP-border);
  border-radius: 14px;
background: var(--LP-sidebar-gradient);
color: var(--LP-sidebar-text);


overflow: hidden;
isolation: isolate;
}

.LP_deal-sidebar-title {
  margin: 0;
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--LP-border);
  color: var(--LP-text);
  font-size: 19px;
  line-height: 1.3;
  overflow-wrap: anywhere;
  color: var(--LP-sidebar-text);
position: relative;
z-index: 2;
}

.LP_deal-sidebar-title::after {
  width: 32px;
  height: 3px;
  display: block;
  margin-top: 6px;
  content: "";
  border-radius: 999px;
  background: var(--LP-accent);
}

.LP_deal-sidebar-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 6px 12px 8px;
}

.LP_deal-sidebar-link {
min-width: 0;
padding: 4px 12px;
overflow: hidden;
border-radius: 8px;
font-size: 16px;
font-weight: 750;
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
transition: color .18s ease, background .18s ease;

background: transparent;
color: var(--LP-sidebar-text);

position: relative;
z-index: 2;
}

.LP_deal-sidebar-link:hover,
.LP_deal-sidebar-link:focus-visible {
  outline: none;
  background: var(--LP-sidebar-link-hover);
  color: var(--LP-sidebar-text);
}

.LP_sidebar-circle{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    z-index:1;
}

.LP_sidebar-circle-one{
    width:160px;
    height:160px;
    top:-70px;
    right:-60px;
    background:var(--LP-sidebar-circle-one);
}

.LP_sidebar-circle-two{
    width:95px;
    height:95px;
    bottom:-35px;
    left:-30px;
    background:var(--LP-sidebar-circle-two);
}


.LP_deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.LP_card {
  --LP-card-accent: var(--LP-accent);
  --LP-card-tint: var(--LP-surface-soft);
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(33, 22, 40, .065);
  border-radius: var(--LP-card-radius);
  background: var(--LP-surface);
  box-shadow: 0 14px 34px rgba(33, 22, 40, .07), 0 2px 6px rgba(33, 22, 40, .035);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.LP_card::before {
  display: none;
}

.LP_card:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 22, 40, .11);
  box-shadow: 0 22px 46px rgba(33, 22, 40, .11), 0 3px 8px rgba(33, 22, 40, .045);
}

.LP_card-image-wrap {
  position: relative;
  width: calc(100% - 16px);
  height: var(--LP-image-height);
  min-height: var(--LP-image-height);
  margin: 8px 8px 0;
  overflow: hidden;
  flex-shrink: 0;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(145deg, #ffffff 0%, #f8f7fa 100%);
}

.LP_card-image {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  object-fit: contain;
  object-position: center;
}

.LP_card-image-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--LP-muted);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
  overflow-wrap: anywhere;
}

.LP_card-badge {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  max-width: calc(100% - 24px);
  padding: 5px 8px;
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, .9);
  background: #111827;
  color: var(--LP-badge-text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LP_card-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 13px 14px 14px;
}

.LP_card-merchant {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 5px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  color: var(--LP-muted);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.LP_card-merchant::before {
  display: none;
}

.LP_card-title {
  min-height: 2.6em;
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--LP-text);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.LP_card-description {
  min-height: 2.9em;
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  color: var(--LP-muted);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.LP_card-price-area {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.LP_card-prices {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.LP_card-price,
.LP_card-old-price {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LP_card-price {
  color: var(--LP-text);
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.LP_card-old-price {
  color: #8b9793;
  font-size: 12px;
  text-decoration: line-through;
}


.LP_deal-button {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 14px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: background .18s ease, transform .18s ease;
}

.LP_card-actions {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}


.LP_deal-button:hover,
.LP_deal-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.LP_deal-button-normal {
  background: var(--LP-normal-button);
}

.LP_deal-button-normal:hover,
.LP_deal-button-normal:focus-visible {
  background: var(--LP-normal-button-hover);
}

.LP_deal-button-voucher {
  background: var(--LP-voucher-button);
}

.LP_deal-button-voucher:hover,
.LP_deal-button-voucher:focus-visible {
  background: var(--LP-voucher-button-hover);
}

.LP_no-results {
  padding: 0 0 48px;
}

.LP_no-results-inner {
  padding: 28px;
  border: 1px solid var(--LP-border);
  border-radius: 18px;
  background: var(--LP-surface);
  text-align: center;
}

.LP_no-results-title {
  margin: 0;
  font-size: 22px;
  overflow-wrap: anywhere;
}

.LP_no-results-text {
  margin: 7px 0 0;
  color: var(--LP-muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.LP_info-section {
  width: min(calc(100% - 32px), 1260px);
  margin-inline: auto;
  padding: 44px 0;
  border: 1px solid var(--LP-border);
  border-radius: 24px;
  background: var(--LP-surface-soft);
}

.LP_info-section .LP_eyebrow {
  color: var(--LP-accent);
}

.LP_info-section .LP_section-title {
  color: var(--LP-text);
}

.LP_info-section .LP_section-description {
  color: var(--LP-muted);
}

.LP_info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.LP_info-card {
  min-width: 0;
  padding: 21px;
  border: 1px solid var(--LP-border);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--LP-surface);
}

.LP_info-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--LP-accent);
}

.LP_info-card:nth-child(2)::before {
  background: var(--LP-accent-dark);
}

.LP_info-card:nth-child(3)::before {
  background: var(--LP-accent);
}

.LP_info-card-title {
  margin: 0;
  color: var(--LP-text);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.LP_info-card-text {
  margin: 7px 0 0;
  color: var(--LP-muted);
  font-size: 14.5px;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.LP_faq-shell {
  display: grid;
  grid-template-columns: minmax(230px, .65fr) minmax(0, 1.35fr);
  gap: 52px;
  align-items: start;
}

.LP_faq-list {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.LP_faq-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--LP-border);
  border-radius: 10px;
  background: var(--LP-surface);
}

.LP_faq-question {
  padding: 15px 42px 15px 16px;
  color: var(--LP-text);
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 850;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.LP_faq-answer {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--LP-muted);
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.LP_footer {
  overflow: hidden;
  padding: 40px 0 18px;
  background: var(--LP-footer-gradient);
  color: #ffffff;
}

.LP_footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .9fr 1.35fr;
  gap: 34px;
}

.LP_footer-brand {
  color: #ffffff;
}

.LP_footer-brand .LP_brand-icon {
  background: var(--LP-hero-highlight);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #281433;
}

.LP_footer-description,
.LP_newsletter-text {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 13.5px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.LP_footer-title {
  margin: 0;
  color: #ffffff;
  font-size: 14.5px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.LP_footer-links {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.LP_footer-link {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, .76);
  font-size: 12.5px;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LP_footer-link:hover {
  color: #ffffff;
}

.LP_newsletter-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 13px;
}

.LP_newsletter-input,
.LP_newsletter-button {
  min-height: 38px;
  border-radius: 10px;
}

.LP_newsletter-input {
  width: 100%;
  min-width: 0;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
  outline: none;
}

.LP_newsletter-input::placeholder {
  color: rgba(255, 255, 255, .66);
}

.LP_newsletter-input:focus {
  border-color: rgba(255, 255, 255, .6);
}

.LP_newsletter-button {
  max-width: 120px;
  padding: 0 13px;
  overflow: hidden;
  border: 0;
  background: #ffffff;
  color: #4c1d5b;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LP_honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.LP_footer-bottom {
  margin-top: 26px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .64);
  font-size: 11.5px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

@media (max-width: 1040px) {
  .LP_header-inner {
    gap: 13px;
  }

  .LP_nav {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .LP_nav::-webkit-scrollbar {
    display: none;
  }

  .LP_header-stat:nth-child(2) {
    display: none;
  }

  .LP_hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
    gap: 24px;
  }

  .LP_deal-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .LP_deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .LP_footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .LP_newsletter {
    grid-column: 1 / -1;
    max-width: 560px;
  }
}

@media (max-width: 860px) {
  .LP_header-stats {
    display: none;
  }

  .LP_nav {
    margin-left: auto;
  }

  .LP_hero-grid {
    grid-template-columns: 1fr;
  }

  .LP_hero-content {
    max-width: 680px;
  }

  .LP_hero-visual {
    max-width: 650px;
  }

  .LP_deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .LP_deal-layout {
    grid-template-columns: 1fr;
  }

  .LP_deal-sidebar {
    align-self: stretch;
    position: static;
  }

  .LP_deal-sidebar-nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .LP_deal-sidebar-nav::-webkit-scrollbar {
    display: none;
  }

  .LP_deal-sidebar-link {
    flex: 0 0 auto;
  }

  .LP_faq-shell {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 680px) {
  .LP_shell {
    width: min(100% - 28px, var(--LP-content-width));
  }

  .LP_header {
    position: static;
  }

  .LP_header-inner {
    min-height: 54px;
  }

  .LP_brand-text {
    display: none;
  }

  .LP_nav {
    gap: 1px;
  }

  .LP_nav-link {
    padding: 7px 8px;
    font-size: 12px;
  }

  .LP_hero {
    padding: 28px 0;
    border-radius: 0 0 28px 28px;
  }

  .LP_hero-title {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .LP_search {
    grid-template-columns: minmax(0, 1fr) 82px;
  }

  .LP_hero-visual {
    grid-template-columns: 1fr;
    transform: none;
  }

  .LP_hero-image-wrap {
    min-height: 230px;
  }

  .LP_featured {
    min-height: 180px;
  }

  .LP_deal-section,
  .LP_info-section,
  .LP_faq-section {
    padding: 38px 0;
  }

  .LP_deal-grid,
  .LP_info-grid,
  .LP_footer-grid {
    grid-template-columns: 1fr;
  }

  .LP_card-image-wrap {
    height: var(--LP-image-height);
    min-height: var(--LP-image-height);
  }

  .LP_card-body {
    padding: 13px 14px 14px;
  }

  .LP_card-actions {
    gap: 10px;
    padding-top: 12px;
  }

  .LP_footer-grid {
    gap: 25px;
  }

  .LP_newsletter {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .LP_nav-link:nth-child(n+5) {
    display: none;
  }

  .LP_search {
    grid-template-columns: 1fr;
  }

  .LP_search-button {
    width: 100%;
  }

  .LP_card-price-area {
    align-items: flex-start;
    flex-direction: column;
  }

  .LP_newsletter-form {
    grid-template-columns: 1fr;
  }

  .LP_newsletter-button {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* =========================================================
   SHARED HEADER LAYOUT — UNDER-PAGE THEME START
   Logo, link spacing, dropdowns and stats match other pages.
   Colours remain connected to this page's hero theme.
   ========================================================= */

.LP_header {
  width: 100%;
  min-height: 100px;
  background: var(--LP-hero-gradient);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  top: 0;
  z-index: 100;
}

.LP_header-inner {
  width: min(1180px, 92%);
  min-height: 100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.LP_brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}

.LP_brand-icon {
  width: 60px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6, #4338ca);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
  font-size: 26px;
  font-weight: 950;
}

.LP_brand-text {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.LP_nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 0;
  overflow: visible;
}

.LP_nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.LP_nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 0;
  border-radius: 0;
  color: var(--LP-hero-muted);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.LP_nav-link:hover,
.LP_nav-link:focus-visible {
  color: #ffffff;
  background: transparent;
}

.LP_nav-arrow {
  font-size: 11px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.LP_nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 120;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.LP_nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.LP_nav-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: #475467;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.LP_nav-dropdown a:hover,
.LP_nav-dropdown a:focus-visible {
  color: #1d4ed8;
  background: #eff6ff;
  outline: none;
}

.LP_nav-item:hover .LP_nav-dropdown,
.LP_nav-item:focus-within .LP_nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.LP_nav-item:hover .LP_nav-arrow,
.LP_nav-item:focus-within .LP_nav-arrow {
  transform: rotate(180deg);
}

.LP_header-stats {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
}

.LP_header-stat {
  min-width: 78px;
  padding: 10px 12px;
  border: 2px solid rgba(250, 204, 21, 0.80);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  text-align: center;
}

.LP_header-stat-value {
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.LP_header-stat-label {
  margin-top: 4px;
  color: var(--LP-hero-muted);
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

/* Standard PC Prospect footer logo */
.LP_footer-brand .LP_brand-icon {
  width: 48px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6, #4338ca);
  color: #ffffff;
  box-shadow: none;
  font-size: 22px;
  font-weight: 950;
}

.LP_footer-brand .LP_brand-text {
  color: #ffffff;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .LP_header {
    min-height: auto;
  }

  .LP_header-inner {
    width: min(1180px, calc(100% - 28px));
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 0 18px;
  }

  .LP_brand {
    justify-self: auto;
    justify-content: center;
  }

  .LP_brand-text {
    display: block;
  }

  .LP_header-stats {
    display: none;
  }

  .LP_nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 18px;
    margin-left: 0;
    overflow: visible;
  }

  .LP_nav-link {
    padding: 8px 0;
    font-size: 14px;
  }

  .LP_nav-dropdown {
    right: auto;
    left: 50%;
    width: min(300px, calc(100vw - 32px));
    min-width: 0;
  }
}

/* SHARED HEADER LAYOUT — UNDER-PAGE THEME END */

/* =========================================================
   CURRENT PAGE LINK INDICATORS
   Shows the current page in the header, dropdown, side box
   and footer without changing the existing navigation design.
   ========================================================= */

.LP_nav-link.LP_nav-link-active {
  position: relative;
  color: rgba(255, 255, 255, .64);
}

.LP_nav-link.LP_nav-link-active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: #22c55e;
}

.LP_nav-item.has-dropdown .LP_nav-link-active::after {
  right: 16px;
}

.LP_nav-dropdown a.LP_nav-dropdown-link-active {
  color: #94a3b8;
  text-decoration: underline;
  text-decoration-color: #22c55e;
  text-underline-offset: 5px;
}

.LP_deal-sidebar-link.LP_deal-sidebar-link-active {
  color: var(--LP-sidebar-muted);
  text-decoration: underline;
  text-decoration-color: #22c55e;
  text-underline-offset: 5px;
}

.LP_footer-link.LP_footer-link-active {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #22c55e;
  text-underline-offset: 5px;
}

/* CURRENT PAGE LINK INDICATORS END */
