/* ============================================================
   STUDENT LAP TRACKER — site.css
   Single hand-authored stylesheet; no build step required.
   Served as-is by ASP.NET Core MapStaticAssets().
   ============================================================ */

/* --- Design Tokens ----------------------------------------- */
:root {
    /* Semantic core colors — blues and grays match the portal palette
       (shared/web-coreui core.css): #4175cc is white-background-only (4.53:1),
       #2d5ba9 is the hover shade, #3563b5 is the tint-safe shade for gray
       backgrounds, #555 is the accessible muted gray. */
    --color-primary: #4175cc;
    --color-surface: #fff;
    --color-muted: #555;

    --slt-blue: #4175cc;
    --slt-blue-hover: #2d5ba9;
    --slt-blue-tint-safe: #3563b5;
    --slt-amber: #fcaf3b;
    --slt-amber-hover: #2b2b2b;
    --slt-dark: #18191d;
    --slt-dark-section: #333; /* dark content bands; footer keeps --slt-dark so they read as distinct */
    --slt-text: #2b2b2b;
    --slt-light-bg: #ededed;
    --slt-border: #ccc;
    --slt-font: 'Poppins', Arial, Helvetica, sans-serif;
    --slt-container: 1170px;
    --slt-radius: 3px;
    --slt-transition: 0.2s ease;

    /* Legacy aliases mapped to semantic colors */
    --slt-blue-top: var(--color-primary);
    --slt-white: var(--color-surface);
    --slt-text-muted: var(--color-muted);
}

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--slt-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slt-text);
    background: var(--slt-white);
    margin: 0;
}
body.main-nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--slt-blue); text-decoration: none; }
a:hover { color: var(--slt-blue-hover); text-decoration: underline; }

/* WCAG 1.4.1 (F73): links inside prose must not rely on color alone — underline
   them, mirroring the portal's prose-link rule. Navigation lists, cards, and
   buttons keep their own styling. */
.page-content p a:not(.btn),
.page-content li a:not(.btn),
.page-content td a:not(.btn),
.page-content dd a:not(.btn),
a.light-link { text-decoration: underline; }

/* WCAG 1.4.3: the brand blue only clears 4.5:1 on white; on the gray band and
   striped-table backgrounds use the tint-safe shade, as the portal does. */
.page-section-alt p a:not(.btn),
.page-section-alt li a:not(.btn),
.page-section-alt td a:not(.btn),
.hero-content p a:not(.btn),
.hero-content li a:not(.btn),
.step-box a:not(.btn),
.content-table a:not(.btn) { color: var(--slt-blue-tint-safe); }

/* Focus ring, portal parity: suppressed for mouse focus, 2px brand ring for
   keyboard focus. */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }
a:focus-visible,
button:focus-visible,
select:focus-visible { outline: 2px solid var(--slt-blue); outline-offset: 2px; }

/* On blue/dark surfaces the brand-blue ring vanishes into the background
   (WCAG 2.4.7 F78) — use a white ring there instead. */
.header-top a:focus-visible,
.locale-banner a:focus-visible,
.locale-banner button:focus-visible,
.page-section-blue a:focus-visible,
.page-section-dark a:focus-visible,
.page-section-dark button:focus-visible,
.site-footer a:focus-visible,
.site-footer select:focus-visible { outline-color: var(--slt-white); }

ul, ol { padding-left: 1.5rem; }

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--slt-font);
    font-weight: 600;
    line-height: 1.2;
    color: var(--slt-text);
}

h1 { font-size: 1.875rem; }
/* Every h2 gets at least 1.5rem below it unless a component sets its own rhythm */
h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.0625rem; }
h4 { font-size: 1rem; }
h5 { font-size: 0.9375rem; }
h6 { font-size: 0.875rem; }

p { margin-bottom: 1rem; font-size: 1rem; }
p:last-child { margin-bottom: 0; }

@media (min-width: 576px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.125rem; }
}

@media (min-width: 960px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 3rem; }
    h3 { font-size: 1.25rem; }
}

/* Home page hero — mirrors the live Elementor hero (section d1e0b02):
   boxed 1140px, gapless 50/50 columns on #EEF0ED, 1px hairline around the
   content column, 30/30/14/30 content padding, fixed 39px heading,
   right-aligned button, image hidden on mobile, 51px gap below. */
.hero-section { margin-bottom: 51px; }
.hero-section .container { max-width: 1140px; padding-inline: 0; }
.hero-grid { display: flex; }
.hero-image {
    flex: 0 0 49.65%;
    background-color: #EEF0ED;
}
.hero-image img { width: 100%; height: auto; }
.hero-content {
    flex: 1 1 auto;
    min-width: 0;
    background-color: #EEF0ED;
    margin: 1px;
    padding: 30px 30px 14px;
}
.hero-content h1 {
    font-size: 39px;
    line-height: 1.4;
    margin-bottom: 20px;
}
.hero-subtitle {
    display: block;
    font-weight: 400;
    font-size: 82%;
    margin-top: 2px;
}
.hero-content ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 20px;
    line-height: 1.68;
}
.hero-content li { margin: 0; }
.hero-cta { text-align: right; }
.hero-cta .btn { padding: 12px 24px; font-size: 15px; line-height: 1; }
@media (max-width: 767px) {
    .hero-section { margin-bottom: 0; }
    .hero-image { display: none; }
    .hero-content { padding: 30px 30px 40px; }
    .hero-cta .btn { display: block; width: 100%; }
}

/* --- Layout ------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--slt-container);
    margin-inline: auto;
    padding-inline: 2rem;
}

/* --- SITE HEADER ------------------------------------------- */
.site-header {
    z-index: 100;
}

/* Top bar */
.header-top {
    background-color: var(--slt-blue-top);
    padding: 10px 0;
}
.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-icons {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--slt-transition);
}
.social-icons a:hover { opacity: 0.7; text-decoration: none; }
.social-icons svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.9); }

/* Contact page social icons — brand colored circles */
.page-section-dark .social-icons { gap: 8px; }
.page-section-dark .social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 6px;
}
.page-section-dark .social-icons a:nth-child(1) { background-color: #1877f2; }
.page-section-dark .social-icons a:nth-child(2) { background-color: #1da1f2; }
.page-section-dark .social-icons svg { width: 22px; height: 22px; fill: #fff; }

/* App Login button in top bar — smaller, slightly rounded */
.header-top .btn {
    font-size: 0.7rem;
    padding: 5px 14px;
    border-radius: 3px;
    letter-spacing: 1px;
}

/* Main nav */
.site-nav { background: var(--slt-white); }
.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 14px;
    gap: 1rem;
}
/* Desktop: the nav row sits wider than the container gutters and gets more height */
@media (min-width: 961px) {
    .site-nav-inner { margin-inline: -20px; padding-block: 20px; }
}

.site-logo { display: flex; align-items: center; }
.site-logo img { max-width: 360px; max-height: 110px; width: auto; height: auto; }
.site-logo-mobile { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--slt-dark);
    white-space: nowrap;
    transition: color var(--slt-transition);
}
.nav-links a:hover { color: var(--slt-blue); text-decoration: none; }

/* Mobile hamburger toggle */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 0;
    padding: 0;
    flex-shrink: 0;
    cursor: pointer;
}
.mobile-menu-toggle svg { display: block; width: 25px; height: 25px; }

/* Mobile drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0; left: 0;
    width: 360px;
    max-width: 90vw;
    height: 100vh;
    background: var(--slt-white);
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 250ms ease;
    overflow-y: auto;
    box-shadow: 2px 0 16px rgba(0,0,0,.2);
}
.mobile-nav-drawer.is-open {
    transform: translateX(0);
}
.mobile-nav-drawer-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}
.mobile-nav-brand {
    position: relative;
    padding: 18px 16px 14px 16px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 6px;
}
.mobile-nav-brand img {
    display: block;
    width: 255px;
    max-width: 100%;
    height: auto;
}
.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 15px;
    border: 0;
    background: none;
    padding: 6px;
    line-height: 1;
    font-size: 30px;
    cursor: pointer;
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 0 15px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mobile-nav-links a {
    display: block;
    padding: 14px 16px;
    font-size: 18px;
    line-height: 1.2;
/*    font-weight: 600;*/
    /*text-transform: uppercase;*/
    /*letter-spacing: 1px;*/
    color: var(--slt-dark);
    border-bottom: 0;
}
.mobile-nav-links a .glyphicon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    position: relative;
    top: 2px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.mobile-nav-links a .glyphicon-info-sign {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='6.25'/%3E%3Cline x1='8' y1='7' x2='8' y2='11'/%3E%3Ccircle cx='8' cy='4.75' r='0.65' fill='%232b2b2b' stroke='none'/%3E%3C/svg%3E");
}
.mobile-nav-links a .glyphicon-tag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 6.5V2.5h4l6.5 6.5-4 4L2.5 6.5z'/%3E%3Ccircle cx='5' cy='5' r='0.85' fill='%232b2b2b' stroke='none'/%3E%3C/svg%3E");
}
.mobile-nav-links a .glyphicon-user {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='5.25' r='2.5'/%3E%3Cpath d='M3.2 13c.8-2 2.6-3.2 4.8-3.2s4 1.2 4.8 3.2'/%3E%3C/svg%3E");
}
.mobile-nav-links a .glyphicon-question-sign {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='6.25'/%3E%3Cpath d='M6.4 6.2a1.8 1.8 0 113.1 1.2c-.9.9-1.5 1.3-1.5 2.2'/%3E%3Ccircle cx='8' cy='11.6' r='0.65' fill='%232b2b2b' stroke='none'/%3E%3C/svg%3E");
}
.mobile-nav-links a .glyphicon-envelope {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3.2' width='12' height='9.6' rx='1.2'/%3E%3Cpath d='M2.8 4l5.2 4.3L13.2 4'/%3E%3C/svg%3E");
}
.mobile-nav-links a .glyphicon-road {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 13.5L6 2.5M13.5 13.5L10 2.5'/%3E%3Cpath d='M8 3.5v1.5M8 7.2v1.6M8 11v1.6'/%3E%3C/svg%3E");
}
.mobile-nav-links a .glyphicon-flag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.2 2.2v11.6'/%3E%3Cpath d='M4.2 3h7.6l-2 2.2 2 2.2H4.2z'/%3E%3C/svg%3E");
}
.mobile-nav-links a .glyphicon-stats {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 13.5h11'/%3E%3Cpath d='M5 13.5V9.5M8 13.5V6M11 13.5V4'/%3E%3C/svg%3E");
}
.mobile-nav-links a .glyphicon-print {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 6V2.8h6V6'/%3E%3Crect x='2.5' y='6' width='11' height='4.8' rx='1'/%3E%3Cpath d='M5 10.8h6v2.7H5z'/%3E%3C/svg%3E");
}
.mobile-nav-links a .glyphicon-pencil {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 13l2.6-.6L12.6 5.4a1.2 1.2 0 000-1.7l-.3-.3a1.2 1.2 0 00-1.7 0L3.6 10.4 3 13z'/%3E%3Cpath d='M9.8 4.2l2 2'/%3E%3C/svg%3E");
}
.mobile-nav-links a .glyphicon-list-alt {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2.2' width='12' height='11.6' rx='1.4'/%3E%3Cpath d='M5 5.4h6M5 8h6M5 10.6h6'/%3E%3C/svg%3E");
}
.mobile-nav-links a .glyphicon-log-in {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 2.5h4v11h-4'/%3E%3Cpath d='M8.2 8H2.5'/%3E%3Cpath d='M5.2 5.3L2.5 8l2.7 2.7'/%3E%3C/svg%3E");
}
.mobile-nav-links .mobile-nav-divider {
    border-top: 1px solid #d9d9d9;
    margin: 14px 16px;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 1045;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.is-visible { opacity: 1; pointer-events: all; }

@media (max-width: 960px) {
    .site-header {
        position: sticky;
        top: 0;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    }
    .site-nav-inner {
        min-height: 56px;
        padding-block: 6px;
        justify-content: flex-start;
        gap: 0.5rem;
    }
    .site-nav .container {
        padding-inline: unset;
        padding: 1px 13px;
    }
    .header-top {
        display: none;
    }
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; }
    .site-logo-desktop { display: none; }
    .site-logo .site-logo-mobile {
        display: block;
        width: 275px;
        max-width: 275px;
        height: auto;
    }
}

/* --- BUTTONS ----------------------------------------------- */
.btn {
    display: inline-block;
    padding: 8px 12px;
    font-family: var(--slt-font);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: background-color var(--slt-transition), color var(--slt-transition);
    text-decoration: none;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn:hover { text-decoration: none; }
.btn-primary { background-color: var(--slt-amber); color: #000; }
.btn-primary:hover { background-color: var(--slt-amber-hover); color: var(--slt-white); }
.btn-secondary { background-color: var(--slt-dark); color: var(--slt-white); }
.btn-secondary:hover { background-color: rgba(0,0,0,0); color: var(--slt-text-muted); }
.btn-blue { background-color: var(--slt-blue); color: var(--slt-white); }
.btn-blue:hover { background-color: var(--slt-blue-hover); color: var(--slt-white); }
.btn-outline {
    background-color: transparent;
    color: var(--slt-blue);
    border: 1px solid var(--slt-blue);
}
.btn-outline:hover { background-color: var(--slt-blue); color: var(--slt-white); }
.btn-lg { padding: 12px 24px; font-size: 1rem; }

/* --- PAGE CONTENT ------------------------------------------ */
.page-content { min-height: 60vh; }

/* --- SECTIONS ---------------------------------------------- */
.page-section     { padding-block: 5rem; }
.page-section-alt { padding-block: 5rem; background-color: var(--slt-light-bg); }
.page-section-dark {
    padding-block: 5rem;
    background-color: var(--slt-dark-section);
    color: var(--slt-white);
}
.page-section-dark h1,
.page-section-dark h2,
.page-section-dark h3,
.page-section-dark h4 { color: var(--slt-white); }

.section-title { text-align: center; margin-bottom: 2rem; }
.section-intro { text-align: center; max-width: 800px; margin-inline: auto; font-size: 1.1rem; margin-bottom: 1.5rem; }

/* --- GRID LAYOUTS ------------------------------------------ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 960px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .grid-3-icons { gap: 0; }
}

/* --- FEATURE GRID (image + copy pairs, e.g. the home page features) ------- */
/* .grid-2-feature: a white panel; .feature-text is the copy column. On phones the
   image runs edge to edge inside a tight container, the copy gets 40px side/bottom
   padding, and the CTA button spans the panel. */
.grid-2-feature { background-color: var(--slt-white); }
.page-section-dark .grid-2-feature { background-color: transparent; }
@media (min-width: 769px) {
    .grid-2-feature .feature-text p { margin-right: 40px; }
}
@media (max-width: 768px) {
    .grid-2-feature { gap: 0; }
    /* Image always stacks first on phones, whichever column holds it on desktop */
    .grid-2-feature > .feature-text { order: 1; }
    .grid-2-feature .feature-text { padding: 40px; }
    .grid-2-feature-compact .feature-text { padding: 40px 20px 20px; }
    .grid-2-feature .feature-text .btn { display: block; width: 100%; }
}

/* --- ICON BOXES -------------------------------------------- */
.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.icon-box-stacked {
    background: var(--slt-white);
    border-radius: var(--slt-radius);
    padding: 2rem 1.5rem;
   /* box-shadow: 0 2px 8px rgba(0,0,0,0.07);*/
}
.icon-box-inline {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
}
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--slt-amber);
    color: var(--slt-dark);
    flex-shrink: 0;
}
.icon-circle svg { width: 32px; height: 32px; fill: currentColor; }
.icon-circle-sm { width: 60px; height: 60px; }
.icon-circle-blue {
    background-color: var(--slt-blue);
    color: var(--slt-white);
}
.icon-box-content h3 { margin-bottom: 0.4rem; font-size: 1.125rem; }
.icon-box-content p { font-size: 0.9rem; margin-bottom: 0; }

/* --- TESTIMONIALS ------------------------------------------ */
.testimonial {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--slt-white);
    border-radius: var(--slt-radius);
    height: 100%;
}
.star-rating { color: #f5a623; font-size: 1.1rem; letter-spacing: 1px; }
.testimonial-quote { font-style: italic; font-size: 0.9rem; flex-grow: 1; }
.testimonial-meta { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-meta img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-job { font-size: 0.8rem; color: var(--slt-text-muted); line-height: 1.4; }

/* --- PRICING ----------------------------------------------- */
.package {
    background: var(--slt-white);
    border: 1px solid var(--slt-border);
    border-radius: 4px;
    padding: 2rem;
    max-width: 420px;
    margin-inline: auto;
}
.package h3 { font-size: 1.875rem; }
.package .price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: -1rem;
    color: var(--slt-blue-top);
}
.package ul { list-style: none; padding: 0; margin: 1rem 0; }
.package ul li { border-bottom: solid 1px var(--slt-border); padding: 8px 0; color: #333; }
.package .quote { text-align: center; margin-top: 1.5rem; }
.package .quote a {
    background-color: var(--slt-amber);
    color: #333;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--slt-radius);
    display: inline-block;
}
.package .quote a:hover { background-color: var(--slt-amber-hover); color: var(--slt-white); text-decoration: none; }

/* --- CONTACT FORM ------------------------------------------ */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-weight: 600; font-size: 0.9rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--slt-border);
    border-radius: var(--slt-radius);
    font-family: var(--slt-font);
    font-size: 1rem;
    color: var(--slt-text);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--slt-blue);
    border-color: var(--slt-blue);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.required-mark { color: #c00; }

/* --- BLOG CARDS -------------------------------------------- */
.blog-grid { display: grid; gap: 2rem; }
.blog-card {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 2rem;
    align-items: start;
    border-bottom: 1px solid #eee;
    padding-bottom: 2.5rem;
}
.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--slt-radius);
}
.blog-card-body { display: flex; flex-direction: column; gap: 0.6rem; }
.blog-card-body h2 { font-size: 1.6rem; line-height: 1.3; margin-bottom: 0; }
.blog-card-body h2 a { color: var(--slt-text); }
.blog-card-body h2 a:hover { color: var(--slt-blue); text-decoration: none; }
.blog-meta { font-size: 0.85rem; color: var(--slt-text-muted); }
.blog-meta a { color: var(--slt-text-muted); }
.blog-meta a:hover { color: var(--slt-blue); }
.blog-excerpt { font-size: 0.95rem; color: var(--slt-text); }
.blog-pagination { display: flex; gap: 0.5rem; margin-top: 2rem; align-items: center; }
.blog-pagination a,
.blog-pagination span {
    padding: 6px 12px;
    border: 1px solid var(--slt-border);
    border-radius: var(--slt-radius);
    font-size: 0.9rem;
}
.blog-pagination .current {
    background: var(--slt-blue);
    color: var(--slt-white);
    border-color: var(--slt-blue);
}

/* --- BLOG SINGLE POST -------------------------------------- */
.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
}
.blog-post-header { margin-bottom: 1.5rem; }
.blog-post-header h1 { margin-bottom: 0.4rem; font-size: 2rem; }
.blog-post-thumbnail { margin-bottom: 1.5rem; }
.blog-post-thumbnail img { width: 100%; border-radius: var(--slt-radius); }
/* Lead image directly under a post header (per-post max-width stays inline) */
.blog-post-lead { width: 100%; height: auto; margin-bottom: 1.5rem; }
.blog-post-content { font-size: 1rem; line-height: 1.7; }
.blog-post-content p { margin-bottom: 1rem; }
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 { margin: 1.5rem 0 0.75rem; }
.blog-post-content ul,
.blog-post-content ol { margin-bottom: 1rem; }
.blog-post-content img { margin-block: 1rem; }
.blog-post-content iframe { max-width: 100%; }

.blog-sidebar { position: sticky; top: 120px; }
.blog-sidebar h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--slt-blue);
}
.blog-sidebar ul { list-style: none; padding: 0; }
.blog-sidebar ul li { border-bottom: 1px solid #eee; padding: 6px 0; font-size: 0.9rem; }

/* Blog author archive page */
.blog-author-header { margin-bottom: 2rem; }
.blog-author-bio { max-width: 720px; margin-top: 1rem; }

/* Old-post extras: pull quote and three-up photo gallery */
.blog-quote {
    border-left: 4px solid var(--slt-border);
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    font-style: italic;
    background: var(--slt-light-bg);
}
.blog-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* --- LIGHT LINKS ------------------------------------------- */
a.light-link, a.light-link:visited { color: #eee; }
a.light-link:hover { color: #aaa; text-decoration: underline; }

/* --- PRIVACY / SINGLE PAGE CONTENT ------------------------- */
.single-page-content {
    max-width: 820px;
    margin-inline: auto;
    padding-block: 3rem;
}
.single-page-content h1 { margin-bottom: 1.5rem; }
.single-page-content h4 {
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: var(--slt-blue);
}
.single-page-content ul,
.single-page-content ol { margin-bottom: 1rem; }

/* --- REPORTS PAGE ICON BOXES ------------------------------- */
.report-icon-box { text-align: center; }
.report-icon-box a:hover { text-decoration: none; opacity: 0.85; }
.report-icon-box svg { margin-inline: auto; }

/* --- GUIDES PAGE ------------------------------------------- */
.guides-content { max-width: 900px; margin-inline: auto; }
.guides-content h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.guides-content img { margin-block: 1rem; border: 1px solid var(--slt-border); border-radius: var(--slt-radius); }

/* --- SCHOOL RUNNING CLUBS PAGE FAQ ACCORDION --------------- */
.faq-item { border-bottom: 1px solid var(--slt-border); padding: 1rem 0; }
.faq-question {
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer { margin-top: 0.5rem; font-size: 0.95rem; }

/* --- SCROLL TO TOP ----------------------------------------- */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 38px;
    height: 38px;
    background-color: var(--slt-blue);
    color: var(--slt-white);
    border-radius: var(--slt-radius);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    text-decoration: none;
}
#scroll-to-top svg { width: 15px; height: 15px; fill: currentColor; }
#scroll-to-top.visible { opacity: 1; visibility: visible; display: flex; }

/* --- SITE FOOTER ------------------------------------------- */
.site-footer {
    background-color: var(--slt-dark);
    color: var(--slt-white);
    padding-block: 1.25rem;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}
.site-footer a { color: var(--slt-white); }
.site-footer a:hover { color: var(--slt-amber); text-decoration: none; }

/* --- UTILITY ----------------------------------------------- */
.text-center { text-align: center; }
.text-blue { color: var(--color-primary) !important; }
.text-white { color: var(--color-surface) !important; }
.text-gray { color: var(--color-muted) !important; }
.text-muted { color: var(--color-muted) !important; }

.bg-blue { background-color: var(--color-primary) !important; }
.bg-white { background-color: var(--color-surface) !important; }
.bg-gray { background-color: var(--slt-light-bg) !important; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 1rem; }
.mt-1 { margin-top: 1rem; }
.mt-1-5 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.mr-075 { margin-right: 0.75rem; }
.text-small { font-size: 0.9rem; }
.text-italic { font-style: italic; }
/* Fixed max widths for lead logos/photos on old blog posts (values match the assets) */
.mw-200 { max-width: 200px; }
.mw-225 { max-width: 225px; }
.mw-300 { max-width: 300px; }
.mw-310 { max-width: 310px; }
.mw-333 { max-width: 333px; }
/* Lead paragraph under a closing-CTA band heading (dark sections site-wide) */
.cta-lead { max-width: 680px; margin-inline: auto; }
/* Stand-alone centered testimonial quote */
.quote-centered { max-width: 720px; margin-inline: auto; }
/* Tinted callout box (class-list guide) */
.callout-box { background: var(--color-bg-alt); padding: 1.5rem; border-radius: 8px; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 960px) {
    .bg-gray-mobile { background-color: var(--slt-light-bg) !important; }
    .bg-white-mobile { background-color: var(--color-surface) !important; }
    .nogap-mobile { gap: unset !important; }
    .hide-mobile { display: none !important; }
}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
/* Alias design-token shorthands used in page markup */
:root {
    --color-accent: var(--color-primary);
    --color-bg-alt: var(--slt-light-bg);
}

/* --- PAGE TITLE SECTION (white, left-aligned h1) ---------- */
.page-section-banner {
    padding-block: 2rem 0.5rem;
    background-color: var(--slt-white);
}
.page-section-banner h1 { color: var(--slt-text); }

/* --- BLUE CALLOUT SECTION --------------------------------- */
.page-section-blue {
    padding-block: 1.75rem;
    background-color: var(--slt-blue-top);
    color: var(--slt-white);
}
.page-section-blue h2 {
    color: var(--slt-white);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
    /*max-width: 860px;*/
    margin: 0 auto;
}
@media (min-width: 768px) {
    .page-section-blue h2 { font-size: 1.9375rem; }
}

/* --- 5-COLUMN GRID ---------------------------------------- */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
@media (max-width: 960px) { .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .grid-5 { grid-template-columns: 1fr; } }

/* --- REPORT LINK CARDS ------------------------------------ */
.report-link {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid var(--slt-border);
    border-radius: 4px;
}
.report-link h3 { margin-top: 0.75rem; font-size: 1rem; }

/* --- STEP BOXES ------------------------------------------- */
.step-box {
    background: var(--slt-light-bg);
    padding: 1.5rem;
    border-radius: 4px;
}
.step-box h3 { margin: 0 0 0.75rem; }
.step-box p { margin: 0; }
.step-box p:last-child { margin-bottom: 0; }
.step-icon {
    width: 48px;
    height: 48px;
    color: var(--slt-text-muted);
    display: block;
    margin-inline: auto;
    margin-bottom: 1rem;
    fill: currentColor;
}

/* --- FAQ LIST --------------------------------------------- */
.faq-list { display: flex; flex-direction: column; }
.faq-list .faq-item { border-bottom: 1px solid var(--slt-border); padding: 1.25rem 0; }
.faq-list .faq-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.faq-list .faq-item p { margin-bottom: 0; }

/* --- FORM FIELD (alias for form-group) --------------------- */
.form-field { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1rem; }
.form-field label { font-weight: 600; font-size: 0.9rem; }
.page-section-dark .form-field label { color: var(--slt-white); text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.8rem; }
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--slt-border);
    border-radius: var(--slt-radius);
    font-family: var(--slt-font);
    font-size: 1rem;
    color: var(--slt-text);
}
.form-field input:focus,
.form-field textarea:focus {
    outline: 2px solid var(--slt-blue);
    border-color: var(--slt-blue);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* --- CONTACT FORM FEEDBACK --------------------------------- */
.captcha-wrapper { display: flex; justify-content: flex-start; }
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--slt-radius);
    background-color: #e6f4ea;
    border: 1px solid #2d7d32;
    color: #1f5a23;
    font-size: 0.95rem;
}
.form-alert:focus { outline: 2px solid var(--slt-white); outline-offset: 2px; }
.form-alert-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: #2d7d32; }
.form-error {
    margin: 0;
    padding: 0.6rem 0.9rem;
    border-radius: var(--slt-radius);
    background-color: #fbe9e7;
    border: 1px solid #c62828;
    color: #8e1c1c;
    font-size: 0.9rem;
}

/* --- SECTION DIVIDER -------------------------------------- */
.section-divider {
    border: none;
    border-top: 1px solid var(--slt-border);
    margin: 0;
}

/* --- PRICING PAGE ----------------------------------------- */
.price-tag { font-size: 1.1rem; color: var(--slt-text-muted); margin-top: 0.5rem; }
.price-amount { font-size: 3.5rem; font-weight: 700; color: var(--slt-blue-top); line-height: 1; }
.price-period { font-size: 1rem; color: var(--slt-text-muted); }
.pricing-package {
    background: var(--slt-white);
    border: 1px solid var(--slt-border);
    border-radius: 4px;
    padding: 2rem;
    max-width: 520px;
    margin-inline: auto;
}
.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.package-features li {
    border-bottom: 1px solid var(--slt-border);
    padding: 10px 0;
    color: var(--slt-text);
    text-align: center;
}
.package-features li:first-child { font-weight: 700; }

/* --- OUTLINE SECONDARY BUTTON ----------------------------- */
.btn-outline-secondary {
    background-color: transparent;
    color: var(--slt-dark);
    border: 1px solid var(--slt-border);
}
.btn-outline-secondary:hover {
    background-color: var(--slt-dark);
    color: var(--slt-white);
    text-decoration: none;
}

/* --- RESPONSIVE ADJUSTMENTS -------------------------------- */
@media (max-width: 1024px) {
    .page-section, .page-section-alt, .page-section-dark { padding-block: 2.5rem; }
}

@media (max-width: 768px) {
    .container { padding-inline: 1.5rem; }
    .blog-card { grid-template-columns: 1fr; }
    .blog-post-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .page-section, .page-section-alt, .page-section-dark { padding-block: 2rem; }
    /* Phone-only spacing nudges for individual sections */
    .mt-mobile-40 { margin-top: 40px; }
    .pt-mobile-40 { padding-top: 40px; }
    .container-tight-mobile { padding-inline: 1rem; }
}

/* --- FOOTER COLUMNS (SEO plan Section 7.7) ------------------ */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-block: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1rem;
}
.footer-column h3 {
    color: var(--slt-white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}
.footer-column ul { list-style: none; margin: 0; padding: 0; }
.footer-column li { margin-bottom: 0.35rem; font-size: 0.875rem; }
/* Two columns hold down to phone widths (a 412px screen fits two comfortably) */
@media (max-width: 960px) { .footer-columns { grid-template-columns: repeat(2, 1fr); } }

.country-switcher-label { font-size: 0.875rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.country-switcher {
    background-color: transparent;
    color: var(--slt-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    padding: 0.2rem 0.4rem;
    font-size: 0.875rem;
}
.country-switcher option { color: #222; }

/* --- LOCALE SUGGESTION BANNER ------------------------------- */
.locale-banner {
    /* Distinct from the blue header-top below it, which it otherwise bleeds into */
    background-color: var(--slt-dark);
    color: var(--slt-white);
    font-size: 0.9rem;
}
.locale-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-block: 0.5rem;
}
.locale-banner a { color: var(--slt-white); text-decoration: underline; font-weight: 600; }
.locale-banner-dismiss {
    background: none;
    border: none;
    color: var(--slt-white);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.25rem;
}

/* --- NAV RESOURCES DROPDOWN (SEO plan Section 7.6) ----------- */
.nav-dropdown { position: relative; }
/* "Resources" is a disclosure button styled like the other nav links: keyboard
   users open the submenu explicitly, so tabbing the main nav skips its items */
.nav-dropdown-toggle {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: var(--slt-font);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.6;
    min-height: 24px;
    color: var(--slt-dark);
    white-space: nowrap;
    transition: color var(--slt-transition);
}
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle { color: var(--slt-blue); }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background-color: var(--slt-white);
    border: 1px solid var(--slt-border);
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 0.45rem 1rem;
    white-space: nowrap;
    font-weight: 400;
    font-size: 15px;
    text-transform: none;
    letter-spacing: normal;
}

/* --- CONTENT TABLES (comparison content) --------------------- */
.table-wrap { overflow-x: auto; margin-block: 1.5rem; }
.content-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.content-table caption {
    caption-side: bottom;
    font-size: 0.8rem;
    color: var(--slt-text-muted);
    padding-top: 0.5rem;
    text-align: left;
}
.content-table th,
.content-table td {
    border: 1px solid var(--slt-border);
    padding: 0.6rem 0.75rem;
    text-align: left;
    vertical-align: top;
}
.content-table thead th {
    background-color: var(--slt-blue);
    color: var(--slt-white);
    font-weight: 600;
}
.content-table tbody tr:nth-child(even) { background-color: var(--slt-light-bg); }

/* --- BREADCRUMBS --------------------------------------------- */
.breadcrumbs {
    font-size: 0.85rem;
    color: var(--slt-text-muted);
    background-color: var(--slt-light-bg);
    border-bottom: 1px solid var(--slt-border);
    padding-block: 0.6rem;
}
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.breadcrumbs li + li::before { content: "\203A"; margin-right: 0.35rem; color: var(--slt-text-muted); }
.breadcrumbs a { color: var(--slt-text-muted); }
.breadcrumbs a:hover { color: var(--slt-blue); }

/* --- LONG-FORM GUIDE PAGES ----------------------------------- */
/* Site-wide h2 is sized for big section titles (3rem desktop). Inside long
   guide articles we need reading-size headings and vertical rhythm. */
.guide-article h2 {
    font-size: 1.375rem;
    margin: 2.5rem 0 0.9rem;
}
.guide-article h2:first-child { margin-top: 0; }
.guide-article > .container > h2:first-child,
.guide-article > .container > *:first-child h2 { margin-top: 0; }
@media (min-width: 576px) { .guide-article h2 { font-size: 1.5rem; } }
@media (min-width: 960px) { .guide-article h2 { font-size: 1.75rem; } }
.guide-article h3 { margin: 1.75rem 0 0.6rem; }
.guide-article p { line-height: 1.7; }
.guide-article ul,
.guide-article ol { margin: 0 0 1.25rem; padding-left: 1.5rem; }
.guide-article li { margin-bottom: 0.5rem; line-height: 1.6; }
.guide-article li:last-child { margin-bottom: 0; }
.guide-article .table-wrap { margin-block: 1.25rem 1.75rem; }
.guide-article .btn { margin-block: 0.5rem 1rem; }

/* Sections that continue an article in an alternating band shouldn't restart
   the heading rhythm with a huge gap. */
.guide-article.page-section,
.guide-article.page-section-alt { padding-block: 3.5rem; }

/* --- PRICING LEAD LINE --------------------------------------- */
.price-lead { font-size: 1.25rem; margin-bottom: 1rem; }

/* --- GUIDE GRID ("In this guide" on hub pages) ------------------ */
/* Same treatment as Home's "Resources for Your Program": section title + step boxes. */
.guide-grid { margin-top: 2rem; }
.guide-grid .step-box {
    background-color: var(--slt-white);
    border: 1px solid #dfe3ea;
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 4px 12px rgba(16, 24, 40, .06);
    transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.guide-grid .step-box:hover { box-shadow: 0 2px 4px rgba(16, 24, 40, .06), 0 10px 24px rgba(16, 24, 40, .10); border-color: #cfd6e2; transform: translateY(-2px); }
.guide-grid .step-icon { width: 36px; height: 36px; color: var(--slt-blue-hover); margin-bottom: 0.85rem; }
.guide-card { display: block; color: var(--slt-text); text-decoration: none; }
.guide-card:hover, .guide-card:focus-visible { text-decoration: none; color: var(--slt-text); }
.guide-card h3 { color: var(--slt-blue-tint-safe); }
.guide-card:hover h3 { text-decoration: underline; }
.guide-grid .step-box h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
.guide-grid .step-box p { font-size: 0.95rem; color: #4a5160; }
/* Featured box: spans the two empty cells beside the seventh card */
.guide-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    color: var(--slt-text);
    text-decoration: none;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #eef3fb 0%, #e3ebf8 100%);
    border: 1px solid #c9d7f0;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 4px 12px rgba(16, 24, 40, .06);
}
.guide-featured:hover, .guide-featured:focus-visible { text-decoration: none; color: var(--slt-text); box-shadow: 0 2px 4px rgba(16, 24, 40, .06), 0 10px 24px rgba(16, 24, 40, .10); }
.guide-featured:hover h3 { text-decoration: underline; }
.guide-featured .step-icon { width: 56px; height: 56px; color: var(--slt-blue-hover); margin: 0; }
.guide-featured-label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slt-blue-tint-safe); margin-bottom: 0.35rem; }
.guide-featured h3 { font-size: 1.35rem; margin: 0 0 0.4rem; }
.guide-featured p { margin: 0 0 0.9rem; color: #4a5160; }
.guide-featured .btn { margin: 0; }
@media (max-width: 767px) {
    .guide-featured { grid-column: auto; grid-template-columns: 1fr; padding: 1.5rem; }
    .guide-featured .step-icon { width: 44px; height: 44px; }
}
/* "More topics" pills */
.guide-grid-more { margin-top: 1.75rem; margin-bottom: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem 0.6rem; }
.guide-grid-more strong { margin-right: 0.25rem; }
.guide-grid-more a, .page-section .guide-grid-more a:not(.btn), .guide-article .guide-grid-more a:not(.btn) {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.9rem; border-radius: 999px;
    background-color: #f1f3f6; border: 1px solid #e1e5eb;
    color: var(--slt-blue-tint-safe); font-weight: 600; font-size: 0.9rem; text-decoration: none;
}
.guide-grid-more a:hover, .guide-grid-more a:focus-visible { background-color: #e6ebf3; border-color: #c9d7f0; text-decoration: underline; }
.guide-grid-more a svg { width: 0.8em; height: 0.8em; fill: currentColor; opacity: .8; }
.guide-article .guide-grid { margin-bottom: 2.5rem; }
/* Printables index: same cards, page-1 thumbnail instead of an icon, button to the PDF */
.printable-card { display: flex; flex-direction: column; text-align: center; }
.printable-card h3 a { color: var(--slt-blue-tint-safe); }
.printable-card p { flex-grow: 1; margin-bottom: 1.1rem; }
.printable-card .btn { align-self: center; }
/* Fixed-height frame so a landscape sheet (certificates) lines up with the portrait ones */
.printable-thumb { display: flex; align-items: center; justify-content: center; width: 180px; height: 233px; margin: -0.25rem auto 1.1rem; }
.printable-thumb img { display: block; max-width: 100%; max-height: 100%; width: auto; height: auto; border: 1px solid #dfe3ea; border-radius: 4px; background-color: var(--slt-white); box-shadow: 0 1px 3px rgba(16, 24, 40, .10); transition: box-shadow .15s ease, transform .15s ease; }
.printable-thumb:hover img { box-shadow: 0 4px 12px rgba(16, 24, 40, .16); transform: translateY(-2px); }

/* --- HISTORICAL-NOTE CALLOUT (old blog posts) ----------------- */
.note-box {
    background-color: #fff6e0;
    border: 1px solid #e5d9a8;
    border-radius: 6px;
    padding: 0.75rem 1rem;
}
.note-box a:not(.btn) { color: var(--slt-blue-tint-safe); }

/* --- SECTION MODIFIER: flush top ----------------------------- */
/* For a section that reads as a continuation of the one above it, so the two
   don't stack their full padding into one oversized gap. Two classes, so it also
   wins over the responsive padding-block overrides further up the file. */
.page-section.section-flush-top,
.page-section-alt.section-flush-top,
.page-section-dark.section-flush-top { padding-top: 0; }

/* Same idea in the other direction: the section below reads as a continuation. */
.page-section.section-flush-bottom,
.page-section-alt.section-flush-bottom,
.page-section-dark.section-flush-bottom { padding-bottom: 0; }

/* --- FEATURE GRID MODIFIER: padded copy on desktop --------------- */
/* A feature panel whose copy column sits inside the white panel with 40px of
   breathing room on every side (phones already get this from .grid-2-feature). */
@media (min-width: 769px) {
    .grid-2-feature-padded .feature-text { padding: 40px; }
    .grid-2-feature-padded .feature-text p { margin-right: 0; }
}

/* ============================================================
   LIVE-SITE PARITY LAYER (2026-08-24)
   Global patterns the WordPress site uses that the Razor site lacked. See
   release-work/v5.0.3.8/web-cutover/visual-parity-plan.md for the page map.
   ============================================================ */

/* --- FEATURE GRID MODIFIER: flat on the strip ------------------ */
/* Image + copy pair sitting directly on the section background (grey strip or
   white), no white panel, normal container gutters on phones. This is how the
   live site lays out every image/text pair outside the home page. */
.grid-2-feature-flat { background-color: transparent; }
.grid-2-feature-flat .feature-text h2 { margin-bottom: 1rem; }
@media (max-width: 768px) {
    .grid-2-feature-flat { gap: 1.5rem; }
    .grid-2-feature-flat .feature-text { padding: 0; }
}

/* --- FEATURE COPY HEADING SCALE ---------------------------------- */
/* The live site's feature-pair headings sit between the site h2 (3rem) and
   the guide h2 (1.75rem). One rule instead of per-page overrides. */
.feature-text h2 { font-size: 1.75rem; }
@media (min-width: 576px) { .feature-text h2 { font-size: 2.25rem; } }
@media (min-width: 960px) { .feature-text h2 { font-size: 2.625rem; } }

/* --- BOXED GREY PANEL (container width) -------------------------- */
/* The live site's "benefit row" and "info card" treatment: a grey card inside
   the container, not a full-width strip. Stack several with .panel-alt-stack. */
.panel-alt {
    background-color: var(--slt-light-bg);
    border-radius: 4px;
    padding: 2.5rem;
}
.panel-alt-stack > .panel-alt + .panel-alt,
.panel-alt-stack > * + * { margin-top: 2rem; }
.panel-alt p a:not(.btn),
.panel-alt li a:not(.btn) { color: var(--slt-blue-tint-safe); }
@media (max-width: 768px) {
    .panel-alt { padding: 1.5rem; }
}
/* Card grids on phones: keep the cards apart instead of collapsing into one block */
@media (max-width: 768px) {
    .grid-2 > .panel-alt + .panel-alt,
    .grid-3 > .panel-alt + .panel-alt,
    .grid-4 > .panel-alt + .panel-alt { margin-top: 0; }
    .grid-3.nogap-mobile > .panel-alt,
    .grid-3.nogap-mobile > .icon-box-stacked { margin-bottom: 1rem; }
}

/* --- BENEFIT ROW (grey panel, big grey icon, centered heading) ---- */
.benefit-row .benefit-icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: #8a8a8a;
    fill: currentColor;
}
.benefit-row h3 { text-align: center; font-size: 1.375rem; margin-bottom: 0.75rem; }
.benefit-row .benefit-refs { text-align: center; font-size: 0.85rem; font-style: italic; color: var(--slt-text-muted); }
.benefit-row .benefit-refs a { color: var(--slt-blue-tint-safe); }
.benefit-row ul.check-list { list-style: none; padding-left: 0; }
.benefit-row ul.check-list li { position: relative; padding-left: 1.6rem; margin-bottom: 0.75rem; }
.benefit-row ul.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; font-weight: 700; color: var(--slt-blue-tint-safe); }
@media (min-width: 960px) { .benefit-row h3 { font-size: 1.5rem; } }

/* --- SOLID BLUE BAND: body copy + button ------------------------- */
/* .page-section-blue already styles h2; the live site also uses the band for
   bold centered paragraphs (two-column) and a rounded orange CTA. */
.page-section-blue p,
.page-section-blue li { color: var(--slt-white); font-weight: 600; font-size: 1.125rem; text-align: center; line-height: 1.5; }
.page-section-blue a:not(.btn) { color: var(--slt-white); text-decoration: underline; }
.page-section-blue a:not(.btn):hover { color: var(--slt-white); }
.page-section-blue .btn { border-radius: 6px; }
.page-section-blue .quote { margin-top: 1.5rem; text-align: center; }
.page-section-blue-band { padding-block: 2.5rem; }
@media (min-width: 960px) { .page-section-blue p { font-size: 1.25rem; } }

/* --- PAGE TITLE BANNER: live proportions + optional rule ---------- */
.page-section-banner { padding-block: 2.75rem 1.5rem; }
.page-section-banner-rule .container { border-bottom: 1px solid var(--slt-border); padding-bottom: 1.25rem; }
.page-section-banner-rule { padding-bottom: 0; margin-bottom: 2rem; }
@media (max-width: 768px) {
    .page-section-banner { padding-block: 2.25rem 1.5rem; }
    .page-section-banner h1 { font-size: 2.25rem; }
    .container { padding-inline: 1.75rem; }
}

/* --- PROSE RHYTHM ------------------------------------------------ */
/* Sub-headings get air before their paragraph; lists get air after them.
   Guide articles and blog posts already set their own rhythm and are excluded. */
.page-content h3,
.page-content h4 { margin-bottom: 0.5rem; }
.guide-article h3 { margin-bottom: 0.6rem; }
.blog-post-content h3,
.blog-post-content h4 { margin-bottom: 0.75rem; }
.single-page-content h1 { padding-bottom: 1rem; border-bottom: 1px solid var(--slt-border); margin-bottom: 2.5rem; }
.single-page-content h4 { margin-bottom: 0.75rem; }
.single-page-content ul,
.single-page-content ol { margin-bottom: 1.5rem; }
.single-page-content li { margin-bottom: 0.5rem; }
.single-page-content p,
.single-page-content ul,
.single-page-content ol { padding-inline: 0.5rem; }

/* --- TYPE SCALE ---------------------------------------------------- */
/* Phones read at 17px on the live site; icon features and FAQ questions are a
   step larger than the local defaults. */
@media (max-width: 768px) {
    body { font-size: 1.0625rem; }
    p, li { font-size: 1.0625rem; }
    .text-small { font-size: 0.95rem; }
}
.icon-box-content h3 { font-size: 1.375rem; margin-bottom: 0.6rem; }
.icon-box-content p { font-size: 1rem; }
.icon-box-stacked { gap: 1.25rem; }
.faq-list .faq-item { border-bottom: 0; padding: 1.5rem 0; }
.faq-list .faq-item h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
@media (min-width: 960px) { .faq-list .faq-item h3 { font-size: 1.5rem; } }
.faq-list .faq-item p { font-size: 1.0625rem; }

/* --- FORMS: live proportions --------------------------------------- */
.form-field input,
.form-field select {
    min-height: 48px;
    padding: 0.75rem 0.9rem;
    background-color: #f7f7f7;
}
.form-field textarea { padding: 0.75rem 0.9rem; background-color: #f7f7f7; }
.form-submit { text-align: left; }
.form-submit .btn { min-width: 180px; }
@media (max-width: 768px) { .form-submit .btn { display: block; width: 100%; } }

/* --- CALLOUT BOX (bordered, bold, red lead word) ------------------- */
.callout {
    border: 1px solid var(--slt-border);
    background-color: var(--slt-light-bg);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.5;
}
.callout p { font-size: inherit; }
.callout a:not(.btn) { color: var(--slt-blue-tint-safe); }
.callout-lead,
.heading-lead { color: #b3261e; font-weight: 700; }
.heading-lead { text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 768px) { .callout { font-size: 1.1875rem; padding: 1rem 1.25rem; } }

/* --- MID-GREY BANNER + BUTTON BAR --------------------------------- */
.page-section-mid {
    background-color: #6b6b6b;
    color: var(--slt-white);
    padding-block: 2.5rem;
    text-align: center;
}
.page-section-mid h2,
.page-section-mid h3 { color: var(--slt-white); margin-bottom: 0.75rem; }
.page-section-mid p { color: var(--slt-white); }
.page-section-mid-bar {
    background-color: var(--slt-light-bg);
    padding-block: 1.5rem;
}
.page-section-mid-bar .button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
@media (max-width: 768px) { .page-section-mid-bar .button-row .btn { flex: 1 1 100%; } }

/* --- CENTERED INTRO (heading + larger lead) ------------------------ */
.section-intro-lg { text-align: center; max-width: 860px; margin-inline: auto; font-size: 1.25rem; margin-bottom: 2rem; }

/* --- FEATURE ICONS (5-column grid): large grey, heading above ------ */
.grid-5 .feature-icon { width: 56px; height: 56px; color: #8a8a8a; margin: 0.75rem auto 1rem; display: block; }
.grid-5 h3 { font-size: 1.25rem; min-height: 0; }
@media (max-width: 576px) { .grid-5 > div + div { margin-top: 1.5rem; } }

/* --- TWO-COLUMN ROWS WITH RULES (pricing "includes") --------------- */
.ruled-rows > .grid-2 { padding-block: 1.5rem; border-bottom: 1px solid var(--slt-border); align-items: start; }
.ruled-rows > .grid-2:last-child { border-bottom: 0; }
.ruled-rows > .grid-2:first-child { padding-top: 0; }

/* --- SAMPLE REPORT CARDS ------------------------------------------ */
.report-card {
    border: 1px solid var(--slt-border);
    border-radius: 4px;
    padding: 1.25rem;
    background-color: var(--slt-white);
    text-align: center;
}
.report-card img { margin-inline: auto; margin-bottom: 0.75rem; border: 1px solid var(--slt-border); }
.report-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.report-card p { font-size: 0.95rem; }

/* --- VALUE ROWS (inline check icon + heading) ---------------------- */
.value-row { display: flex; align-items: flex-start; gap: 0.75rem; text-align: left; }
.value-row svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--slt-blue); fill: currentColor; margin-top: 0.15rem; }
.value-row h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

/* --- HERO: breathing room under the header, gutter on phones ------- */
.hero-section { margin-top: 0; }
@media (min-width: 961px) { .hero-section { margin-top: 1.5rem; } }
@media (max-width: 767px) {
    .hero-section .container { padding-inline: 1.5rem; }
    .hero-section { padding-top: 1.5rem; }
}

/* --- DARK CTA: live proportions ----------------------------------- */
.page-section-dark.cta-band { padding-block: 4.5rem; }
.page-section-dark.cta-band .cta-lead { font-size: 1.25rem; max-width: 800px; }
@media (max-width: 768px) { .page-section-dark.cta-band { padding-block: 3rem; } }

/* --- BLOG INDEX: live proportions --------------------------------- */
.blog-card { border-bottom: 1px solid var(--slt-border); }
.blog-card-body h2 { font-size: 2rem; }
@media (min-width: 960px) { .blog-card-body h2 { font-size: 2.5rem; } }
.blog-card.blog-card-reverse .blog-card-image { order: 2; }
.blog-card.blog-card-noimage { grid-template-columns: 1fr; }
/* Live shows each lead image whole (logos included) — no fixed-height crop */
.blog-card-image img { height: auto; object-fit: initial; }
.blog-card .read-more { display: inline; }
.blog-pagination a,
.blog-pagination span { border: 0; padding: 0 0.25rem; font-size: 1rem; }
.blog-pagination .current { background: none; color: var(--slt-text); font-weight: 700; }
@media (max-width: 768px) { .blog-card.blog-card-reverse .blog-card-image { order: 0; } }


/* --- PAGE-LEVEL PARITY ADDITIONS (2026-08-24) ---------------------- */
/* --- Home + About Us parity additions (merge into site.css) --------------- */
/* Home "Safe and Secure": pledge badge centered under the copy with its link line */
.privacy-badge { text-align: center; margin-top: 1.5rem; }
.privacy-badge img { display: inline-block; width: 150px; height: auto; margin-bottom: 0.75rem; }
.privacy-badge a:hover { text-decoration: none; }
/* Home testimonials: live quotes are upright at body size with more room above the name */
.testimonial-quote { font-style: normal; font-size: 1rem; }
.testimonial { gap: 1.25rem; }
/* About Us dark "About Our Company": larger heading with a gap before the story */
.company-story h3 { font-size: 1.5rem; margin-bottom: 1rem; }
@media (max-width: 768px) {
    /* Values stack on phones with room between each row */
    .grid-3 > .value-row + .value-row { margin-top: 0.5rem; }
}

/* --- CONTACT / FAQ / CLASS LIST parity additions (merge into site.css) --- */

/* .form-alert sets display:flex, which beats the hidden attribute — the success
   alert was showing on first load. */
.form-alert[hidden] { display: none; }

/* Contact info cards: live proportions (40px inner padding, cards kept apart on phones) */
.contact-cards .icon-box-stacked { padding: 2.5rem 1.5rem; }
@media (max-width: 768px) { .contact-cards { gap: 1.5rem; } }

/* FAQ hero: image sized like the live site, heading dominates */
.faq-hero .grid-2 { grid-template-columns: 5fr 6fr; align-items: center; }
.faq-hero img { max-width: 540px; }
.faq-hero h1 { margin-bottom: 1rem; }
@media (max-width: 768px) { .faq-hero .grid-2 { grid-template-columns: 1fr; } }

/* Class List Instructions */
.spaced-list li { margin-bottom: 0.6rem; }
.page-section-mid h2 { font-size: 2.5rem; font-weight: 400; margin-bottom: 1rem; }
.page-section-mid .format-list { list-style: none; padding: 0; margin: 0; }
.page-section-mid .format-list li { font-weight: 600; color: var(--slt-white); margin-bottom: 0.4rem; }
.page-section-mid-bar { border: 1px solid var(--slt-border); border-top: 0; }
.page-section-mid-bar h3 { font-size: 1.375rem; margin-bottom: 1rem; }
.page-section-mid-bar .btn-secondary { background-color: #6b6b6b; } /* 5.3:1 on white text (AA) */
.page-section-mid-bar .btn-secondary:hover { background-color: var(--slt-dark); color: var(--slt-white); }
.sending-options { align-items: stretch; }

/* --- How It Works: middle step card stays white (live tints only Run and Report) --- */
.step-box.step-box-plain { background-color: transparent; }

/* --- Pricing: title + grey-tinted borderless price box, lead price on its own line --- */
.price-title { margin-bottom: 0.5rem; }
.price-subtitle { margin-bottom: 1rem; color: var(--slt-text-muted); }
.pricing-package { background-color: var(--slt-light-bg); border: 0; border-radius: 0; }
.pricing-package .price-lead { font-size: 0.95rem; }
.pricing-package .price-lead strong { display: block; font-size: 1.75rem; line-height: 1.2; margin-bottom: 0.35rem; }
.pricing-package .package-features li { border-bottom-color: #d6d6d6; }
.pricing-package .package-features li:last-child { border-bottom: 0; }
/* Guarantee photo: centered on desktop, edge to edge on phones */
.guarantee-photo { margin-inline: auto; }

/* --- Privacy Policy (full-container prose page, live proportions) --- */
.prose-page h1 { padding-bottom: 1rem; border-bottom: 1px solid var(--slt-border); margin-bottom: 2.5rem; }
.prose-page h4 { margin-top: 1.75rem; margin-bottom: 0.75rem; }
.prose-page p { margin-bottom: 1.25rem; }
.prose-page ul,
.prose-page ol { margin-bottom: 1.5rem; }
.prose-page li { margin-bottom: 0.5rem; }
.prose-page p,
.prose-page ul,
.prose-page ol { padding-inline: 0.5rem; }

/* Reports page: PDF sample cards (live-site parity) */
.report-card a { display: block; color: var(--slt-text); }
.report-card a:hover { text-decoration: none; color: var(--slt-blue); }
.report-card-icon { display: block; margin: 0.5rem auto 0.75rem; color: #8a8a8a; }
.report-card a:hover .report-card-icon { color: var(--slt-blue); }
.report-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
/* Blog index: "by author / date" meta separator */
.blog-meta .meta-sep { margin-inline: 0.35rem; }


/* --- COOKIE CONSENT BANNER ---------------------------------- */
/* Styles live here (not in the partial) because a style element is
   not valid inside body per the HTML standard. */
    #cookieConsent {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 1000;
        background-color: #fff;
        border-top: 1px solid #ccc;
        padding: 5px 20px;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    }

    #cookieConsent h3 {
        font-size: 15px;
        text-align: center;
        margin: 20px 0 10px;
    }

    #cookieConsent p {
        font-size: 14px;
        color: #000;
        font-weight: 500;
        background-color: #fff;
        opacity: 1;
        margin-bottom: 10px;
    }

    #cookieConsent .accept-btn {
        display: block;
        width: 100%;
        font-size: 15px;
        text-transform: uppercase;
    }

    #cookieConsent .links {
        text-align: center;
        margin-top: 12px;
        font-size: 12px;
    }

    #cookieConsent a { color: var(--slt-blue); }

    /* The portal renders this as a Bootstrap btn-link; recreate that look here */
    #cookieConsent .reject-btn {
        padding: 0;
        font-size: 12px;
        vertical-align: baseline;
        background: none;
        border: none;
        color: var(--slt-blue);
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0;
        cursor: pointer;
    }

    #cookieConsent .reject-btn:hover { text-decoration: underline; }

    @media (min-width: 768px) {
        #cookieConsent {
            width: 450px;
            border: solid 1px #eee;
            border-radius: 12px;
            right: 20px;
            bottom: 20px;
            left: auto;
        }
    }

    @media print {
        #cookieConsent { display: none; }
    }
