  :root {
    --wsp-dark:   #3D1E08;
    --wsp-ink:    #2B1704;
    --wsp-accent: #F26522;
    --wsp-accent-soft: #FDE5D7;
    --wsp-panel:  #FEF0E6;
    --wsp-cream:  #FFFAF5;
    --wsp-line:   rgba(61, 30, 8, 0.12);
    --wsp-line-strong: rgba(61, 30, 8, 0.24);
    --wsp-muted:  rgba(61, 30, 8, 0.62);
    --wsp-green:  #1a7f3f;
  }

  .wsp-page * { box-sizing: border-box; margin: 0; padding: 0; }

  .wsp-page { scroll-behavior: smooth; }

  /* ══════════════════════════════════════════
     THEME OVERRIDES — defensive rules against
     theme.css forcing all H1-H6 to --dark color
     ══════════════════════════════════════════ */
  .wsp-page h1,
  .wsp-page h2,
  .wsp-page h3,
  .wsp-page h4,
  .wsp-page h5,
  .wsp-page h6 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .wsp-page em {
    color: var(--wsp-accent) !important;
    font-style: italic;
    font-weight: 400;
  }
  .wsp-page strong {
    font-weight: 700;
  }

  /* Hero + dark sections: white/cream text - use !important to beat theme h1/h2/h3 rule.
     Target only HEADING + PARAGRAPH elements, not all spans/divs — that way colour-
     specific classes like .eyebrow-dark can retain their orange via higher specificity. */
  .wsp-page .hero,
  .wsp-page .hero h1,
  .wsp-page .hero h2,
  .wsp-page .hero h3,
  .wsp-page .hero p,
  .wsp-page .hero .hero-lead,
  .wsp-page .savings-card,
  .wsp-page .savings-card h2,
  .wsp-page .savings-card h3,
  .wsp-page .savings-card p,
  .wsp-page .freebies,
  .wsp-page .freebies h2,
  .wsp-page .freebies h3,
  .wsp-page .freebies h4,
  .wsp-page .freebies p {
    color: var(--wsp-cream) !important;
  }
  /* Light-bg sections: dark ink text - also !important */
  .wsp-page .pricing-section,
  .wsp-page .pricing-section h2,
  .wsp-page .pricing-section h3,
  .wsp-page .pricing-section p,
  .wsp-page .pricing-section td,
  .wsp-page .pricing-section th,
  .wsp-page .advantages,
  .wsp-page .advantages h2,
  .wsp-page .advantages h3,
  .wsp-page .advantages p,
  .wsp-page .transparency,
  .wsp-page .transparency h2,
  .wsp-page .transparency h3,
  .wsp-page .transparency h4,
  .wsp-page .transparency p,
  .wsp-page .final-cta,
  .wsp-page .final-cta h2,
  .wsp-page .final-cta p {
    color: var(--wsp-ink) !important;
  }
  /* Em inside any heading always stays orange - highest priority */
  .wsp-page h1 em,
  .wsp-page h2 em,
  .wsp-page h3 em,
  .wsp-page h4 em {
    color: var(--wsp-accent) !important;
  }
  /* Special coloured bits that MUST stay orange even when inside dark sections */
  .wsp-page .eyebrow,
  .wsp-page .eyebrow-dark,
  .wsp-page .freebies-num,
  .wsp-page .freebies-value,
  .wsp-page .trans-card .num,
  .wsp-page .savings-big-number .prefix,
  .wsp-page .hero h1 em,
  .wsp-page h2 em,
  .wsp-page .freebies h2 em,
  .wsp-page .final-cta h2 em,
  .wsp-page .savings-card h3 em,
  .wsp-page .pricing-section h2 em,
  .wsp-page .advantages h2 em,
  .wsp-page .transparency h2 em {
    color: var(--wsp-accent) !important;
  }
  /* Comparison table: the 'ours' column header must stay cream despite the
     pricing-section th dark override above */
  .wsp-page .pricing-section .price-table thead th.ours {
    color: var(--wsp-cream) !important;
  }
  /* Eyebrow::before line also accent coloured */
  .wsp-page .eyebrow::before,
  .wsp-page .eyebrow-dark::before {
    background: var(--wsp-accent) !important;
  }

.wsp-page{
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--wsp-ink);
    background: var(--wsp-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

.wsp-page .container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

.wsp-page .container-narrow{
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ============ HERO ============ */
.wsp-page .hero{
    position: relative;
    background: var(--wsp-dark);
    color: var(--wsp-cream);
    padding: 100px 0 110px;
    overflow: hidden;
  }

.wsp-page .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.25), transparent 65%);
    pointer-events: none;
  }

.wsp-page .hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.15), transparent 70%);
    pointer-events: none;
  }

.wsp-page .hero-inner{
    position: relative;
    z-index: 2;
  }

.wsp-page .eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wsp-accent);
    margin-bottom: 28px;
  }

.wsp-page .eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--wsp-accent);
  }

.wsp-page .hero h1{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    max-width: 920px;
  }

.wsp-page .hero h1 em{
    font-style: italic;
    color: var(--wsp-accent);
    font-weight: 400;
  }

.wsp-page .hero-lead{
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    color: rgba(255, 250, 245, 0.82);
    max-width: 680px;
    margin-bottom: 40px;
  }

.wsp-page .hero-cta-row{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }

.wsp-page .btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 999px;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
  }

.wsp-page .btn-primary{
    background: var(--wsp-accent);
    color: white;
  }
.wsp-page .btn-primary:hover {
    background: #d85716;
    transform: translateY(-1px);
  }

.wsp-page .btn-ghost{
    background: transparent;
    color: var(--wsp-cream);
    border-color: rgba(255, 250, 245, 0.3);
  }
.wsp-page .btn-ghost:hover {
    border-color: var(--wsp-cream);
    background: rgba(255, 250, 245, 0.08);
  }

/* When a ghost button appears on a light (cream) background — the final-cta section — flip the colours */
.wsp-page .final-cta .btn-ghost {
    color: var(--wsp-dark) !important;
    border-color: rgba(61, 30, 8, 0.3);
  }
.wsp-page .final-cta .btn-ghost:hover {
    border-color: var(--wsp-dark);
    background: rgba(61, 30, 8, 0.06);
  }

.wsp-page .btn-dark{
    background: var(--wsp-dark);
    color: white;
  }
.wsp-page .btn-dark:hover {
    background: #2B1704;
  }

.wsp-page .hero-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 250, 245, 0.1);
  }

.wsp-page .hero-tag{
    font-size: 14px;
    color: rgba(255, 250, 245, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
  }

.wsp-page .hero-tag::before {
    content: '✓';
    color: var(--wsp-accent);
    font-weight: 700;
  }

  /* ============ PRICING TABLE ============ */
.wsp-page .pricing-section{
    padding: 110px 0;
    background: var(--wsp-cream);
  }

.wsp-page .section-header{
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
  }

.wsp-page .section-header.left{
    margin-left: 0;
    text-align: left;
  }

.wsp-page .section-header h2{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--wsp-dark);
    margin-bottom: 20px;
  }

.wsp-page .section-header h2 em{
    font-style: italic;
    color: var(--wsp-accent);
    font-weight: 400;
  }

.wsp-page .section-header p{
    font-size: 18px;
    color: var(--wsp-muted);
    line-height: 1.55;
  }

.wsp-page .eyebrow-dark{
    color: var(--wsp-accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

.wsp-page .eyebrow-dark::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--wsp-accent);
  }

.wsp-page .price-table-wrap{
    background: white;
    border: 1px solid var(--wsp-line);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(61, 30, 8, 0.06);
    margin-top: 18px; /* gives the 'Us' badge (positioned top: -10px on ours header) room to float above without being clipped */
  }

.wsp-page .price-table-scroll{
    overflow-x: auto;
    overflow-y: visible; /* critical: the 'Us' badge must be allowed to overflow vertically */
    border-radius: 16px;
  }

.wsp-page .price-table{
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 720px;
  }

.wsp-page .price-table thead th{
    padding: 22px 18px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--wsp-muted);
    background: var(--wsp-panel);
    border-bottom: 1px solid var(--wsp-line);
  }

.wsp-page .price-table thead th:first-child {
    text-align: left;
    font-size: 13px;
  }

.wsp-page .price-table thead th.ours{
    background: var(--wsp-dark);
    color: var(--wsp-cream);
    position: relative;
    padding-top: 28px;
    font-weight: 700;
  }

.wsp-page .price-table thead th.ours::after {
    content: 'Us';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wsp-accent);
    color: white;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(242, 101, 34, 0.25);
  }

.wsp-page .price-table tbody td{
    padding: 20px 18px;
    text-align: center;
    border-bottom: 1px solid var(--wsp-line);
    font-variant-numeric: tabular-nums;
  }

.wsp-page .price-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--wsp-dark);
  }

.wsp-page .price-table tbody td.ours{
    background: rgba(242, 101, 34, 0.06);
    color: var(--wsp-dark);
    font-weight: 700;
    font-size: 16px;
    border-left: 1px solid var(--wsp-line);
    border-right: 1px solid var(--wsp-line);
    position: relative;
  }

.wsp-page .price-table tbody tr:last-child td {
    border-bottom: none;
  }

.wsp-page .price-table tbody tr:hover td {
    background: #fffbf7;
  }

.wsp-page .price-table tbody tr:hover td.ours {
    background: rgba(242, 101, 34, 0.1);
  }

.wsp-page .qty-cell{
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

.wsp-page .qty-cell strong{
    font-size: 17px;
    font-weight: 600;
    color: var(--wsp-dark);
  }

.wsp-page .qty-cell span{
    font-size: 13px;
    color: var(--wsp-muted);
    font-weight: 400;
    margin-top: 2px;
  }

.wsp-page .per-unit{
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--wsp-muted);
    margin-top: 2px;
  }

.wsp-page .na{
    color: var(--wsp-muted);
    font-weight: 400;
    font-style: italic;
  }

.wsp-page .price-table tfoot td{
    padding: 22px 18px;
    background: var(--wsp-panel);
    font-size: 14px;
    color: var(--wsp-muted);
    text-align: left;
  }

.wsp-page .methodology{
    margin-top: 20px;
    font-size: 13px;
    color: var(--wsp-muted);
    line-height: 1.6;
    padding: 20px 24px;
    background: var(--wsp-panel);
    border-radius: 12px;
    border-left: 3px solid var(--wsp-accent);
  }

.wsp-page .methodology strong{
    color: var(--wsp-dark);
    font-weight: 600;
  }

  /* ============ SAVINGS CALLOUT ============ */
.wsp-page .savings{
    padding: 100px 0;
    background: var(--wsp-panel);
  }

.wsp-page .savings-card{
    background: var(--wsp-dark);
    color: var(--wsp-cream);
    border-radius: 24px;
    padding: clamp(40px, 5vw, 72px);
    position: relative;
    overflow: hidden;
  }

.wsp-page .savings-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.2), transparent 70%);
  }

.wsp-page .savings-card-inner{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
  }

.wsp-page .savings-card .savings-quote{
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.35;
    color: var(--wsp-cream) !important;
    margin-bottom: 28px;
    max-width: 640px;
  }

.wsp-page .savings-maths{
    display: flex;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
  }

.wsp-page .savings-maths-item{
    min-width: 140px;
  }

.wsp-page .savings-maths-item .label{
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 250, 245, 0.55);
    margin-bottom: 8px;
  }

.wsp-page .savings-maths-item .value{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 34px;
    letter-spacing: -0.02em;
  }

.wsp-page .savings-maths-item .value.accent{
    color: var(--wsp-accent);
  }

.wsp-page .savings-big-number{
    text-align: right;
  }

.wsp-page .savings-big-number .prefix{
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wsp-accent);
    margin-bottom: 12px;
  }

.wsp-page .savings-big-number .amount{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(72px, 10vw, 120px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--wsp-cream);
  }

.wsp-page .savings-big-number .suffix{
    display: block;
    font-size: 15px;
    color: rgba(255, 250, 245, 0.65);
    margin-top: 8px;
  }

  /* ============ ADVANTAGES ============ */
.wsp-page .advantages{
    padding: 110px 0;
    background: var(--wsp-cream);
  }

.wsp-page .adv-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

.wsp-page .adv-card{
    background: white;
    border: 1px solid var(--wsp-line);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.2s ease;
    position: relative;
  }

.wsp-page .adv-card:hover {
    border-color: var(--wsp-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(61, 30, 8, 0.08);
  }

.wsp-page .adv-icon{
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--wsp-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--wsp-accent);
  }

.wsp-page .adv-card h3{
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 21px;
    color: var(--wsp-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

.wsp-page .adv-card p{
    font-size: 15px;
    color: var(--wsp-muted);
    line-height: 1.6;
  }

.wsp-page .badge-free{
    display: inline-block;
    vertical-align: middle;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--wsp-accent);
    color: white !important;
    padding: 3px 8px;
    border-radius: 999px;
    margin-left: 8px;
  }
  .wsp-page .adv-card .badge-free{
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--wsp-accent);
    color: white;
    padding: 5px 10px;
    border-radius: 999px;
  }

  /* ============ WHAT YOU GET FREE ============ */
.wsp-page .freebies{
    padding: 100px 0;
    background: var(--wsp-dark);
    color: var(--wsp-cream);
    position: relative;
    overflow: hidden;
  }

.wsp-page .freebies::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.15), transparent 70%);
  }

.wsp-page .freebies-layout{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
  }

.wsp-page .freebies h2{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }

.wsp-page .freebies h2 em{
    font-style: italic;
    color: var(--wsp-accent);
    font-weight: 400;
  }

.wsp-page .freebies-intro{
    font-size: 17px;
    color: rgba(255, 250, 245, 0.75);
    line-height: 1.6;
  }

.wsp-page .freebies-list{
    list-style: none;
  }

.wsp-page .freebies-list li{
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: baseline;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 250, 245, 0.12);
  }

.wsp-page .freebies-list li:first-child {
    padding-top: 0;
  }

.wsp-page .freebies-list li:last-child {
    border-bottom: none;
  }

.wsp-page .freebies-num{
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--wsp-accent);
    font-style: italic;
  }

.wsp-page .freebies-title{
    font-size: 19px;
    font-weight: 600;
    color: var(--wsp-cream);
    margin-bottom: 4px;
  }

.wsp-page .freebies-desc{
    font-size: 15px;
    color: rgba(255, 250, 245, 0.65);
    line-height: 1.5;
  }

.wsp-page .freebies-value{
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--wsp-accent);
    white-space: nowrap;
  }

  /* ============ HOW WE DO IT ============ */
.wsp-page .transparency{
    padding: 110px 0;
    background: var(--wsp-panel);
  }

.wsp-page .transparency-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
  }

.wsp-page .trans-card{
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--wsp-line);
  }

.wsp-page .trans-card h3{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--wsp-dark);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }

.wsp-page .trans-card p{
    font-size: 16px;
    color: var(--wsp-muted);
    line-height: 1.6;
  }

.wsp-page .trans-card .num{
    display: inline-block;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--wsp-accent);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }

  /* ============ FINAL CTA ============ */
.wsp-page .final-cta{
    padding: 110px 0;
    background: var(--wsp-cream);
    text-align: center;
  }

.wsp-page .final-cta h2{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--wsp-dark);
    margin-bottom: 24px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

.wsp-page .final-cta h2 em{
    font-style: italic;
    color: var(--wsp-accent);
    font-weight: 400;
  }

.wsp-page .final-cta p{
    font-size: 19px;
    color: var(--wsp-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.5;
  }

.wsp-page .final-cta-row{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

.wsp-page .final-cta-note{
    margin-top: 32px;
    font-size: 14px;
    color: var(--wsp-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

.wsp-page .final-cta-note span{
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    .wsp-page .hero { padding: 70px 0 80px; }
    .wsp-page .adv-grid { grid-template-columns: repeat(2, 1fr); }
    .wsp-page .savings-card-inner { grid-template-columns: 1fr; gap: 30px; }
    .wsp-page .savings-big-number { text-align: left; }
    .wsp-page .freebies-layout { grid-template-columns: 1fr; gap: 40px; }
    .wsp-page .transparency-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 640px) {
    .wsp-page .pricing-section, .wsp-page .advantages, .wsp-page .savings, .wsp-page .freebies, .wsp-page .transparency, .wsp-page .final-cta { padding: 70px 0; }
    .wsp-page .adv-grid { grid-template-columns: 1fr; }
    .wsp-page .savings-maths { gap: 24px; }
    .wsp-page .freebies-list li { grid-template-columns: 32px 1fr; }
    .wsp-page .freebies-value { grid-column: 2; font-size: 14px; margin-top: 4px; }
    .wsp-page .hero-cta-row { flex-direction: column; align-items: stretch; }
    .wsp-page .btn { justify-content: center; }
  }
