/*
 * slcie-uk.css
 * Compare Stairlifts Ireland — UK-design template stylesheet
 * /pages/slcie/css/slcie-uk.css
 * Consolidated from Template-SLCUK.master + Home-SLCUK.aspx
 * April 2026
 */

/* ════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES
════════════════════════════════════════════════════════════ */
:root {
    /* Brand colours */
    --clr-plum:        #29235C;
    --clr-plum-mid:    #2F2769;
    --clr-pink:        #D5317B;
    --clr-pink-hover:  #B8255E;
    --clr-blue:        #1F7BC3;
    --clr-blue-dark:   #1A2A3A;
    --clr-gold:        #C8860A;
    --clr-gold-bg:     #FEF7E6;
    --clr-offwhite:    #ECECEC;
    --clr-white:       #fff;
    --clr-text:        #29235C;
    --clr-text-mid:    #4A4A6A;
    --clr-border:      #E8E0F0;

    /* Typography */
    --font:            'Montserrat', Arial, sans-serif;

    /* Spacing */
    --sp-xs:   0.5rem;
    --sp-sm:   1rem;
    --sp-md:   2rem;
    --sp-lg:   4rem;
    --sp-xl:   5rem;

    /* Border radii */
    --rad-sm:  8px;
    --rad-md:  12px;
    --rad-lg:  16px;
    --rad-xl:  40px;
    --rad-pill: 50px;

    /* Shadows */
    --shadow-sm:  0 2px 12px rgba(41,35,92,.08);
    --shadow-md:  0 4px 24px rgba(41,35,92,.12);
    --shadow-lg:  0 8px 40px rgba(41,35,92,.18);

    /* Transitions */
    --trans: 0.2s ease;
}

/* ════════════════════════════════════════════════════════════
   2. RESET & BASE
════════════════════════════════════════════════════════════ */
* { font-family: var(--font); padding: 0; margin: 0; box-sizing: border-box; }
ul, ol, li { list-style: none; }  /* reset all — re-enabled per-component where needed */
input  { -webkit-appearance: none; -moz-appearance: none; appearance: none; }

/* Base p tag defaults */
p {
    line-height: 1.65;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}
p:last-child { margin-bottom: 0; }
select { color: var(--clr-plum-mid) !important; }
body   { overflow-x: hidden; position: relative; }
img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }
th, td { color: var(--clr-plum) !important; }
video  { background-color: var(--clr-blue) !important; }

::-webkit-input-placeholder { color: #9B9B9B; }
:-ms-input-placeholder      { color: #9B9B9B; }
::placeholder               { color: #9B9B9B; }

/* ════════════════════════════════════════════════════════════
   3. LAYOUT UTILITIES
════════════════════════════════════════════════════════════ */
.container  { max-width: 1440px; margin: 0 auto; padding-left: 3.2rem; padding-right: 3.2rem; }
.clearboth  { clear: both; }
.alignright { text-align: right; }
.text-center { text-align: center; }

/* Foundation grid */
@media only screen and (min-width: 640px) {
    .medium-1,.medium-2,.medium-3,.medium-4,.medium-5,.medium-6,
    .medium-7,.medium-8,.medium-9,.medium-10,.medium-11,.medium-12 {
        position: relative; float: left;
        padding-left: 2.6rem; padding-right: 2.6rem;
    }
    .medium-1  { width: 8.33333%; }   .medium-2  { width: 16.66667%; }
    .medium-3  { width: 25%; }        .medium-4  { width: 33.33333%; }
    .medium-5  { width: 41.66667%; }  .medium-6  { width: 50%; }
    .medium-7  { width: 58.33333%; }  .medium-8  { width: 66.66667%; }
    .medium-9  { width: 75%; }        .medium-10 { width: 83.33333%; }
    .medium-11 { width: 91.66667%; }  .medium-12 { width: 100%; }
}

/* ════════════════════════════════════════════════════════════
   4. ANIMATIONS
════════════════════════════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes heroPulse {
    0%   { box-shadow: 0 0 0 0 rgba(213,49,123,0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(213,49,123,0); }
    100% { box-shadow: 0 0 0 0 rgba(213,49,123,0); }
}
@keyframes vmIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to   { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════
   5. BUTTONS
════════════════════════════════════════════════════════════ */
.button-pink,
.button-lightblue,
.button-darkblue {
    background: var(--clr-pink) url(/pages/slcuk/images/general/arrow-white-right.png) no-repeat right 20px center;
    max-width: 100%; color: var(--clr-white); text-decoration: none;
    font-weight: 700; padding: 1.4rem 2.5rem 1.6rem 1.5rem;
    display: inline-block; text-transform: uppercase; border: 0;
    height: 70px;
}
.button-lightblue { background-color: var(--clr-blue);  width: 100%; padding: 1.4rem 2.5rem 1.6rem 1.5rem; }
.button-darkblue  { background-color: var(--clr-plum);  width: 100%; padding: 1.4rem 2.5rem 1.6rem 1.5rem; }
.button-pink:hover,
.button-lightblue:hover,
.button-darkblue:hover { background-color: var(--clr-plum); color: var(--clr-white) !important; }
.button-pink { border-radius: var(--rad-xl) !important; background-image: none !important; }

/* Hero / prominent CTA */
.hero-cta-main {
    display: inline-block;
    background: var(--clr-pink);
    color: var(--clr-white) !important;
    font-size: 1.15rem; font-weight: 900;
    padding: 1.1rem 2.5rem;
    border-radius: var(--rad-pill);
    text-transform: uppercase; letter-spacing: 0.04em;
    border: 0; cursor: pointer; margin-top: 0.5rem;
    animation: heroPulse 2.2s ease-out infinite;
    transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.hero-cta-main:hover {
    background: var(--clr-plum); color: var(--clr-white) !important;
    animation: none; transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(213,49,123,0.4);
}
.hero-cta-main:active { transform: scale(0.97); }

.hero-cta-note {
    display: block; font-size: 0.75em; font-weight: 600;
    color: #6b7280; margin-top: 0.6rem;
}

/* Gold/grant CTA */
.btn-gold-ie {
    display: inline-block; background-color: var(--clr-gold);
    color: var(--clr-white); font-weight: 800; font-size: 1.0rem;
    padding: 1rem 1.75rem; border-radius: var(--rad-xl);
    text-transform: uppercase; border: 0; cursor: pointer;
    transition: background var(--trans); white-space: nowrap;
}
.btn-gold-ie:hover { background-color: #A06800; color: var(--clr-white); }

/* Watch interview */
.btn-watch-ie {
    background: var(--clr-blue); color: var(--clr-white);
    font-size: 0.95rem; font-weight: 700;
    padding: 0.95rem 2rem; border: 0;
    border-radius: var(--rad-xl); cursor: pointer;
    text-transform: uppercase; letter-spacing: 0.04em;
    transition: background var(--trans); white-space: nowrap;
}
.btn-watch-ie:hover { background: var(--clr-plum); }

/* ════════════════════════════════════════════════════════════
   6. HEADER / NAV — Modern flex layout
════════════════════════════════════════════════════════════ */
header,
#header {
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
    position: relative;
    width: 100%;
}
/* Plum → pink accent stripe across top */
header::before,
#header::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-plum) 0%, var(--clr-pink) 100%);
}

/* Nav wrapper */
.nav-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3.2rem;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo + tagline */
.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo img    { height: 72px; width: auto; display: block; }
.nav-tagline {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--clr-text-mid);
    letter-spacing: 0.02em;
    line-height: 1;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    margin-left: auto;
}
.nav-links a {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--clr-plum);
    padding: 0.5rem 0.85rem;
    border-radius: var(--rad-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--trans), color var(--trans);
}
.nav-links a:hover {
    background: rgba(41,35,92,.06);
    color: var(--clr-plum);
}
.nav-links a.active {
    color: var(--clr-pink);
    background: rgba(213,49,123,.06);
}
/* Grants gets a blue pill to highlight the grant offering */
.nav-links .nav-grants {
    color: var(--clr-blue);
    background: rgba(31,123,195,.08);
    border: 1px solid rgba(31,123,195,.2);
    border-radius: 50px;
    padding: 0.4rem 0.95rem;
}
.nav-links .nav-grants:hover {
    background: rgba(31,123,195,.14);
    color: var(--clr-blue);
}

/* Hamburger button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none;
    cursor: pointer; padding: 0.5rem;
    border-radius: var(--rad-sm);
    transition: background var(--trans);
    flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(41,35,92,.06); }
.nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--clr-plum); border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.2s ease, transform 0.28s ease;
}
/* Animated X when open */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    padding: 0.5rem 2rem 1.5rem;
    box-shadow: 0 12px 32px rgba(41,35,92,.12);
    animation: navDown 0.22s ease-out;
}
.nav-mobile.open { display: flex; }
@keyframes navDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile a {
    font-size: 0.95rem; font-weight: 700;
    color: var(--clr-plum);
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--clr-border);
    text-decoration: none;
    transition: color var(--trans);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover        { color: var(--clr-pink); }
.nav-mobile a.active       { color: var(--clr-pink); }
/* Pink CTA at bottom of mobile menu */
.nav-mobile-cta {
    display: block !important;
    margin-top: 1rem;
    text-align: center;
    background: var(--clr-pink) !important;
    color: #fff !important;
    border-radius: var(--rad-pill) !important;
    padding: 0.9rem 1.5rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: none !important;
    transition: background var(--trans) !important;
}
.nav-mobile-cta:hover { background: var(--clr-plum) !important; color: #fff !important; }

/* Responsive breakpoints */
@media only screen and (max-width: 900px) {
    .nav-links    { display: none; }
    .nav-hamburger { display: flex; }
    .nav-wrap     { padding: 0 1.5rem; }
}
@media only screen and (max-width: 640px) {
    .nav-wrap  { height: 60px; }
    .nav-mobile { padding: 0.5rem 1.25rem 1.25rem; }
}

/* ════════════════════════════════════════════════════════════
   7. CREDIBILITY STRIP
════════════════════════════════════════════════════════════ */
#cred-strip {
    background-color: var(--clr-blue-dark);
    color: rgba(255,255,255,0.85);
    font-size: 16px; font-weight: 700;
    text-align: center;
    padding: 0.85rem 2rem;
    line-height: 1.6; letter-spacing: 0.03em;
    position: relative;
}
#cred-strip::before {
    content: '';
    display: block;
    position: absolute; top: -28px; left: 0; right: 0; height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 30' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C360,0 1080,0 1440,30 L1440,30 L0,30Z' fill='%231A2A3A'/%3E%3C/svg%3E") no-repeat center bottom / 100% 100%;
    pointer-events: none;
}
.cred-items { display: inline-flex; flex-wrap: wrap; gap: 0 0.5rem; align-items: center; justify-content: center; }
.cred-dot   { color: var(--clr-pink); font-size: 1.1em; padding: 0 0.25rem; }

/* ════════════════════════════════════════════════════════════
   8. HERO / WIZARD
════════════════════════════════════════════════════════════ */
#wizard {
    display: block; width: 100%;
    background: url(/pages/slcie/img/slcie_hero_2.jpg) no-repeat top  left;
    background-size: cover;
    min-height: 700px;
}
#wizard .container { padding-left: 0; padding-right: 0; }

.whitebox {
    height: auto; width: 665px; max-width: 100%;
    border-radius: var(--rad-lg);
    background-color: rgba(255,255,255,0.95);
    margin-top: 4rem; margin-bottom: 4rem;
    padding: 2rem 0 2.25rem 0;
    float: right;
}
#wizard .whitebox h1 {
    width: 597px; color: var(--clr-plum) !important; max-width: 100%;
    font-size: 2.6rem; font-weight: 900;
    line-height: 1.2; padding-top: 0.25rem; margin-bottom: 0.85rem;
}
#wizard .whitebox h1 span { color: var(--clr-blue); }
#wizard .whitebox h5 {
    width: 565px; color: var(--clr-plum-mid); max-width: 100%;
    font-size: 1.0em; font-weight: 600; line-height: 1.5; margin-bottom: 0.5rem;
}

/* Hero bullets — CSS tick, no bg-image */
#wizard .whitebox .hero-bullets { list-style: none !important; padding: 0; margin: 0.75rem 0 1.5rem; }
#wizard .whitebox .hero-bullets li {
    list-style: none !important;
    font-size: 0.9em; font-weight: 600; color: var(--clr-plum);
    padding: 0.3rem 0 0.3rem 1.75rem;
    position: relative; line-height: 1.4;
}
#wizard .whitebox .hero-bullets li::before {
    content: '\2713';
    position: absolute; left: 0; top: 0.3rem;
    width: 18px; height: 18px;
    background: var(--clr-pink); color: var(--clr-white);
    border-radius: 50%; font-size: 0.65em; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    line-height: 18px; text-align: center;
}

/* Mobile hero image */
.mobbg { display: none; }
.mobbg img { width: 100%; object-fit: cover; max-height: 215px; object-position: center; }

/* ════════════════════════════════════════════════════════════
   9. ABOUT SECTION
════════════════════════════════════════════════════════════ */
#about {
    background: var(--clr-offwhite);
    padding: 9.1rem 0 5rem;
}
#about h2 { font-size: 1.7em; font-weight: 800; color: var(--clr-plum); padding-bottom: 1.5rem; }
#about p  { font-size: 1.0em; font-weight: 500; line-height: 1.5em; color: var(--clr-plum); padding-bottom: 2.5rem; }

.about-stat-card {
    background: var(--clr-white);
    border-radius: var(--rad-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    display: flex; max-width: 320px; width: 100%; margin: 1rem auto;    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.about-stat-num {
    display: block;
    font-size: clamp(2.8rem,5vw,4rem);
    font-weight: 900; color: var(--clr-pink); line-height: 1; margin-bottom: 0.6rem;
}
.about-stat-label {
    font-size: 1.0em; font-weight: 600; color: var(--clr-plum); line-height: 1.5; margin: 0; padding: 0;
    padding: 0 !important;
    text-wrap-style: pretty;

}

/* ════════════════════════════════════════════════════════════
   10. GRANT SECTION
════════════════════════════════════════════════════════════ */
#grant-ie {
    background-color: var(--clr-gold-bg);
    border-top: 3px solid var(--clr-gold);
    border-bottom: 3px solid var(--clr-gold);
    padding: var(--sp-lg) 0;
}
.grant-grid {
    display: grid; grid-template-columns: 1fr 2fr 1fr;
    gap: 2.5rem; align-items: center;
}
.grant-stat { text-align: center; }
.grant-num {
    font-size: 4.5rem; font-weight: 900; color: var(--clr-gold);
    line-height: 1; display: block;
}
.grant-num-label {
    font-size: 1.0rem; font-weight: 800; color: var(--clr-plum);
    text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-top: 0.25rem;
}
.grant-num-sub { font-size: 0.82rem; font-weight: 500; color: #7A6500; margin-top: 0.3rem; display: block; }
.grant-body h3 { font-size: 1.6rem; font-weight: 900; color: var(--clr-plum); margin-bottom: 0.85rem; line-height: 1.25; }
.grant-body p  { font-size: 0.95rem; font-weight: 500; color: #3A2800; line-height: 1.65; margin-bottom: 1.1rem; }
.grant-pills   { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.grant-pill {
    background: rgba(200,134,10,0.15); border: 1px solid var(--clr-gold);
    color: #7A4F00; border-radius: var(--rad-pill); padding: 0.3rem 0.85rem;
    font-size: 0.78rem; font-weight: 700;
}
.grant-cta       { text-align: center; }
.grant-cta-note  { font-size: 0.78em; color: #7A4F00; margin-top: 0.75rem; font-weight: 500; line-height: 1.5; }

/* ════════════════════════════════════════════════════════════
   11. MICK'S STORY STRIP
════════════════════════════════════════════════════════════ */
#MainVideo { position: relative; overflow: hidden; }
.mick-strip-bg {
    background: #1a1a2e url(/pages/slcuk/Mick-strip.png) no-repeat right center;
    background-size: auto 100%;
    min-height: 460px; padding: var(--sp-lg) 0;
}
.mick-inner { display: flex; align-items: center; gap: 0; }
.mick-copy  { flex: 0 0 52%; max-width: 540px; z-index: 2; padding-right: var(--sp-sm); }
.mick-photo { flex: 1; align-self: stretch; margin-left: -2rem; }

.mick-quote {
    font-size: clamp(1.6rem,3.5vw,2.6rem);
    font-weight: 900; color: var(--clr-white);
    font-style: italic; line-height: 1.25; margin-bottom: 1.25rem;
}
.mick-body {
    font-size: 1.0em; font-weight: 500; color: rgba(255,255,255,0.82);
    line-height: 1.7; margin-bottom: 1.75rem; padding: 0;
}
.mick-btns { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: var(--sp-sm); }
.mick-price-btn {
    width: auto !important; background-image: none !important;
    padding: 0.95rem 2rem !important; border-radius: var(--rad-xl) !important;
    height: auto !important; margin-top: 0 !important; font-size: 0.95rem !important;
}
.mick-footnote {
    display: block; font-size: 0.75em; font-style: italic;
    color: rgba(255,255,255,0.4); margin-top: 0.5rem; line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   12. VIDEO POPUP MODAL
════════════════════════════════════════════════════════════ */
#videoModal {
    display: none; position: fixed; inset: 0;
    z-index: 99999; align-items: center; justify-content: center;
}
#videoModal.open { display: flex; }
.vm-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.82); cursor: pointer;
}
.vm-panel {
    position: relative; z-index: 2; background: #000;
    border-radius: var(--rad-md); overflow: hidden;
    width: 90vw; max-width: 860px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    animation: vmIn 0.28s cubic-bezier(.22,1,.36,1);
}
.vm-close {
    position: absolute; top: 10px; right: 12px;
    background: rgba(255,255,255,0.15); border: none; color: var(--clr-white);
    width: 32px; height: 32px; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer; z-index: 3;
    transition: background var(--trans);
    display: flex; align-items: center; justify-content: center;
}
.vm-close:hover { background: rgba(255,255,255,0.3); }
.vm-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; }
.vm-video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; background: #000; }

/* ════════════════════════════════════════════════════════════
   13. BUY WITH CONFIDENCE
════════════════════════════════════════════════════════════ */
#BuyWithConfidence { background: var(--clr-offwhite); padding: var(--sp-lg) 0; }
#WouldRecommend { /* inherits BuyWithConfidence background */ }

.bwc-top      { display: flex; align-items: flex-start; gap: var(--sp-md); margin-bottom: var(--sp-md); flex-wrap: wrap; }
.bwc-copy     { flex: 1; min-width: 280px; }
.bwc-badge    { flex-shrink: 0; }
.bwc-badge img { max-width: 240px; width: 100%; }

.bwc-heading     { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 900; color: var(--clr-plum); margin-bottom: 0.75rem; }
.bwc-intro-bold  { font-size: 1.0em; font-weight: 700; color: var(--clr-plum); margin-bottom: 0.5rem; }
.bwc-intro       { font-size: 0.95em; font-weight: 500; color: var(--clr-plum); line-height: 1.65; margin-bottom: var(--sp-sm); }
.bwc-score       { font-size: clamp(1.1rem,2.5vw,1.6rem); font-weight: 900; color: var(--clr-plum); line-height: 1.3; }
.bwc-score-blue  { color: var(--clr-blue); }

.bwc-check { font-size: 0.88em; font-weight: 700; color: var(--clr-plum); padding-left: 1.4rem; position: relative; }
.bwc-check::before { content: '\2713'; position: absolute; left: 0; color: var(--clr-pink); font-weight: 900; }
.bwc-checks { display: flex; flex-wrap: wrap; gap: 0.75rem; padding: 1.5rem 0 2rem; justify-content: center; }

.ReviewHub  { width: 100%; max-width: 100%; margin: 0 auto; background: var(--clr-white); }
.ReviewHeader {
    width: 100%; padding: 10px 0; background: var(--clr-plum);
    min-height: 43px; margin-bottom: var(--sp-sm);
}
.ReviewHeader h4 { color: var(--clr-white); font-weight: 600; font-size: 18px; line-height: 25px; }
.ReviewHeader h5 { color: var(--clr-white); font-weight: 600; font-size: 18px; line-height: 25px; text-align: right; }
.ReviewHeader .columns { padding-left: 0.6rem; padding-right: 0.6rem; }
.ReviewScoreContent { padding: 1.5rem 0.6rem 2rem; }
.ReviewScoreContent h6 { font-weight: 400; line-height: 1.4; font-size: 18px; color: var(--clr-plum); margin-bottom: 0.3rem; }
.ReviewScoreContent h3 { font-size: 40px; font-weight: 900; line-height: 58px; color: var(--clr-blue); }
.ReviewScoreGrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem 2rem; }

.stars-gold      { background: transparent url(/pages/slcuk/images/general/NewNoFillStar.png) top left; width: 100px; height: 18px; display: inline-block; margin-top: 5px; position: relative; }
.stars-gold span { background: transparent url(/pages/slcuk/images/general/NewReviewStars.png) top left; background-size: 102px; height: 18px; display: block; }

/* ════════════════════════════════════════════════════════════
   14. OUR PROMISE
════════════════════════════════════════════════════════════ */
#promise { background-color: var(--clr-blue); color: var(--clr-white); padding: 4.7rem 0; }
#promise h3 { font-size: 3.1em; font-weight: 500; padding-bottom: 1.5rem; }
#promise p  { font-weight: 500; line-height: 1.5em; padding-bottom: 1.5rem; }
#promise p.bold { font-weight: 700; }
#promise ul { padding-top: 3rem; }
#promise ul li {
    background: transparent url(/pages/slcuk/images/general/tick-circle-white.png) no-repeat left center;
    list-style: none; padding: 1rem 0 1rem 3rem; font-size: 1.5em; font-weight: 800;
}

/* ════════════════════════════════════════════════════════════
   15. PRICE TABLE
════════════════════════════════════════════════════════════ */
#price-table { background: var(--clr-white); padding: var(--sp-xl) 0; border-top: 1px solid var(--clr-border); }

.pt-header       { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.pt-header h2    { font-size: 2.0em; font-weight: 900; color: var(--clr-plum); margin-bottom: 0.5rem; }
.pt-header p     { font-size: 1.0em; font-weight: 500; color: #555; line-height: 1.6; }
.pt-grid         { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); max-width: 860px; margin: 0 auto; }
.pt-disclaimer   { text-align: center; font-size: 0.82em; color: #888; font-weight: 500; margin-top: 1.75rem; line-height: 1.6; }
.pt-cta-wrap     { text-align: center; margin-top: var(--sp-md); }

.pt-card { border: 2px solid var(--clr-border); border-radius: var(--rad-lg); overflow: hidden; background: var(--clr-white); transition: box-shadow var(--trans), transform var(--trans); }
.pt-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pt-card.featured { border-color: var(--clr-blue); }

.pt-card-header              { background: var(--clr-plum); color: var(--clr-white); padding: 1.25rem 1.5rem; text-align: center; }
.pt-card.featured .pt-card-header { background: var(--clr-blue); }
.pt-type { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.7); display: block; margin-bottom: 0.2rem; }
.pt-card-header h3           { font-size: 1.3rem; font-weight: 900; color: var(--clr-white); margin: 0; }
.pt-card-body                { padding: 1.5rem; }
.pt-price     { font-size: 2.2rem; font-weight: 900; color: var(--clr-plum); display: block; margin-bottom: 0.2rem; text-align: center; }
.pt-price-sub { font-size: 0.82rem; font-weight: 600; color: #888; text-align: center; display: block; margin-bottom: 1.25rem; }
.pt-features  { list-style: none; padding: 0; margin: 0; }
.pt-features li {
    font-size: 0.875rem; font-weight: 600; color: var(--clr-plum);
    padding: 0.45rem 0 0.45rem 1.7rem;
    border-bottom: 1px solid #F0EDE8;
    background: transparent url(/pages/slcuk/images/general/bg-tick.png) no-repeat left center;
    background-size: 14px;
}
.pt-features li:last-child { border-bottom: none; }
.pt-grant-note {
    font-size: 0.78rem; font-weight: 700; color: var(--clr-gold);
    background: rgba(200,134,10,0.1); border: 1px solid rgba(200,134,10,0.3);
    border-radius: var(--rad-sm); padding: 0.6rem 0.85rem; margin-top: var(--sp-sm); text-align: center;
}

/* ════════════════════════════════════════════════════════════
   16. HOW IT WORKS
════════════════════════════════════════════════════════════ */
#how-it-works { background: var(--clr-offwhite); padding: var(--sp-xl) 0; }
.hiw-header          { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.hiw-header h2       { font-size: 2.0em; font-weight: 900; color: var(--clr-plum); margin-bottom: 0.5rem; }
.hiw-header p        { font-size: 1.0em; font-weight: 500; color: #555; line-height: 1.6; }
.hiw-header + .hiw-cta { text-align: center; margin-top: 3rem; }
.hiw-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); max-width: 1000px; margin: 0 auto; }
.hiw-cta  { text-align: center; margin-top: 3rem; }

.hiw-card {
    background: var(--clr-white); border-radius: var(--rad-md);
    padding: 2rem 1.5rem 1.75rem; text-align: center;
    position: relative; border: 1px solid #E0D8EC;
    box-shadow: var(--shadow-sm);
}
.hiw-num {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--clr-pink); color: var(--clr-white);
    font-size: 0.9rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(213,49,123,0.4);
}
.hiw-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--clr-plum); margin-bottom: 0.6rem; }
.hiw-card p  { font-size: 0.875rem; font-weight: 500; color: #555; line-height: 1.65; margin: 0; }

/* ════════════════════════════════════════════════════════════
   17. DID YOU KNOW
════════════════════════════════════════════════════════════ */
#did-you-know {
    background: var(--clr-blue) url(/pages/slcuk/images/template/bg-did-you-know-blue.jpg) no-repeat top center;
    background-size: cover; padding-top: 10rem; color: var(--clr-white); min-height: 761px;
}
#did-you-know h2 { font-size: 1.8rem; font-weight: 600; padding-bottom: 1.5rem; }
#did-you-know p  { padding-bottom: 1.7rem; line-height: 1.5em; font-size: 1.0em; font-weight: 500; }
#did-you-know p span.question { font-weight: 700; }
#did-you-know h3 { font-size: 3.0rem; font-weight: 900; }
#did-you-know h3 span.pink { color: var(--clr-pink); }

/* ════════════════════════════════════════════════════════════
   18. FAQ ACCORDION
════════════════════════════════════════════════════════════ */
#faq-section { background: var(--clr-white); padding: var(--sp-xl) 0; border-top: 1px solid var(--clr-border); }
.faq-header         { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.faq-header h2      { font-size: 2.0em; font-weight: 900; color: var(--clr-plum); margin-bottom: 0.5rem; }
.faq-header p       { font-size: 1.0em; color: #555; font-weight: 500; }
.faq-list           { max-width: 860px; margin: 0 auto; }
.faq-item           { border: 1px solid var(--clr-border); border-radius: var(--rad-md); margin-bottom: 0.6rem; background: var(--clr-white); overflow: hidden; }
.faq-question {
    width: 100%; background: none; border: none; padding: 1.1rem 1.4rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.95rem; font-weight: 700; color: var(--clr-plum);
    cursor: pointer; text-align: left; transition: background var(--trans); gap: var(--sp-sm);
}
.faq-question:hover { background: #FAF8FF; }
.faq-icon {
    width: 24px; height: 24px; border-radius: 50%; border: 2px solid #E0D8EC;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.1rem; color: var(--clr-plum);
    transition: background var(--trans), border-color var(--trans), transform var(--trans); line-height: 1;
}
.faq-item.open .faq-icon  { background: var(--clr-pink); border-color: var(--clr-pink); color: var(--clr-white); transform: rotate(45deg); }
.faq-answer               { display: none; padding: 0 1.4rem 1.2rem; font-size: 0.9rem; color: var(--clr-text-mid); line-height: 1.7; font-weight: 500; }
.faq-item.open .faq-answer{ display: block; }
.faq-badge-ie {
    display: inline-block; font-size: 0.65rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    background: rgba(200,134,10,0.15); color: #7A4F00;
    border: 1px solid rgba(200,134,10,0.35); border-radius: var(--rad-pill);
    padding: 0.15rem 0.6rem; margin-right: 0.5rem; vertical-align: middle; white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════
   19. FINAL CTA FORM — SECTION 17
════════════════════════════════════════════════════════════ */
#final-cta-ie { background: var(--clr-blue); padding: var(--sp-xl) 0; }

.fcta-inner {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 3rem; align-items: center;
}
.fcta-text h2 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 900; color: var(--clr-white); margin-bottom: 0.75rem; line-height: 1.2; }
.fcta-text p  { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }

.fcta-fields    { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: var(--sp-sm); }
.fcta-field     { display: flex; flex-direction: column; gap: 0.3rem; }
.fcta-field label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }

.fcta-input {
    width: 100%; padding: 0.9rem var(--sp-sm);
    border: 2px solid rgba(255,255,255,0.3); border-radius: var(--rad-sm);
    background: rgba(255,255,255,0.15);
    font-size: 0.95rem; font-weight: 500; color: var(--clr-white);
    outline: none; transition: border-color var(--trans), background var(--trans);
    -webkit-appearance: none;
}
.fcta-input::placeholder { color: rgba(255,255,255,0.5); }
.fcta-input:focus { border-color: var(--clr-white); background: rgba(255,255,255,0.25); }

.fcta-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right var(--sp-sm) center;
    padding-right: 2.5rem; cursor: pointer;
}
.fcta-select option { color: var(--clr-plum); background: var(--clr-white); }

.fcta-err { font-size: 0.75rem; font-weight: 700; color: #ffb3b3; margin-top: 0.1rem; }

.fcta-submit-row { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start; }
.fcta-btn {
    display: inline-block; background: var(--clr-pink); color: var(--clr-white) !important;
    font-size: 1.05rem; font-weight: 900;
    padding: var(--sp-sm) 2.25rem; border: 0; border-radius: var(--rad-pill);
    text-transform: uppercase; letter-spacing: 0.04em;
    cursor: pointer; width: 100%;
    transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
    animation: heroPulse 2.2s ease-out infinite;
}
.fcta-btn:hover { background: var(--clr-white); color: var(--clr-plum) !important; animation: none; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,255,0.2); }
.fcta-microcopy { font-size: 0.73rem; font-weight: 600; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ════════════════════════════════════════════════════════════
   20. FOOTER
════════════════════════════════════════════════════════════ */
footer,
#footer    { padding-top: var(--sp-xl); padding-bottom: var(--sp-xl); background-color: var(--clr-plum); color: var(--clr-white); }
footer h4,
#footer h4 { font-size: 1.3em; font-weight: 700; padding-bottom: var(--sp-sm); }
footer p,
#footer p  { font-size: 0.9em; padding-bottom: 0.5rem; }
footer a,
#footer a  { color: var(--clr-white); font-weight: 500; margin-right: var(--sp-sm); text-decoration: none; font-size: 14px; }
footer a:hover,
#footer a:hover { color: var(--clr-blue) !important; }
footer .contact a,
#footer .contact a { font-weight: 500; margin-right: 0; }
footer .separator,
#footer .separator { padding-top: var(--sp-md); }
.sublinks a  { margin-bottom: var(--sp-sm); display: inline-block; }
.footer-logo { display: inline-block; margin-bottom: var(--sp-sm); }

/* ════════════════════════════════════════════════════════════
   21. PRIVACY / FORMS
════════════════════════════════════════════════════════════ */
.privacycontent { display: none; }
.CheckboxZone {
    display: block; position: relative; cursor: pointer;
    user-select: none; color: white !important; font-size: 15px !important;
    margin: -0.5rem auto 1.5rem auto; padding-left: 38px; padding-top: 10px;
}
.CheckboxZone input { position: absolute; opacity: 0; cursor: pointer; }
.checkmark {
    position: absolute; top: 0; left: 0; height: 30px; width: 30px;
    background-color: white; border-radius: 4px;
    border: 1px solid #182846 !important; margin-top: 0.3rem;
}
.CheckboxZone input:checked ~ .checkmark { background-color: white; }
.checkmark:after { content: ""; position: absolute; display: none; }
.CheckboxZone input:checked ~ .checkmark:after { display: block; }
.CheckboxZone .checkmark:after { left: 10px; top: 5px; width: 6px; height: 13px; border: solid black; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ════════════════════════════════════════════════════════════
   22. USERCENTRICS OVERRIDES
════════════════════════════════════════════════════════════ */
.uc-banner-content            { background-color: var(--clr-plum) !important; }
.uc-powered-by-footer         { display: none !important; }
#uc-btn-close-main-corner-modal { display: none !important; }
#uc-btn-accept-banner {
    max-width: 100%; color: white;
    background: var(--clr-pink) !important; width: 50% !important;
    font-weight: 700; text-transform: uppercase; border: 0;
    padding: 0.2rem var(--sp-sm) !important; font-size: 22px !important;
    border-radius: 20px !important; display: inline-block;
}

/* ════════════════════════════════════════════════════════════
   23. RESPONSIVE — MOBILE FIRST OVERRIDES
════════════════════════════════════════════════════════════ */
@media only screen and (max-width: 1024px) {
    #wizard             { min-height: auto !important; background: white !important; }
    .whitebox           { border-radius: 0 !important; background: transparent; margin-top: 0; width: 100%; float: none; padding: 1.5rem 1.5rem 2rem; }
    #wizard .whitebox h1 { font-size: 2rem !important; width: 100%; }
    #wizard .whitebox h5 { width: 100%; }
    .mobbg              { display: block; }
}



@media only screen and (max-width: 950px) {
    #about             { padding: 3.1rem 0 5rem; }
    #about .medium-6   { width: 100% !important; float: none; }
    #promise .medium-6 { width: 100% !important; }
    #did-you-know .medium-6 { width: 100%; float: none; }
    #footer .medium-6  { width: 100%; float: none; }
}

@media only screen and (max-width: 900px) {
    .grant-grid        { grid-template-columns: 1fr; gap: var(--sp-md); text-align: center; }
    .grant-pills       { justify-content: center; }
    .mick-strip-bg     { background-position: center bottom; background-size: cover; min-height: auto; }
    .mick-copy         { flex: none; width: 100%; max-width: 100%; }
    .mick-photo        { display: none; }
    .bwc-badge         { width: 100%; text-align: center; }
    .bwc-badge img     { max-width: 180px; }
    .ReviewScoreGrid   { grid-template-columns: 1fr 1fr !important; }
}

@media only screen and (max-width: 760px) {
    .fcta-inner        { grid-template-columns: 1fr; gap: var(--sp-md); }
    .fcta-btn          { width: 100%; text-align: center; }
    .hiw-grid          { grid-template-columns: 1fr; max-width: 420px; }
}

@media only screen and (max-width: 650px) {
    #wizard .whitebox h1 { font-size: 1.7rem !important; line-height: 1.3; }
    .whitebox            { padding: 1.25rem 1.25rem 1.75rem; }
    #cred-strip          { font-size: 10px; padding: 0.7rem 1rem; }
    #cred-strip::before  { top: -18px; height: 20px; }
}

@media only screen and (max-width: 640px) {
    header .logo, #header .logo { width: 160px; }
    header .logo img, #header .logo img { width: 150px; }
    #about             { padding: 4.1rem 0 4rem !important; }
    #about h3          { font-size: 2em; }
    #promise           { padding: 3rem 0; }
    #promise h3        { font-size: 2em; }
    #promise ul li     { font-size: 1.2rem; }
    #uc-btn-accept-banner { width: 100% !important; max-width: 100% !important; font-size: 16px !important; }
    .pt-grid           { grid-template-columns: 1fr; }
    .pt-header h2      { font-size: 1.6em; }
}

@media only screen and (max-width: 480px) {
    #about h3 { font-size: 1.5em; }
}

/* ════════════════════════════════════════════════════════════
   24. UTILITY / HELPER CLASSES
════════════════════════════════════════════════════════════ */
.whitebox-inner     { padding: 0 2rem 2rem; }
.about-stat-col     { text-align: center; padding-top: 1rem; }
.stars-valign       { vertical-align: middle; }
.section-cta-wrap   { text-align: center; margin-top: 2rem; }

/* Star fill widths */
.stars-full { width: 100%; display: block; background: transparent url(/pages/slcuk/images/general/NewReviewStars.png) top left; background-size: 102px; height: 18px; }
.stars-9    { width: 90%;  display: block; background: transparent url(/pages/slcuk/images/general/NewReviewStars.png) top left; background-size: 102px; height: 18px; }
.stars-75   { width: 75%;  display: block; background: transparent url(/pages/slcuk/images/general/NewReviewStars.png) top left; background-size: 102px; height: 18px; }

/* ════════════════════════════════════════════════════════════
   25. PRIVACY STATEMENT — FINAL CTA SECTION
   Adapted from wizard.aspx pattern for blue (#1F7BC3) bg
════════════════════════════════════════════════════════════ */
.fcta-privacy-statement {
    font-size: 11px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    margin-top: 0.85rem;
    text-align: left;
}
.fcta-privacy-statement strong {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}
.fcta-privacylink {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: color var(--trans);
}
.fcta-privacylink:hover { color: var(--clr-white); }

/* Collapsible panel */
.fcta-privacycontent {
    display: none;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--rad-md);
    padding: 0.85rem 1rem;
    margin-top: 0.65rem;
    position: relative;
    text-align: left;
}
.fcta-lnkPrivacy2 {
    position: absolute; top: 0.5rem; right: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-size: 1rem; text-decoration: none; line-height: 1;
    transition: color var(--trans);
}
.fcta-lnkPrivacy2:hover { color: var(--clr-white); }

/* Scrollable content wrapper */
.fcta-privacycontent .privacy_wrapper {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    padding-right: 0.5rem;
    max-height: 180px;
    overflow-y: auto;
}
.fcta-privacycontent .privacy_wrapper ul { list-style: disc; padding-left: 1.2rem; }
.fcta-privacycontent .privacy_wrapper ol { list-style: decimal; padding-left: 1.2rem; }
.fcta-privacycontent .privacy_wrapper li { list-style: inherit; padding: 0; }
.fcta-privacycontent .privacy_wrapper::-webkit-scrollbar { width: 3px; }
.fcta-privacycontent .privacy_wrapper::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3); border-radius: 3px;
}
.fcta-privacycontent .privacy_wrapper a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
}
.fcta-privacycontent .privacy_wrapper p,
.fcta-privacycontent .privacy_wrapper h5 {
    color: rgba(255,255,255,0.75);
    font-size: inherit;
    margin-bottom: 0.4rem;
    padding: 0;
}

/* ════════════════════════════════════════════════════════════
   26. COMPATIBILITY ALIASES
   Maps old SLCIE variable names → new --clr-* system
   Allows external pages to use either naming convention
════════════════════════════════════════════════════════════ */
:root {
    /* Old name → new value */
    --plum:        var(--clr-plum);
    --plum-mid:    var(--clr-plum-mid);
    --pink:        var(--clr-pink);
    --blue:        var(--clr-blue);
    --gold:        var(--clr-gold);
    --gold-light:  rgba(200,134,10,0.1);
    --gold-hover:  #A06800;
    --offwhite:    var(--clr-offwhite);
    --white:       var(--clr-white);
    --border:      var(--clr-border);
    --text-mid:    var(--clr-text-mid);
    --text-dark:   #1C2D5E;
    --text-light:  #9CA3AF;
    --radius-sm:   var(--rad-sm);
    --radius-md:   var(--rad-md);
    --radius-lg:   var(--rad-lg);
    --radius-xl:   50px;
    --nav-h:       80px;
}

/* ════════════════════════════════════════════════════════════
   27. PAGE HERO — LIGHT VARIANT
   Used by: about-us, articles, contact, faqs, join-us,
            suppliers, results, details, thankyou
════════════════════════════════════════════════════════════ */
.page-hero,
.about-hero, .art-hero, .con-hero, .faq-hero,
.join-hero, .sup-hero, .results-hero, .dtl-hero {
    background: #FDFCFA;
    border-bottom: 2px solid var(--clr-border);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.page-hero::after,
.about-hero::after, .art-hero::after, .con-hero::after, .faq-hero::after,
.join-hero::after, .sup-hero::after, .results-hero::after, .dtl-hero::after {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: var(--clr-blue);
    opacity: .16;
    pointer-events: none;
}
.page-hero h1, .about-hero h1, .art-hero h1, .con-hero h1,
.faq-hero h1, .join-hero h1, .sup-hero h1 {
    color: var(--text-dark);
    margin-bottom: .5rem;
    position: relative; z-index: 2;
}
.page-hero p, .about-hero p, .art-hero p, .con-hero p,
.faq-hero p, .sup-hero p {
    color: var(--clr-text-mid);
    font-size: 1.025rem;
    max-width: 540px;
    margin: 0;
    position: relative; z-index: 2;
}
.page-eyebrow, .about-eyebrow, .art-eyebrow, .con-eyebrow,
.faq-eyebrow, .join-eyebrow, .sup-eyebrow {
    font-size: .65rem; font-weight: 800;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: .6rem;
    display: block;
    position: relative; z-index: 2;
}

/* ════════════════════════════════════════════════════════════
   28. POLICY HERO — DARK PLUM VARIANT
   Used by: cookies, privacy, terms
════════════════════════════════════════════════════════════ */
.policy-hero {
    background: linear-gradient(135deg, var(--clr-plum-mid) 0%, var(--clr-plum) 100%);
    padding: 3rem 0;
}
.policy-hero h1 { color: #fff; margin-bottom: .4rem; }
.policy-hero p  { color: rgba(255,255,255,.9); margin: 0; }

.policy-body { padding: 3rem 0 4rem; }
.policy-body h2 {
    font-size: 1.15rem; font-weight: 900; color: var(--clr-plum);
    margin: 2rem 0 .65rem; padding-top: .5rem;
    border-top: 2px solid var(--clr-border);
}
.policy-body h2:first-of-type { border-top: none; margin-top: 0; }
.policy-body h3 { font-size: .95rem; font-weight: 800; color: var(--clr-plum-mid); margin: 1.25rem 0 .4rem; }
.policy-body p  { font-size: .9rem; color: var(--clr-text-mid); line-height: 1.75; margin-bottom: .85rem; }
.policy-body ul { font-size: .9rem; color: var(--clr-text-mid); line-height: 1.75; margin: .5rem 0 .85rem 1.25rem; list-style: disc; }
.policy-body ul li { margin-bottom: .3rem; list-style: inherit; }
.policy-body a  { color: var(--clr-blue); text-decoration: underline; }
.policy-body a:hover { color: var(--clr-plum); }
.policy-body strong { color: var(--text-dark); font-weight: 700; }
.policy-clause { margin-bottom: 1.5rem; }

.policy-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .83rem; }
.policy-table th { background: var(--clr-plum); color: #fff; font-weight: 700; padding: .6rem .85rem; text-align: left; }
.policy-table td { padding: .55rem .85rem; border-bottom: 1px solid var(--clr-border); color: var(--clr-text-mid); vertical-align: top; }
.policy-table tr:nth-child(even) td { background: var(--clr-offwhite); }
.policy-table td:first-child { font-weight: 600; color: var(--text-dark); white-space: nowrap; }
.policy-table .section-row td { background: var(--clr-plum); color: #fff; font-weight: 700; font-size: .78rem; padding: .4rem .85rem; }

.cookie-type-card { background: var(--clr-offwhite); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.1rem 1.35rem; margin-bottom: .85rem; }
.cookie-type-card h3 { font-size: .92rem; font-weight: 800; color: var(--clr-plum); margin: 0 0 .35rem; }
.cookie-type-card p { margin: 0; font-size: .85rem; }

.policy-contact-box { background: var(--clr-offwhite); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.35rem 1.5rem; margin: 1.5rem 0; font-size: .88rem; }
.policy-contact-box strong { color: var(--clr-plum); display: block; margin-bottom: .35rem; font-size: .95rem; }

@media (max-width: 640px) {
    .policy-table { font-size: .77rem; }
    .policy-table td, .policy-table th { padding: .4rem .5rem; }
}

/* ════════════════════════════════════════════════════════════
   29. ARTICLE PAGE LAYOUT
   Shared by: all stairlift-*.aspx + types + new-vs-recon
════════════════════════════════════════════════════════════ */
.art-page-hero {
    background: var(--clr-offwhite);
    border-bottom: 2px solid var(--clr-border);
    padding: 2.75rem 0;
    position: relative; overflow: hidden;
}
.art-page-hero::after {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 260px; height: 260px; border-radius: 50%;
    background: var(--clr-gold); opacity: .06; pointer-events: none;
}
.art-page-hero-img { position: absolute; inset: 0; z-index: 0; }
.art-page-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; opacity: .22; }
.art-page-hero-inner { position: relative; z-index: 2; }
.art-page-eyebrow { font-size: .62rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--clr-gold); display: block; margin-bottom: .5rem; }
.art-page-hero h1 { color: var(--text-dark); font-size: clamp(1.5rem,3vw,2.1rem); margin-bottom: .5rem; }
.art-page-hero p  { color: var(--clr-text-mid); font-size: .975rem; max-width: 580px; margin: 0; }

.art-breadcrumb { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; color: var(--clr-text-mid); margin-bottom: 1rem; text-decoration: none; transition: color .2s; }
.art-breadcrumb:hover { color: var(--clr-gold); }
.art-breadcrumb svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }

.art-page-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; padding: 3rem 0; align-items: start; }

.art-body { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 2.25rem 2.5rem; }
.art-body h2 { font-size: 1.25rem; font-weight: 900; color: var(--clr-plum); margin: 2rem 0 .75rem; padding-bottom: .4rem; border-bottom: 2px solid rgba(200,134,10,.2); }
.art-body h2:first-child { margin-top: 0; }
.art-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--clr-plum); margin: 1.5rem 0 .6rem; }
.art-body p { font-size: .95rem; color: var(--clr-text-mid); line-height: 1.75; margin-bottom: 1rem; }
.art-body p:last-child { margin-bottom: 0; }
.art-body ul, .art-body ol { margin: .75rem 0 1rem 1.25rem; }
.art-body ul { list-style: disc; }
.art-body ol { list-style: decimal; }
.art-body li { font-size: .95rem; color: var(--clr-text-mid); line-height: 1.7; margin-bottom: .4rem; list-style: inherit; }
.art-body strong { color: var(--text-dark); font-weight: 700; }
.art-body a { color: var(--clr-blue); text-decoration: underline; }

.art-callout { background: rgba(200,134,10,.1); border: 2px solid var(--clr-gold); border-radius: var(--rad-lg); padding: 1.25rem 1.5rem; margin: 1.75rem 0; }
.art-callout p { margin: 0; font-size: .925rem; color: var(--text-dark); }
.art-callout strong { color: var(--clr-plum); }

.art-table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .9rem; }
.art-table th { background: var(--clr-plum); color: #fff; text-align: left; padding: .65rem 1rem; font-weight: 700; font-size: .82rem; }
.art-table td { padding: .6rem 1rem; border-bottom: 1px solid var(--clr-border); color: var(--clr-text-mid); }
.art-table tr:last-child td { border-bottom: none; }
.art-table tr:nth-child(even) td { background: var(--clr-offwhite); }

/* Article sidebar */
.art-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); display: flex; flex-direction: column; gap: 1.25rem; }
.art-sb-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.35rem; }
.art-sb-card h4 { font-size: .9rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .85rem; }
.art-sb-card p { font-size: .82rem; color: var(--clr-text-mid); margin-bottom: .85rem; line-height: 1.55; padding: 0; }
.art-sb-card.plum { background: var(--clr-offwhite); }
.art-sb-card.plum h4 { color: var(--clr-gold); }
.art-sb-card.plum p { color: var(--clr-text-mid) !important; }
.art-sb-link { display: block; font-size: .85rem; font-weight: 600; color: var(--clr-text-mid); padding: .4rem 0; border-bottom: .5px solid var(--clr-border); text-decoration: none; transition: color .2s; }
.art-sb-link:last-child { border-bottom: none; }
.art-sb-link:hover { color: var(--clr-plum); }

/* Mobile sticky CTA (article pages) */
.art-sticky-cta { display: none; }
@media (max-width: 760px) {
    .art-sticky-cta {
        display: flex; position: fixed; left: 12px; right: 12px; bottom: 12px;
        z-index: 900; background: #fff; border: 1px solid var(--clr-border);
        box-shadow: var(--shadow-lg); border-radius: 999px;
        padding: .55rem .65rem .55rem 1.1rem;
        align-items: center; justify-content: space-between; gap: .75rem;
    }
    .art-sticky-cta-txt { font-size: .82rem; font-weight: 800; color: var(--text-dark); line-height: 1.2; }
    body { padding-bottom: 80px; }
}

@media (max-width: 900px) { .art-page-layout { grid-template-columns: 1fr; } .art-sidebar { position: static; } }
@media (max-width: 540px) { .art-body { padding: 1.5rem 1.25rem; } }

/* ════════════════════════════════════════════════════════════
   30. SHARED FORM FIELDS
   Used by: contact, join-us
════════════════════════════════════════════════════════════ */
.field-group { margin-bottom: 1rem; }
.field-group label { display: block; font-size: .8rem; font-weight: 800; color: var(--clr-plum); margin-bottom: .35rem; }
.field-group input,
.field-group select,
.field-group textarea {
    width: 100%; padding: .8rem 1rem;
    border: 2px solid var(--clr-border); border-radius: var(--rad-md);
    font-family: var(--font); font-size: .9rem; font-weight: 600;
    color: var(--text-dark); background: var(--clr-white);
    transition: border-color .2s, box-shadow .2s; outline: none; appearance: none;
}
.field-group input:focus, .field-group select:focus, .field-group textarea:focus {
    border-color: var(--clr-plum);
    box-shadow: 0 0 0 3px rgba(41,35,92,.1);
}
.field-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.field-error { display: none; font-size: .75rem; font-weight: 700; color: #e53e3e; margin-top: .25rem; }
.field-error.show { display: block; }
.hidden-input { display: none !important; }

/* ════════════════════════════════════════════════════════════
   31. SECTION LABELS & EYEBROWS (shared)
════════════════════════════════════════════════════════════ */
.section-eyebrow,
.section-label {
    display: inline-block; font-size: .68rem; font-weight: 800;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--clr-gold); background: rgba(200,134,10,.1);
    padding: .3rem .9rem; border-radius: 50px; margin-bottom: .75rem;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto; }

/* ════════════════════════════════════════════════════════════
   32. ABOUT US PAGE
════════════════════════════════════════════════════════════ */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin: 3rem 0; }
.stat-box { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.5rem; text-align: center; }
.stat-box-num { font-size: 2rem; font-weight: 900; color: var(--clr-plum); line-height: 1; margin-bottom: .3rem; }
.stat-box-num span { color: var(--clr-gold); }
.stat-box-label { font-size: .8rem; font-weight: 600; color: var(--clr-text-mid); line-height: 1.3; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin: 3rem 0; }
.about-grid img { width: 100%; border-radius: var(--rad-xl); }
.about-trust-panel { background: linear-gradient(135deg, #FDFCFA 0%, #F0EDE8 100%); border: 1px solid var(--clr-border); border-radius: var(--rad-xl); padding: 2.25rem; position: relative; }
.about-trust-panel .atp-icon { width: 64px; height: 64px; border-radius: 16px; background: #fff; border: 1px solid var(--clr-border); display: flex; align-items: center; justify-content: center; color: var(--clr-gold); margin-bottom: 1.25rem; }
.about-trust-panel h3 { font-size: 1.15rem; font-weight: 900; color: var(--text-dark); margin-bottom: .5rem; }
.about-trust-panel > p { font-size: .9rem; color: var(--clr-text-mid); line-height: 1.65; margin: 0 0 1.25rem; }
.atp-list { list-style: none !important; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.atp-list li { display: flex; align-items: center; gap: .6rem; font-size: .85rem; font-weight: 700; color: var(--text-dark); list-style: none !important; }
.atp-list li svg { color: var(--clr-gold); flex-shrink: 0; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.75rem; }
.value-icon { width: 48px; height: 48px; border-radius: var(--rad-md); background: rgba(200,134,10,.1); border: 1px solid rgba(213,49,123,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--clr-gold); }
.value-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-card h4 { font-size: 1rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .5rem; }
.value-card p  { font-size: .875rem; color: var(--clr-text-mid); margin: 0; line-height: 1.65; padding: 0; }
@media (max-width: 860px) { .stats-row { grid-template-columns: 1fr 1fr; } .about-grid { grid-template-columns: 1fr; } .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .value-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   33. ARTICLES PAGE
════════════════════════════════════════════════════════════ */
.art-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; padding: 3rem 0; align-items: start; }
.art-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.art-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); overflow: hidden; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.art-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.art-card-img { height: 200px; flex-shrink: 0; overflow: hidden; position: relative; }
.art-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .4s ease; }
.art-card:hover .art-card-img img { transform: scale(1.04); }
.art-card-img--grants  { background: linear-gradient(135deg, var(--clr-plum) 0%, #3D3587 100%); }
.art-card-img--costs   { background: linear-gradient(135deg, #1a3a6a 0%, #2a5aa0 100%); }
.art-card-img--types   { background: linear-gradient(135deg, #1a4a38 0%, #2a7a58 100%); }
.art-card-img--install { background: linear-gradient(135deg, #4a2a1a 0%, #8a4a28 100%); }
.art-card-img--vat     { background: linear-gradient(135deg, #3a1a1a 0%, #6a2a2a 100%); }
.art-card-img--recon   { background: linear-gradient(135deg, #1a3a4a 0%, #2a5a6a 100%); }
.art-img-label { position: absolute; bottom: 12px; left: 12px; background: rgba(213,49,123,.92); color: #fff; font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: .28rem .75rem; border-radius: 20px; }
.art-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.art-category { font-size: .62rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-hover); background: rgba(200,134,10,.1); padding: .2rem .7rem; border-radius: 20px; display: inline-block; margin-bottom: .65rem; }
.art-card h3 { font-size: 1rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .5rem; line-height: 1.3; }
.art-card p  { font-size: .85rem; color: var(--clr-text-mid); line-height: 1.6; flex: 1; margin-bottom: .85rem; padding: 0; }
.art-meta { display: flex; align-items: center; gap: .5rem; font-size: .72rem; color: var(--text-light); margin-top: auto; }
.art-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--clr-border); }
.art-read-link { font-size: .82rem; font-weight: 700; color: var(--clr-plum); text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; transition: color .2s; }
.art-read-link:hover { color: var(--gold-hover); }
.art-sidebar-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.35rem; }
.art-sidebar-card h4 { font-size: .9rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .85rem; }
.sidebar-link { display: block; font-size: .85rem; font-weight: 600; color: var(--clr-text-mid); padding: .4rem 0; border-bottom: .5px solid var(--clr-border); text-decoration: none; transition: color .2s; }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--clr-plum); }
.art-empty { text-align: center; padding: 3rem 1rem; color: var(--clr-text-mid); }
.art-empty h3 { color: var(--clr-plum); margin-bottom: .5rem; }
@media (max-width: 900px) { .art-layout { grid-template-columns: 1fr; } .art-sidebar { position: static; } }
@media (max-width: 640px) { .art-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   34. CONTACT PAGE
════════════════════════════════════════════════════════════ */
.con-hero { padding: 3rem 0; }
.con-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; padding: 3rem 0; align-items: start; }
.con-form-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-xl); padding: 2rem; }
.con-form-card h2 { font-size: 1.25rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .4rem; }
.con-form-card .con-sub { font-size: .875rem; color: var(--clr-text-mid); margin-bottom: 1.5rem; }
.con-success { display: none; align-items: center; gap: .75rem; background: #e8f5e8; border: 1px solid #a3d4a3; border-radius: var(--rad-md); padding: 1rem 1.25rem; font-size: .9rem; font-weight: 700; color: #2d6a2d; margin-bottom: 1.25rem; }
.con-success.show { display: flex; }
.con-sidebar { display: flex; flex-direction: column; gap: 1.25rem; padding-top: .5rem; }
.con-info-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.5rem; }
.con-info-card h3 { font-size: .95rem; font-weight: 900; color: var(--clr-plum); margin-bottom: 1rem; }
.con-info-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .85rem; }
.con-info-item:last-child { margin-bottom: 0; }
.con-info-icon { width: 36px; height: 36px; border-radius: var(--rad-sm); background: rgba(200,134,10,.1); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.con-info-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-bottom: .15rem; }
.con-info-value { font-size: .875rem; font-weight: 700; color: var(--clr-plum); }
@media (max-width: 860px) { .con-layout { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   35. FAQ PAGE
════════════════════════════════════════════════════════════ */
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; align-items: start; padding: 3rem 0; }
.faq-nav { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.faq-nav-title { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: var(--text-light); margin-bottom: .75rem; }
.faq-nav a { display: block; font-size: .875rem; font-weight: 700; color: var(--clr-text-mid); padding: .4rem .75rem; border-left: 2px solid var(--clr-border); margin-bottom: .25rem; text-decoration: none; transition: color .2s, border-color .2s; }
.faq-nav a:hover, .faq-nav a.active { color: var(--clr-plum); border-left-color: var(--clr-gold); }
.faq-group { margin-bottom: 3rem; }
.faq-group-title { font-size: 1.15rem; font-weight: 900; color: var(--clr-plum); margin-bottom: 1.25rem; padding-bottom: .6rem; border-bottom: 2px solid rgba(200,134,10,.2); display: flex; align-items: center; gap: .6rem; }
.faq-group-icon { width: 32px; height: 32px; border-radius: var(--rad-sm); background: rgba(200,134,10,.1); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
/* Note: .faq-item, .faq-question, .faq-icon, .faq-answer already defined in Section 18 */
.faq-q { width: 100%; background: none; border: none; padding: 1.1rem 1.35rem; display: flex; justify-content: space-between; align-items: center; font-family: var(--font); font-size: .95rem; font-weight: 700; color: var(--clr-plum); cursor: pointer; text-align: left; transition: background .2s; gap: .75rem; }
.faq-q:hover { background: var(--clr-offwhite); }
.faq-item.open .faq-icon { background: var(--clr-gold); border-color: var(--clr-gold); color: #fff; }
.faq-a { display: none; padding: 0 1.35rem 1.1rem; font-size: .9rem; color: var(--clr-text-mid); line-height: 1.7; }
.faq-a p { margin-bottom: .6rem; } .faq-a p:last-child { margin-bottom: 0; }
.faq-item.open .faq-a { display: block; }
.faq-cta-banner { background: var(--clr-offwhite); border: 1px solid var(--clr-border); border-radius: var(--rad-xl); padding: 2.5rem; text-align: center; margin-top: 1rem; }
.faq-cta-banner h3 { color: var(--clr-plum); font-size: 1.2rem; font-weight: 900; margin-bottom: .6rem; }
.faq-cta-banner p  { color: var(--clr-text-mid); font-size: .9rem; margin-bottom: 1.5rem; }
@media (max-width: 800px) { .faq-layout { grid-template-columns: 1fr; } .faq-nav { position: static; } }

/* ════════════════════════════════════════════════════════════
   36. JOIN US PAGE
════════════════════════════════════════════════════════════ */
.join-hero { padding: 4rem 0; }
.join-hero-inner { position: relative; z-index: 2; }
.join-hero h1 em { color: var(--clr-gold); font-style: normal; }
.join-hero p { font-size: 1.025rem; max-width: 580px; margin-bottom: 1.5rem; }
.join-hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.join-stat { text-align: center; }
.join-stat-num   { font-size: 1.6rem; font-weight: 900; color: var(--clr-gold); line-height: 1; }
.join-stat-label { font-size: .72rem; font-weight: 600; color: var(--clr-text-mid); line-height: 1.3; }
.join-layout { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; padding: 3.5rem 0; align-items: start; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
.benefit-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.5rem; }
.benefit-icon { width: 40px; height: 40px; border-radius: var(--rad-sm); background: var(--clr-plum); display: flex; align-items: center; justify-content: center; font-size: .9rem; margin-bottom: .85rem; }
.benefit-card h4 { font-size: .95rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .4rem; }
.benefit-card p  { font-size: .85rem; color: var(--clr-text-mid); margin: 0; line-height: 1.6; padding: 0; }
.how-steps { counter-reset: steps; }
.how-step { display: flex; gap: 1rem; align-items: flex-start; padding: .85rem 0; border-bottom: .5px solid var(--clr-border); counter-increment: steps; }
.how-step:last-child { border-bottom: none; }
.how-step::before { content: counter(steps); display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--clr-gold); color: var(--clr-plum); font-size: .8rem; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.how-step-body strong { display: block; font-size: .95rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .2rem; }
.how-step-body p { font-size: .85rem; color: var(--clr-text-mid); margin: 0; padding: 0; }
.join-form-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-xl); padding: 2rem; position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.join-form-card h2 { font-size: 1.15rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .35rem; }
.join-form-card .join-sub { font-size: .85rem; color: var(--clr-text-mid); margin-bottom: 1.4rem; }
.join-success { display: none; background: #e8f5e8; border: 1px solid #a3d4a3; border-radius: var(--rad-md); padding: 1rem 1.25rem; font-size: .875rem; font-weight: 700; color: #2d6a2d; margin-bottom: 1rem; }
.join-success.show { display: block; }
.join-privacy { font-size: .7rem; color: var(--text-light); margin-top: .85rem; text-align: center; line-height: 1.5; }
.join-privacy a { color: var(--clr-plum); text-decoration: underline; }
@media (max-width: 900px) { .join-layout { grid-template-columns: 1fr; } .join-form-card { position: static; } }
@media (max-width: 560px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   37. SUPPLIERS PAGE
════════════════════════════════════════════════════════════ */
.sup-hero { padding: 3.5rem 0; }
.sup-filter-bar { background: var(--clr-white); border-bottom: 1px solid var(--clr-border); padding: .85rem 0; }
.sup-filter-inner { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.sup-filter-label { font-size: .75rem; font-weight: 800; color: var(--clr-text-mid); text-transform: uppercase; letter-spacing: .1em; margin-right: .25rem; }
.filter-chip { display: inline-flex; align-items: center; padding: .35rem .85rem; border: 1.5px solid var(--clr-border); border-radius: 50px; font-size: .8rem; font-weight: 700; color: var(--clr-text-mid); background: transparent; cursor: pointer; transition: all .2s; font-family: var(--font); }
.filter-chip:hover { border-color: var(--clr-plum); color: var(--clr-plum); }
.filter-chip.active { background: var(--clr-plum); border-color: var(--clr-plum); color: #fff; }
.sup-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem; }
.sup-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); overflow: hidden; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.sup-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sup-card-top { padding: 1.5rem 1.5rem 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.sup-logo-box { width: 110px; height: 48px; display: flex; align-items: center; }
.sup-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
.sup-logo-placeholder { width: 110px; height: 48px; background: var(--clr-offwhite); border: 1px solid var(--clr-border); border-radius: var(--rad-sm); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: var(--text-light); padding: .25rem; text-align: center; }
.sup-badges { display: flex; flex-wrap: wrap; gap: .3rem; justify-content: flex-end; }
.sup-badge { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: .15rem .6rem; border-radius: 20px; }
.b-new { background: rgba(200,134,10,.12); color: var(--gold-hover); }
.b-rec { background: #ede8f7; color: var(--clr-plum-mid); }
.b-ver { background: #e8f5e8; color: #2d6a2d; }
.sup-card-body { padding: 1rem 1.5rem; flex: 1; }
.sup-name    { font-size: 1.1rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .25rem; }
.sup-tagline { font-size: .85rem; color: var(--clr-text-mid); margin-bottom: .85rem; line-height: 1.5; }
.sup-meta-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: .85rem; }
.sup-meta-item { display: flex; flex-direction: column; }
.sup-meta-label { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-bottom: .15rem; }
.sup-meta-value { font-size: .9rem; font-weight: 900; color: var(--clr-plum); }
.sup-meta-value.gold { color: var(--gold-hover); }
.sup-stars { display: flex; gap: 2px; }
.sup-stars span { font-size: .8rem; color: var(--clr-gold); }
.sup-stars .e { color: var(--clr-border); }
.sup-counties { font-size: .78rem; color: var(--clr-text-mid); }
.sup-card-footer { padding: 0 1.5rem 1.25rem; display: flex; gap: .75rem; }
.btn-sup-cta { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .7rem 1rem; background: var(--clr-gold); color: #fff; border: 2px solid var(--clr-gold); border-radius: 50px; font-family: var(--font); font-size: .85rem; font-weight: 800; text-decoration: none; transition: background .2s, box-shadow .2s; }
.btn-sup-cta:hover { background: var(--gold-hover); border-color: var(--gold-hover); box-shadow: 0 4px 14px rgba(213,49,123,.35); }
.btn-sup-dtl { display: inline-flex; align-items: center; justify-content: center; padding: .7rem 1rem; background: transparent; color: var(--clr-plum); border: 2px solid var(--clr-border); border-radius: 50px; font-family: var(--font); font-size: .85rem; font-weight: 700; text-decoration: none; transition: border-color .2s, background .2s; white-space: nowrap; }
.btn-sup-dtl:hover { border-color: var(--clr-plum); background: var(--clr-offwhite); }
.join-banner { background: var(--clr-offwhite); border: 1px solid var(--clr-border); border-radius: var(--rad-xl); padding: 2.5rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; margin-top: 3rem; }
.join-banner h3 { color: var(--clr-plum); font-size: 1.25rem; font-weight: 900; margin-bottom: .5rem; }
.join-banner p  { color: var(--clr-text-mid); font-size: .9rem; margin: 0; }
@media (max-width: 760px) { .sup-grid { grid-template-columns: 1fr; } .join-banner { grid-template-columns: 1fr; text-align: center; } }

/* ════════════════════════════════════════════════════════════
   38. RESULTS PAGE
════════════════════════════════════════════════════════════ */
.results-hero { padding: 2.5rem 0; }
.results-hero-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.results-hero-text h1 { color: var(--text-dark); font-size: clamp(1.4rem,3vw,1.9rem); margin-bottom: .4rem; }
.results-hero-text h1 em { color: var(--clr-gold); font-style: normal; }
.results-hero-text p { color: var(--clr-text-mid); font-size: .925rem; margin: 0; }
.results-summary-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .85rem; }
.summary-chip { display: inline-flex; align-items: center; gap: .4rem; background: rgba(41,35,92,.06); border: 1px solid var(--clr-border); border-radius: 50px; padding: .3rem .85rem; font-size: .78rem; font-weight: 700; color: var(--clr-plum); }
.summary-chip.gold { background: rgba(200,134,10,.12); border-color: rgba(200,134,10,.3); color: var(--gold-hover); }
.results-trust { background: var(--clr-white); border-bottom: 1px solid var(--clr-border); padding: .85rem 0; }
.results-trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .75rem 2rem; }
.results-trust-item { display: flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 700; color: var(--clr-text-mid); }
.results-trust-item::before { content: '✓'; color: var(--gold-hover); font-weight: 900; }
.results-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; padding: 2.5rem 0; }
.results-main-heading { margin-bottom: 1.25rem; }
.results-main-heading h2 { font-size: 1.3rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .25rem; }
.results-main-heading p { font-size: .875rem; color: var(--clr-text-mid); margin: 0; }
.results-count { display: inline-flex; align-items: center; gap: .4rem; background: rgba(200,134,10,.1); border: 1px solid var(--clr-gold); border-radius: 50px; padding: .25rem .85rem; font-size: .78rem; font-weight: 800; color: var(--gold-hover); margin-bottom: 1.25rem; }
.supplier-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.supplier-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); overflow: hidden; transition: box-shadow .25s, transform .25s; }
.supplier-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.supplier-card-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem 0; gap: 1rem; }
.supplier-logo-wrap { width: 120px; height: 50px; display: flex; align-items: center; flex-shrink: 0; }
.supplier-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.supplier-logo-placeholder { width: 120px; height: 50px; background: var(--clr-offwhite); border: 1px solid var(--clr-border); border-radius: var(--rad-sm); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; color: var(--text-light); }
.supplier-badges { display: flex; flex-wrap: wrap; gap: .35rem; justify-content: flex-end; }
.supplier-badge { display: inline-block; font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .2rem .65rem; border-radius: 20px; }
.badge-new-gold  { background: rgba(200,134,10,.12); color: var(--gold-hover); }
.badge-recon-pur { background: #ede8f7; color: var(--clr-plum-mid); }
.badge-verified  { background: #e8f5e8; color: #2d6a2d; }
.supplier-card-body { padding: 1rem 1.5rem; }
.supplier-name    { font-size: 1.15rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .25rem; }
.supplier-tagline { font-size: .85rem; color: var(--clr-text-mid); margin-bottom: 1rem; line-height: 1.5; }
.supplier-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-bottom: 1.1rem; padding: .85rem; background: var(--clr-offwhite); border-radius: var(--rad-md); }
.supplier-meta-item { text-align: center; }
.supplier-meta-label { display: block; font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-bottom: .2rem; }
.supplier-meta-value { display: block; font-size: .95rem; font-weight: 900; color: var(--clr-plum); line-height: 1; }
.supplier-meta-value.gold { color: var(--gold-hover); }
.supplier-stars { display: flex; align-items: center; justify-content: center; gap: 2px; }
.supplier-stars span { font-size: .85rem; color: var(--clr-gold); }
.supplier-stars .empty { color: var(--clr-border); }
.supplier-card-footer { display: flex; align-items: center; gap: .75rem; padding: 0 1.5rem 1.25rem; flex-wrap: wrap; }
.btn-request { flex: 1; min-width: 140px; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .75rem 1.25rem; background: var(--clr-gold); color: var(--clr-plum); border: 2px solid var(--clr-gold); border-radius: 50px; font-family: var(--font); font-size: .875rem; font-weight: 800; cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s; text-decoration: none; }
.btn-request:hover { background: var(--gold-hover); border-color: var(--gold-hover); box-shadow: 0 4px 16px rgba(200,134,10,.35); transform: translateY(-1px); }
.btn-request:active { transform: scale(.97); }
.btn-details { display: inline-flex; align-items: center; gap: .4rem; padding: .75rem 1.25rem; background: transparent; color: var(--clr-plum); border: 2px solid var(--clr-border); border-radius: 50px; font-family: var(--font); font-size: .875rem; font-weight: 700; text-decoration: none; transition: border-color .2s, background .2s; }
.btn-details:hover { border-color: var(--clr-plum); background: var(--clr-offwhite); }
.results-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.5rem; }
.sidebar-card h3 { font-size: 1rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .75rem; }
.sidebar-card p  { font-size: .85rem; color: var(--clr-text-mid); margin-bottom: 1rem; line-height: 1.6; padding: 0; }
.sidebar-card.plum { background: var(--clr-plum); border-color: var(--clr-plum); }
.sidebar-card.plum h3 { color: var(--clr-gold); }
.sidebar-card.plum p  { color: rgba(255,255,255,.75); }
.sidebar-summary-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px solid var(--clr-border); font-size: .85rem; }
.sidebar-summary-row:last-child { border-bottom: none; }
.sidebar-summary-label { color: var(--text-light); font-weight: 600; }
.sidebar-summary-value { color: var(--clr-plum); font-weight: 800; }
.no-session-banner { background: rgba(200,134,10,.1); border: 2px solid var(--clr-gold); border-radius: var(--rad-lg); padding: 1.5rem; text-align: center; margin-bottom: 2rem; }
.no-session-banner h3 { font-size: 1rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .5rem; }
.no-session-banner p  { font-size: .875rem; color: var(--clr-text-mid); margin-bottom: 1rem; }
.ty-panel { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 2rem; text-align: center; margin-bottom: 2rem; }
.ty-panel .ty-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(200,134,10,.1); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.ty-panel h2 { font-size: 1.25rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .5rem; }
.ty-panel p  { font-size: .9rem; color: var(--clr-text-mid); max-width: 480px; margin: 0 auto; }
.request-flash { display: none; align-items: center; gap: .6rem; background: #e8f5e8; border: 1px solid #a3d4a3; border-radius: var(--rad-md); padding: .75rem 1rem; font-size: .875rem; font-weight: 700; color: #2d6a2d; margin-bottom: 1rem; }
.request-flash.show { display: flex; }
@media (max-width: 900px) { .results-layout { grid-template-columns: 1fr; } .results-sidebar { position: static; } }
@media (max-width: 600px) { .supplier-meta { grid-template-columns: repeat(2,1fr); } .supplier-card-footer { flex-direction: column; } .btn-request, .btn-details { width: 100%; } }

/* ════════════════════════════════════════════════════════════
   39. THANK YOU PAGE
════════════════════════════════════════════════════════════ */
.ty-hero { padding: 3.5rem 0 3rem; text-align: center; position: relative; overflow: hidden; }
.ty-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 65% 40%, rgba(22,163,74,.06) 0%, transparent 55%), radial-gradient(circle at 20% 80%, rgba(41,35,92,.04) 0%, transparent 50%); pointer-events: none; }
.ty-check { width: 76px; height: 76px; border-radius: 50%; background: #F0FBF4; border: 2px solid rgba(22,163,74,.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; position: relative; z-index: 2; animation: checkPop .55s cubic-bezier(.22,1,.36,1) both; box-shadow: 0 0 0 8px rgba(22,163,74,.08); }
@keyframes checkPop { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }
.ty-check svg { width: 34px; height: 34px; stroke: #16A34A; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.ty-hero h1 { color: var(--text-dark); font-size: clamp(1.6rem,3.5vw,2.3rem); margin-bottom: .6rem; position: relative; z-index: 2; }
.ty-hero h1 em { font-style: normal; color: var(--clr-gold); }
.ty-hero p { color: var(--clr-text-mid); font-size: 1rem; max-width: 520px; margin: 0 auto; line-height: 1.7; position: relative; z-index: 2; }
.ty-hero p strong { color: var(--text-dark); font-weight: 800; }
.ty-summary { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; padding: 1.5rem 0 0; position: relative; z-index: 2; }
.ty-pill { background: #fff; border: 1.5px solid rgba(41,35,92,.14); border-radius: 50px; padding: .3rem .9rem; font-size: .75rem; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: .4rem; box-shadow: var(--shadow-sm); }
.ty-pill svg { width: 13px; height: 13px; stroke: var(--clr-gold); fill: none; stroke-width: 2.5; }
.ty-next { padding: 3.5rem 0; }
.ty-next-title { text-align: center; margin-bottom: 2.5rem; }
.ty-next-title h2 { font-size: 1.4rem; font-weight: 900; color: var(--text-dark); margin-bottom: .4rem; }
.ty-next-title p { color: var(--clr-text-mid); font-size: .92rem; }
.ty-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.ty-step { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.5rem 1.25rem; text-align: center; position: relative; }
.ty-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--clr-plum); color: #fff; font-family: var(--font); font-size: 1.1rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto .85rem; }
.ty-step h3 { font-size: .95rem; font-weight: 900; color: var(--text-dark); margin-bottom: .4rem; }
.ty-step p  { font-size: .83rem; color: var(--clr-text-mid); line-height: 1.6; margin: 0; padding: 0; }
.ty-info { padding: 0 0 3.5rem; }
.ty-info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.ty-info-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.25rem 1.35rem; display: flex; gap: 1rem; align-items: flex-start; }
.ty-info-card__icon { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; background: rgba(200,134,10,.1); border: 1px solid rgba(213,49,123,.12); display: flex; align-items: center; justify-content: center; }
.ty-info-card__icon svg { width: 20px; height: 20px; stroke: var(--clr-gold); fill: none; stroke-width: 1.8; }
.ty-info-card h4 { font-size: .88rem; font-weight: 800; color: var(--text-dark); margin-bottom: .3rem; }
.ty-info-card p  { font-size: .8rem; color: var(--clr-text-mid); line-height: 1.6; margin: 0; padding: 0; }
.ty-info-card a  { color: var(--clr-blue); }
.ty-cta { background: var(--clr-offwhite); border-top: 1px solid var(--clr-border); padding: 3rem 0; text-align: center; }
.ty-cta h2 { color: var(--text-dark); margin-bottom: .5rem; }
.ty-cta p  { color: var(--clr-text-mid); margin-bottom: 1.5rem; }
@media (max-width: 760px) { .ty-steps { grid-template-columns: 1fr; gap: 1rem; } .ty-info-grid { grid-template-columns: 1fr; } .ty-step { display: flex; align-items: flex-start; gap: 1rem; text-align: left; padding: 1rem 1.1rem; } .ty-step-num { flex-shrink: 0; margin: 0; width: 34px; height: 34px; font-size: .95rem; } }
@media (max-width: 480px) { .ty-summary { flex-direction: column; align-items: center; } }

/* ════════════════════════════════════════════════════════════
   40. DETAILS PAGE
════════════════════════════════════════════════════════════ */
.dtl-hero { padding: 2.5rem 0; }
.dtl-hero-inner { position: relative; z-index: 2; }
.dtl-breadcrumb { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 700; color: var(--clr-text-mid); margin-bottom: 1.25rem; transition: color .2s; text-decoration: none; }
.dtl-breadcrumb:hover { color: var(--clr-gold); }
.dtl-breadcrumb svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.dtl-hero-grid { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.dtl-logo-box { width: 140px; height: 70px; background: #fff; border-radius: var(--rad-md); display: flex; align-items: center; justify-content: center; padding: .75rem; flex-shrink: 0; }
.dtl-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
.dtl-hero-text { flex: 1; }
.dtl-eyebrow { font-size: .65rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--clr-gold); margin-bottom: .4rem; }
.dtl-hero-text h1 { color: var(--text-dark); font-size: clamp(1.5rem,3vw,2rem); margin-bottom: .4rem; }
.dtl-hero-text p  { color: var(--clr-text-mid); font-size: .925rem; margin: 0; max-width: 560px; }
.dtl-hero-badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .85rem; }
.dtl-badge { display: inline-block; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: .2rem .75rem; border-radius: 20px; }
.dtl-badge-new   { background: rgba(200,134,10,.15); color: var(--clr-gold); border: 1px solid rgba(200,134,10,.3); }
.dtl-badge-recon { background: rgba(255,255,255,.12); color: var(--clr-plum-mid); border: 1px solid rgba(41,35,92,.2); }
.dtl-badge-check { background: rgba(100,200,100,.15); color: #2d6a2d; border: 1px solid rgba(100,200,100,.3); }
.dtl-hero-price-box { background: rgba(200,134,10,.1); border: 1px solid rgba(200,134,10,.3); border-radius: var(--rad-lg); padding: 1.25rem 1.5rem; text-align: center; flex-shrink: 0; min-width: 180px; }
.dtl-price-label { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; color: var(--clr-gold); margin-bottom: .3rem; }
.dtl-price-value { font-size: 1.6rem; font-weight: 900; color: var(--clr-plum); line-height: 1; margin-bottom: .2rem; }
.dtl-price-note  { font-size: .72rem; color: var(--clr-text-mid); }
.dtl-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; padding: 2.5rem 0; }
.dtl-section { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.75rem; margin-bottom: 1.25rem; }
.dtl-section h2 { font-size: 1.1rem; font-weight: 900; color: var(--clr-plum); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid rgba(200,134,10,.2); }
.dtl-section p  { font-size: .925rem; color: var(--clr-text-mid); line-height: 1.7; margin-bottom: .75rem; }
.dtl-section p:last-child { margin-bottom: 0; }
.dtl-features { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.dtl-feature-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; color: var(--clr-text-mid); line-height: 1.45; }
.dtl-feature-item::before { content: '✓'; width: 18px; height: 18px; border-radius: 50%; background: rgba(200,134,10,.1); color: var(--gold-hover); font-size: .65rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.dtl-counties { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.dtl-county-pill { display: inline-block; background: var(--clr-offwhite); border: 1px solid var(--clr-border); border-radius: 20px; padding: .2rem .75rem; font-size: .78rem; font-weight: 700; color: var(--clr-plum); }
.dtl-rating-row   { display: flex; align-items: center; gap: 1rem; }
.dtl-rating-num   { font-size: 2.5rem; font-weight: 900; color: var(--clr-plum); line-height: 1; }
.dtl-rating-stars { display: flex; gap: 3px; }
.dtl-rating-stars span { font-size: 1.2rem; color: var(--clr-gold); }
.dtl-rating-stars .empty { color: var(--clr-border); }
.dtl-rating-label { font-size: .825rem; color: var(--text-light); margin-top: .2rem; }
.dtl-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); display: flex; flex-direction: column; gap: 1.25rem; }
.dtl-cta-card { background: var(--clr-plum); border-radius: var(--rad-lg); padding: 1.75rem; text-align: center; }
.dtl-cta-card h3 { color: var(--clr-gold); font-size: 1rem; font-weight: 900; margin-bottom: .6rem; }
.dtl-cta-card p  { color: rgba(255,255,255,.75); font-size: .85rem; margin-bottom: 1.25rem; line-height: 1.55; }
.dtl-phone-link { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .9rem; font-weight: 800; color: rgba(255,255,255,.85); padding: .7rem; border: 1px solid rgba(255,255,255,.2); border-radius: 50px; transition: background .2s, color .2s; text-decoration: none; }
.dtl-phone-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.dtl-sidebar-plain { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--rad-lg); padding: 1.5rem; }
.dtl-sidebar-plain h3 { font-size: .95rem; font-weight: 900; color: var(--clr-plum); margin-bottom: .65rem; }
.dtl-sidebar-plain p  { font-size: .85rem; color: var(--clr-text-mid); margin-bottom: .75rem; line-height: 1.55; }
.dtl-success { display: none; align-items: center; gap: .65rem; background: #e8f5e8; border: 1px solid #a3d4a3; border-radius: var(--rad-md); padding: .85rem 1rem; font-size: .9rem; font-weight: 700; color: #2d6a2d; margin-bottom: 1.25rem; }
.dtl-success.show { display: flex; }
@media (max-width: 900px) { .dtl-layout { grid-template-columns: 1fr; } .dtl-sidebar { position: static; } }
@media (max-width: 600px) { .dtl-hero-grid { flex-direction: column; align-items: flex-start; } .dtl-hero-price-box { width: 100%; } .dtl-features { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   41. TEMPLATE FINAL CTA BANNER
   Default blue CTA shown on all external pages via cplFinalCTA
   Override with empty <asp:Content> on pages with their own form
════════════════════════════════════════════════════════════ */
.tmpl-cta {
    background: var(--clr-blue);
    padding: 4rem 0;
}
.tmpl-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}
.tmpl-cta-text h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.tmpl-cta-text p {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
.tmpl-cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.tmpl-cta-btn {
    display: inline-block;
    background: var(--clr-pink);
    color: var(--clr-white) !important;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: var(--rad-pill);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
    animation: heroPulse 2.2s ease-out infinite;
    transition: background var(--trans), transform var(--trans);
}
.tmpl-cta-btn:hover {
    background: var(--clr-plum);
    color: var(--clr-white) !important;
    animation: none;
    transform: translateY(-2px);
}
.tmpl-cta-note {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}
@media only screen and (max-width: 640px) {
    .tmpl-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .tmpl-cta-text p { max-width: 100%; }
    .tmpl-cta-btn { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   42. BTN CLASS SYSTEM
   Used throughout external pages — maps old SLCIE btn classes
   to new UK-design brand colours
════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--rad-pill);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--trans), color var(--trans),
                border-color var(--trans), transform var(--trans),
                box-shadow var(--trans);
    white-space: nowrap;
    line-height: 1.2;
    -webkit-appearance: none;
    appearance: none;
}
.btn:active { transform: scale(0.97); }

/* Primary — pink */
.btn-primary {
    background: var(--clr-pink);
    color: var(--clr-white) !important;
    border-color: var(--clr-pink);
}
.btn-primary:hover {
    background: var(--clr-plum);
    border-color: var(--clr-plum);
    color: var(--clr-white) !important;
    box-shadow: 0 4px 16px rgba(213,49,123,0.35);
    transform: translateY(-1px);
}

/* Gold */
.btn-gold {
    background: var(--clr-gold);
    color: var(--clr-white) !important;
    border-color: var(--clr-gold);
}
.btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--clr-white) !important;
    box-shadow: 0 4px 16px rgba(200,134,10,0.35);
    transform: translateY(-1px);
}

/* Outline — plum border */
.btn-outline {
    background: transparent;
    color: var(--clr-plum) !important;
    border-color: var(--clr-border);
}
.btn-outline:hover {
    border-color: var(--clr-plum);
    background: var(--clr-offwhite);
}

/* Outline white — for dark backgrounds */
.btn-outline-white {
    background: transparent;
    color: var(--clr-white) !important;
    border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--clr-white);
}

/* Sizes */
.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.0rem;
}
.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.78rem;
}

/* Block / full-width */
.btn-block { width: 100%; }

/* ════════════════════════════════════════════════════════════
   43. UTILITY CLASSES
   Replaces all converted inline styles across external pages
════════════════════════════════════════════════════════════ */

/* ── Spacing ── */
.mt-xs  { margin-top: 0.5rem; }
.mt-md  { margin-top: 1rem; }
.mt-lg  { margin-top: 1.5rem; }
.mb-md  { margin-bottom: 1rem; }
.mb-lg  { margin-bottom: 1.25rem; }
.mb-xl  { margin-bottom: 1.75rem; }

/* ── Text ── */
.text-dark      { color: var(--text-dark); }
.text-gold      { color: var(--gold-hover); }
.text-plum-bold { color: var(--clr-plum); font-weight: 700; }
.text-sm-muted  { font-size: 0.78rem; color: var(--text-light); margin: 0; }
.text-muted-sm  { font-size: 0.85rem; color: var(--clr-text-mid); margin-bottom: 1rem; }

/* ── Section wrappers ── */
.section    { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

/* ── Container narrow (policy pages) ── */
.container-narrow { max-width: 860px; margin: 0 auto; padding-left: 3.2rem; padding-right: 3.2rem; }
@media only screen and (max-width: 640px) { .container-narrow { padding-left: 1.5rem; padding-right: 1.5rem; } }

/* ── Button utilities ── */
.btn-justify { justify-content: center; }

/* ── FAQ content wrapper ── */
.faq-content { min-width: 0; }

/* ── Results hero CTA ── */
.results-hero-cta { flex-shrink: 0; }

/* ── Details phone icon ── */
.dtl-phone-icon { font-size: 0.85rem; }
.dtl-price-gold-lg { font-size: 1.4rem; font-weight: 900; color: var(--gold-hover); margin-bottom: 0.75rem; }

/* ── GTM hidden fields (thankyou, details) ── */
.enen, .enpn { display: none !important; }

/* ════════════════════════════════════════════════════════════
   44. ARTICLES SIDEBAR CARD VARIANTS
════════════════════════════════════════════════════════════ */
.art-sidebar-card--tint { background: var(--clr-offwhite); }
.art-sidebar-card--tint h4 { color: var(--text-dark); }

/* ════════════════════════════════════════════════════════════
   45. CONTACT PAGE — DETAIL LINKS
════════════════════════════════════════════════════════════ */
.con-detail-link {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-plum);
    padding: 0.35rem 0;
    text-decoration: none;
    transition: color var(--trans);
}
.con-detail-link:hover { color: var(--clr-blue); }
.con-detail-link--border { border-bottom: 0.5px solid var(--clr-border); }

/* ════════════════════════════════════════════════════════════
   46. POLICY PAGES — EYEBROW & NOTES
════════════════════════════════════════════════════════════ */
.policy-eyebrow {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    display: block;
    margin-bottom: 0.5rem;
}
.policy-footer-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2rem;
}
.policy-note {
    font-size: 0.87rem;
    margin-top: 0.75rem;
}
.policy-section-row td,
tr.policy-section-row td {
    background: var(--clr-plum) !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
}

/* ════════════════════════════════════════════════════════════
   47. BRAND CONSISTENCY OVERRIDES
   Removes gold from non-grant contexts across all external pages.
   Gold remains ONLY in: #grant-ie, .grant-*, .btn-gold-ie,
   .stars-gold, .sup-stars, .art-callout (info highlight)
   Everything else → pink (#D5317B) or blue (#1F7BC3)
════════════════════════════════════════════════════════════ */

/* ── Section eyebrows & labels → pink ── */
.section-eyebrow,
.section-label,
.art-eyebrow,
.about-eyebrow,
.con-eyebrow,
.faq-eyebrow,
.join-eyebrow,
.sup-eyebrow,
.art-page-eyebrow,
.dtl-eyebrow,
.policy-eyebrow {
    color: var(--clr-pink) !important;
   }

/* ── Breadcrumb hover → pink ── */
.art-breadcrumb:hover,
.dtl-breadcrumb:hover { color: var(--clr-pink) !important; }

/* ── Article body h2 divider → border colour ── */
.art-body h2 { border-bottom-color: var(--clr-border) !important; }

/* ── Article category pill → blue tones ── */
.art-category {
    color: var(--clr-blue) !important;
    background: rgba(31,123,195,0.1) !important;
}
.art-read-link:hover { color: var(--clr-blue) !important; }

/* ── About page: stat accent, icons → pink ── */
.stat-box-num span           { color: var(--clr-pink) !important; }
.about-trust-panel .atp-icon { background: rgba(213,49,123,0.08) !important; color: var(--clr-pink) !important; }
.atp-list li svg             { color: var(--clr-pink) !important; }
.value-icon                  { background: rgba(31,123,195,0.1) !important; color: var(--clr-blue) !important; }

/* ── Sidebar card title accent → pink ── */
.art-sb-card.plum h4 { color: var(--clr-pink) !important; }
.sidebar-card.plum h3 { color: var(--clr-pink) !important; }

/* ── Contact info icon → blue ── */
.con-info-icon { background: rgba(31,123,195,0.1) !important; color: var(--clr-blue) !important; }

/* ── FAQ page nav & group → pink ── */
.faq-nav a:hover,
.faq-nav a.active            { border-left-color: var(--clr-pink) !important; color: var(--clr-plum) !important; }
.faq-group-title             { border-bottom-color: var(--clr-border) !important; }
.faq-group-icon              { background: rgba(213,49,123,0.08) !important; color: var(--clr-pink) !important; }
.faq-item.open .faq-icon     { background: var(--clr-pink) !important; border-color: var(--clr-pink) !important; }

/* ── Join us: stats & steps → pink ── */
.join-hero h1 em  { color: var(--clr-pink) !important; }
.join-stat-num    { color: var(--clr-pink) !important; }
.how-step::before { background: var(--clr-pink) !important; color: #fff !important; }

/* ── Suppliers: badges, CTA button → pink/blue ── */
.b-new            { background: rgba(31,123,195,0.1) !important; color: var(--clr-blue) !important; }
.sup-meta-value.gold { color: var(--clr-pink) !important; }
.btn-sup-cta,
.btn-sup-cta:link {
    background: var(--clr-pink) !important;
    border-color: var(--clr-pink) !important;
    color: #fff !important;
}
.btn-sup-cta:hover {
    background: var(--clr-plum) !important;
    border-color: var(--clr-plum) !important;
    color: #fff !important;
}

/* ── Results page → pink ── */
.results-hero-text h1 em     { color: var(--clr-pink) !important; }
.summary-chip.gold           { background: rgba(213,49,123,0.1) !important; border-color: rgba(213,49,123,0.3) !important; color: var(--clr-pink) !important; }
.results-trust-item::before  { color: var(--clr-pink) !important; }
.results-count               { background: rgba(213,49,123,0.08) !important; border-color: var(--clr-pink) !important; color: var(--clr-pink) !important; }
.badge-new-gold              { background: rgba(31,123,195,0.1) !important; color: var(--clr-blue) !important; }
.supplier-meta-value.gold    { color: var(--clr-pink) !important; }
.no-session-banner           { background: rgba(213,49,123,0.06) !important; border-color: var(--clr-pink) !important; }

/* btn-request → pink primary ── */
.btn-request {
    background: var(--clr-pink) !important;
    color: #fff !important;
    border-color: var(--clr-pink) !important;
}
.btn-request:hover {
    background: var(--clr-plum) !important;
    border-color: var(--clr-plum) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(213,49,123,0.35) !important;
}

/* ── Thank you page → pink ── */
.ty-hero h1 em               { color: var(--clr-pink) !important; }
.ty-pill svg                 { stroke: var(--clr-pink) !important; }
.ty-panel .ty-icon           { background: rgba(213,49,123,0.08) !important; }
.ty-info-card__icon          { background: rgba(31,123,195,0.1) !important; }
.ty-info-card__icon svg      { stroke: var(--clr-blue) !important; }
.ty-step-num                 { background: var(--clr-pink) !important; }

/* ── Details page → pink/blue ── */
.dtl-badge-new               { background: rgba(213,49,123,0.1) !important; color: var(--clr-pink) !important; border-color: rgba(213,49,123,0.3) !important; }
.dtl-hero-price-box          { background: rgba(213,49,123,0.1) !important; border-color: rgba(213,49,123,0.35) !important; }
.dtl-price-label             { color: var(--clr-pink) !important; }
.dtl-price-value             { color: #fff !important; }
.dtl-cta-card h3             { color: var(--clr-pink) !important; }
.dtl-feature-item::before    { background: rgba(213,49,123,0.1) !important; color: var(--clr-pink) !important; }
.dtl-price-gold-lg           { color: var(--clr-pink) !important; }

/* ── btn-gold → blue (non-grant secondary actions) ── */
.btn-gold {
    background: var(--clr-blue) !important;
    border-color: var(--clr-blue) !important;
    color: #fff !important;
}
.btn-gold:hover {
    background: var(--clr-plum) !important;
    border-color: var(--clr-plum) !important;
    color: #fff !important;
}

/* ════════════════════════════════════════════════════════════
   48. CTA BUTTON STANDARDISATION
   All primary CTAs match home page .hero-cta-main:
   pink, pill, uppercase, Montserrat 900, letter-spacing
════════════════════════════════════════════════════════════ */
.btn-primary,
.btn-request,
.btn-sup-cta,
.tmpl-cta-btn,
.hero-cta-main,
.fcta-btn {
    font-family: var(--font) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    border-radius: var(--rad-pill) !important;
}

/* Secondary blue CTAs (Watch Interview style) */
.btn-outline,
.btn-outline-white,
.btn-details,
.btn-sup-dtl,
.btn-watch-ie {
    font-family: var(--font) !important;
    font-weight: 700 !important;
    border-radius: var(--rad-pill) !important;
}

/* ════════════════════════════════════════════════════════════
   49. FOOTER STATS COLUMN & LEGAL TEXT
════════════════════════════════════════════════════════════ */
.footer-legal {
    font-size: 0.8em !important;
    color: rgba(255,255,255,0.45) !important;
}
.footer-stats { padding-top: 0.5rem; }
.footer-stat-num {
    font-size: 2.2rem; font-weight: 900;
    color: var(--clr-white); line-height: 1;
    margin-bottom: 0.1rem; padding: 0;
}
.footer-stat-num--pink { color: var(--clr-pink); margin-top: 1.25rem; }
.footer-stat-label {
    font-size: 0.78rem; font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0; padding: 0;
}
@media only screen and (max-width: 950px) {
    .footer-stats { width: 100% !important; float: none; text-align: left; padding-top: 1.5rem; }
    .footer-stat-num { font-size: 1.8rem; }
}
