/*#region Fonts*/

/*#region Inter */

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900; /* Weight range from Thin to Black */
    font-style: normal;
    font-display: swap;
    font-variation-settings: 'opsz' 14; /* Lock optical size */
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
    font-variation-settings: 'opsz' 14; /* Lock optical size */
}

/*#endregion*/

/*#region Google Material Symbols*/

@font-face {
    font-family: 'Material Symbols Outlined';
    src: url('/material-symbols/Material_Symbols_Outlined/static/MaterialSymbolsOutlined-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*@font-face {
    font-family: 'Material Symbols Outlined';
    src: url('/material-symbols/Material_Symbols_Outlined/MaterialSymbolsOutlined-VariableFont_FILL,GRAD,opsz,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}*/

/*@font-face {
    font-family: 'Material Symbols Rounded';
    src: url('/material-symbols/Material_Symbols_Rounded/MaterialSymbolsRounded-VariableFont_FILL,GRAD,opsz,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Material Symbols Sharp';
    src: url('/material-symbols/Material_Symbols_Sharp/MaterialSymbolsSharp-VariableFont_FILL,GRAD,opsz,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}*/

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    transition: transform 0.2s ease-in-out;
    /*font-variation-settings: 'FILL' 0,'wght' 280,'GRAD' 0,'opsz' 20;*/
}

    .material-symbols-outlined.material_small {
        font-size: 14px;
    }
/*This will be the same as a SOLID icon in font-awesome*/
/*.material-symbols-outlined-filled {
    font-variation-settings: 'FILL' 1, 'opsz' 48;
}*/
/*#endregion*/

/*#endregion*/

/*#region Master*/

:root {
    /* Site Colors */
    --accent: #96bc33; /* main brand color */
    --accent-hover: #7fa02c; /* ~15–18% darker – good for hover/pressed */
    --accent-light: #f0f7e6; /* very light tint – subtle highlight bg */
    --accent-danger: #e54527; /* danger color */
    --accent-danger-hover: #c23a20; /* ~15–18% darker – good for hover/pressed */
    --accent-danger-light: #fdf0ed; /* very light tint – subtle highlight bg */
    --white: #fff;
    --off-black: #1a1a1a;
    --light-gray: #f4f5f7;
    --dark-gray: #6c7988;
    --light-border-colour: rgba(0, 0, 0, 0.08);
    /* End Site Colors */
    /* Typography */
    --font-inter: 'Inter', sans-serif;
    --text-main: #212529;
    --text-muted: #6b7280;
    --weight-thin: 100;
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    /* End Typography */
}

html {
    font-size: 14px;
    margin: 0;
    padding: 0;
    overflow-y: auto !important;
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    text-rendering: optimizeSpeed;
    scrollbar-width: thin;
    margin: 0;
}

a, input {
    outline: 0;
    text-decoration: none;
}

a {
    color: var(--accent);
    transition: all 200ms linear 0s;
    cursor: pointer;
}

    a:hover {
        text-decoration: none;
    }

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 500ms ease-out;
}

.loader-container {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-border-colour);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spinNTS 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-text {
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 500;
}

@keyframes spinNTS {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hide the overlay when loading is complete */
#loading-overlay.loaded {
    opacity: 0;
    pointer-events: none;
    display: none !important;
}

/* Add transition for content wrapper */
#content-wrapper {
    opacity: 0;
    transition: opacity 500ms ease-in;
}

    #content-wrapper.visible {
        opacity: 1;
    }

.input-validation-error {
    border-color: var(--bs-form-invalid-border-color) !important;
    border-width: 1px !important;
    border-style: solid !important;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

    .input-validation-error:focus {
        border-color: var(--bs-form-invalid-border-color) !important;
        box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .15) !important;
    }

/* Override any border utility classes when validation error occurs */
.form-control.border-0.input-validation-error,
.form-select.border-0.input-validation-error {
    border: 1px solid var(--bs-form-invalid-border-color) !important;
}

.form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
    opacity: 1 !important;
}



.toast-bg-success {
    background-color: var(--accent) !important;
}

.toast-bg-error {
    background-color: var(--accent-danger) !important;
}



/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 99px;
}


/*#endregion Master*/


/*#region Navbar*/

.nts-navbar {
    background: rgba(15, 15, 15, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.875rem 0;
    transition: background 0.3s ease;
}

.nts-brand .brand-logo {
    height: 44px;
    width: auto;
}

.nts-nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9375rem;
    font-weight: var(--weight-medium);
    padding: 0.5rem 0.875rem !important;
    border-radius: 6px;
    transition: all 0.18s ease;
    text-decoration: none;
    display: block;
}

    .nts-nav-link:hover {
        color: var(--white) !important;
        background: rgba(255, 255, 255, 0.08);
    }

.nts-nav-link--active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
}

.nts-trial-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    background: var(--accent);
    color: var(--white) !important;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: var(--weight-semibold);
    text-decoration: none;
    transition: all 0.18s ease;
    white-space: nowrap;
}

    .nts-trial-btn .material-symbols-outlined {
        font-size: 18px;
        transition: transform 0.18s ease;
    }

    .nts-trial-btn:hover {
        background: var(--accent-hover);
        color: var(--white) !important;
    }

        .nts-trial-btn:hover .material-symbols-outlined {
            transform: translateX(3px);
        }

.nts-toggler {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.375rem 0.5rem;
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
}

    .nts-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .nts-toggler .material-symbols-outlined {
        font-size: 22px;
    }

/*#endregion Navbar*/

/*#region Homepage*/

/* ---- Hero ---- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    position: relative;
    overflow: hidden;
    padding: 7rem 1.5rem 5rem;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(150, 188, 51, 0.13) 0%, transparent 65%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    text-align: center;
    padding: 0 1rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.4375rem 1rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: var(--weight-medium);
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    letter-spacing: 0.01em;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(150, 188, 51, 0.25);
    flex-shrink: 0;
    animation: dot-pulse 2.5s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(150, 188, 51, 0.25);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(150, 188, 51, 0.15);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--weight-bold);
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--off-black);
    margin-bottom: 1rem;
}

.hero-accent {
    background: linear-gradient(135deg, #96bc33 0%, #b5d94a 60%, #7fa02c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem !important;
}

.hero-tagline {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: var(--weight-semibold);
    color: var(--off-black);
    max-width: 720px;
    margin: 0 auto 2.5rem;
    letter-spacing: -0.015em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--off-black);
    color: var(--white) !important;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: var(--weight-semibold);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid var(--off-black);
    letter-spacing: -0.01em;
}

    .hero-btn-primary .material-symbols-outlined {
        font-size: 18px;
        transition: transform 0.2s ease;
    }

    .hero-btn-primary:hover {
        background: #111;
        border-color: #111;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

        .hero-btn-primary:hover .material-symbols-outlined {
            transform: translateX(3px);
        }

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    color: var(--off-black) !important;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: var(--weight-medium);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid rgba(0, 0, 0, 0.12);
    letter-spacing: -0.01em;
}

    .hero-btn-ghost:hover {
        border-color: var(--off-black);
        background: rgba(0, 0, 0, 0.04);
    }

/* ---- Sub-Hero ---- */
.hero-sub {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 4rem 1.5rem 4rem;
}

.hero-sub-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 2rem;
}

.hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: rgba(150, 188, 51, 0.1);
    border: 1px solid rgba(150, 188, 51, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    color: var(--accent);
}

    .hero-badge .material-symbols-outlined {
        font-size: 16px;
    }

.hero-badge-link {
    color: var(--off-black);
    font-weight: var(--weight-semibold);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding-bottom: 1px;
    transition: border-color 0.15s ease;
}

    .hero-badge-link:hover {
        border-bottom-color: var(--off-black);
    }

.hero-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 0.25rem;
    min-width: 0;
    padding: 0 0.5rem;
}

    .hero-stat:last-child {
        flex: 1.3;
    }

    .hero-stat strong {
        font-size: 1.375rem;
        font-weight: var(--weight-bold);
        color: var(--off-black);
        letter-spacing: -0.02em;
        line-height: 1.2;
        text-align: center;
    }

    .hero-stat span {
        font-size: 0.75rem;
        color: var(--text-muted);
        font-weight: var(--weight-medium);
        text-align: center;
        line-height: 1.3;
    }

.hero-footnote {
    max-width: 860px;
    margin: 0.75rem auto 0;
    padding: 0 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    opacity: 0.7;
}

/* ---- Section Headers (shared) ---- */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
    padding: 0 1rem;
}

.section-header--dark {
    margin-bottom: 3rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4375rem 1rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

    .section-eyebrow .material-symbols-outlined {
        font-size: 16px;
    }

.section-eyebrow--accent {
    background: rgba(150, 188, 51, 0.1);
    border-color: rgba(150, 188, 51, 0.25);
    color: var(--accent);
}

.section-title {
    font-size: 2.75rem;
    font-weight: var(--weight-bold);
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--off-black);
    margin-bottom: 1rem;
}

.section-title--light {
    color: var(--white);
}

    .section-title--light span {
        color: rgba(255, 255, 255, 0.4);
    }

.section-title span {
    color: var(--text-muted);
    font-weight: var(--weight-semibold);
}

.text-accent {
    background: linear-gradient(135deg, #96bc33 0%, #b5d94a 60%, #7fa02c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.section-desc--muted {
    color: rgba(255, 255, 255, 0.35);
}

/* ---- Value Compare ---- */
.value-compare {
    background: var(--off-black);
    padding: 4rem 1.5rem;
}

.value-compare-context {
    max-width: 1100px;
    margin: 0 auto 1.75rem;
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.value-compare-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.value-compare-label {
    font-size: 1.1rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.value-compare-old {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 2rem;
}

    .value-compare-old .value-compare-label {
        color: rgba(255, 255, 255, 0.75);
    }

.value-compare-new {
    background: rgba(150, 188, 51, 0.08);
    border: 1px solid rgba(150, 188, 51, 0.3);
    border-radius: 14px;
    padding: 2rem;
}

    .value-compare-new .value-compare-label {
        color: var(--accent);
    }

.value-compare-items {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    margin-bottom: 2rem;
}

.value-compare-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

    .value-compare-item .material-symbols-outlined {
        font-size: 20px;
        flex-shrink: 0;
        margin-top: 2px;
    }

.value-compare-old .value-compare-item .material-symbols-outlined {
    color: rgba(229, 69, 39, 0.8);
}

.value-compare-new .value-compare-item .material-symbols-outlined {
    color: var(--accent);
}

.value-compare-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: var(--weight-semibold);
    margin-bottom: 0.125rem;
}

.value-compare-old .value-compare-item strong {
    color: rgba(255, 255, 255, 0.7);
}

.value-compare-new .value-compare-item strong {
    color: var(--white);
}

.value-compare-item span {
    font-size: 0.8125rem;
    line-height: 1.5;
}

.value-compare-old .value-compare-item span {
    color: rgba(255, 255, 255, 0.35);
}

.value-compare-new .value-compare-item span {
    color: rgba(255, 255, 255, 0.5);
}

.value-compare-total {
    font-size: 1.75rem;
    font-weight: var(--weight-bold);
    letter-spacing: -0.03em;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

    .value-compare-total span {
        font-size: 0.875rem;
        font-weight: var(--weight-medium);
        letter-spacing: 0;
    }

.value-compare-total--bad {
    color: rgba(255, 255, 255, 0.4);
}

    .value-compare-total--bad span {
        color: rgba(229, 69, 39, 0.7);
    }

.value-compare-total--good {
    color: var(--accent);
    border-top-color: rgba(150, 188, 51, 0.2);
}

    .value-compare-total--good span {
        color: rgba(150, 188, 51, 0.65);
    }

.value-compare-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

    .value-compare-divider .material-symbols-outlined {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.4);
    }

/* ---- Bento Grid ---- */
.bento-section {
    background: var(--white);
    padding: 5rem 1.5rem 6rem;
}

.bento-tagline {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
    font-weight: var(--weight-medium);
    color: var(--text-muted);
    text-align: center;
    letter-spacing: -0.01em;
}

.bento-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.bento-card {
    border-radius: 16px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .bento-card:hover {
        transform: translateY(-3px);
    }

    .bento-card h3 {
        font-size: 1.25rem;
        font-weight: var(--weight-semibold);
        letter-spacing: -0.02em;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .bento-card p {
        font-size: 0.9375rem;
        line-height: 1.65;
        margin: 0;
    }

.bento-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .bento-card-icon .material-symbols-outlined {
        font-size: 22px;
    }

/* Featured (big dark card) */
.bento-featured {
    grid-column: span 7;
    grid-row: span 2;
    background: var(--off-black);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
}

    .bento-featured:hover {
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    }

    .bento-featured .bento-card-icon {
        background: rgba(255, 255, 255, 0.1);
    }

        .bento-featured .bento-card-icon .material-symbols-outlined {
            color: var(--accent);
        }

    .bento-featured h3 {
        color: var(--white);
        font-size: 1.5rem;
    }

    .bento-featured p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 1rem;
        flex-grow: 1;
        margin-top: 0.75rem;
    }

.bento-points {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

    .bento-points li {
        display: flex;
        align-items: flex-start;
        gap: 0.625rem;
        font-size: 0.9375rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.65);
    }

        .bento-points li .material-symbols-outlined {
            font-size: 18px;
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 1px;
        }

.bento-big-stat {
    margin-top: 2rem;
    font-size: 3rem;
    font-weight: var(--weight-bold);
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
}

    .bento-big-stat span {
        font-size: 1rem;
        font-weight: var(--weight-medium);
        color: rgba(255, 255, 255, 0.45);
        letter-spacing: 0;
    }

/* Remote support card */
.bento-remote {
    grid-column: span 5;
    background: var(--light-gray);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--off-black);
}

    .bento-remote:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    }

    .bento-remote .bento-card-icon {
        background: var(--off-black);
    }

        .bento-remote .bento-card-icon .material-symbols-outlined {
            color: var(--white);
        }

    .bento-remote p {
        color: var(--text-muted);
    }

/* Home page specific bento styles */
.home-bento-dark {
    background: var(--off-black) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

    .home-bento-dark:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
    }

    .home-bento-dark h3 {
        color: var(--white) !important;
    }

    .home-bento-dark p {
        color: rgba(255, 255, 255, 0.65) !important;
    }

    .home-bento-dark .bento-card-icon {
        background: rgba(255, 255, 255, 0.1) !important;
    }

        .home-bento-dark .bento-card-icon .material-symbols-outlined {
            color: var(--accent) !important;
        }

    .home-bento-dark .bento-points li {
        color: rgba(255, 255, 255, 0.65) !important;
    }

        .home-bento-dark .bento-points li .material-symbols-outlined {
            color: var(--accent) !important;
        }

.home-bento-accent {
    background: var(--accent) !important;
    color: var(--white) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

    .home-bento-accent:hover {
        box-shadow: 0 8px 24px rgba(150, 188, 51, 0.35) !important;
    }

    .home-bento-accent h3 {
        color: var(--white) !important;
    }

    .home-bento-accent p {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .home-bento-accent .bento-card-icon {
        background: rgba(255, 255, 255, 0.2) !important;
    }

        .home-bento-accent .bento-card-icon .material-symbols-outlined {
            color: var(--white) !important;
        }

    .home-bento-accent .bento-team-link {
        color: rgba(255, 255, 255, 0.9) !important;
        border-bottom-color: rgba(255, 255, 255, 0.35) !important;
    }

        .home-bento-accent .bento-team-link:hover {
            color: var(--white) !important;
            border-bottom-color: var(--white) !important;
        }

/* Dark cards */
.bento-dark {
    background: var(--off-black);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

    .bento-dark:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }

    .bento-dark h3 {
        color: var(--white);
    }

    .bento-dark p {
        color: rgba(255, 255, 255, 0.65);
    }

    .bento-dark .bento-card-icon {
        background: rgba(255, 255, 255, 0.1);
    }

        .bento-dark .bento-card-icon .material-symbols-outlined {
            color: var(--accent);
        }

/* Light cards (row 2) */
.bento-light {
    grid-column: span 5;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--off-black);
}

    .bento-light:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
        border-color: rgba(0, 0, 0, 0.15);
    }

    .bento-light p {
        color: var(--text-muted);
    }

.bento-price-per-day {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.875rem;
    color: var(--text-muted);
}

    .bento-price-per-day strong {
        font-size: 1.125rem;
        font-weight: var(--weight-bold);
        color: var(--accent);
        display: block;
        margin-bottom: 0.125rem;
    }

.bento-icon-accent {
    background: var(--accent-light);
}

    .bento-icon-accent .material-symbols-outlined {
        color: var(--accent);
    }

/* Accent card (SA built) */
.bento-accent-card {
    grid-column: span 3;
    background: var(--accent);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--white);
}

    .bento-accent-card:hover {
        box-shadow: 0 8px 24px rgba(150, 188, 51, 0.35);
    }

    .bento-accent-card .bento-card-icon {
        background: rgba(255, 255, 255, 0.2);
    }

        .bento-accent-card .bento-card-icon .material-symbols-outlined {
            color: var(--white);
        }

    .bento-accent-card h3 {
        color: var(--white);
    }

    .bento-accent-card p {
        color: rgba(255, 255, 255, 0.8);
    }

.bento-inline-link {
    color: var(--off-black);
    font-weight: var(--weight-semibold);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    padding-bottom: 1px;
    transition: border-color 0.15s ease;
}

    .bento-inline-link:hover {
        border-bottom-color: var(--off-black);
    }

.bento-team-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    font-weight: var(--weight-semibold);
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 1px;
    transition: all 0.15s ease;
}

    .bento-team-link .material-symbols-outlined {
        font-size: 14px;
    }

    .bento-team-link:hover {
        color: var(--white) !important;
        border-bottom-color: var(--white);
    }

.footer-built-by {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0.75rem 0 0;
}

    .footer-built-by a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.15s ease;
    }

        .footer-built-by a:hover {
            color: var(--accent);
        }

/*#endregion*/

/*#region Privacy Policy*/

.privacy-hero {
    background: var(--off-black);
    padding: 6rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .privacy-hero::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(150, 188, 51, 0.05) 0%, transparent 65%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

.privacy-hero-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(150, 188, 51, 0.1);
    border: 1px solid rgba(150, 188, 51, 0.25);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    color: var(--accent);
    margin-bottom: 2rem;
}

    .privacy-eyebrow .material-symbols-outlined {
        font-size: 18px;
    }

.privacy-title {
    font-size: 3.5rem;
    font-weight: var(--weight-bold);
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.privacy-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    max-width: 640px;
    margin: 0 auto;
}

.privacy-content {
    background: var(--light-gray);
    padding: 5rem 1.5rem;
}

.privacy-inner {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.privacy-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

    .privacy-section-header .material-symbols-outlined {
        width: 44px;
        height: 44px;
        background: var(--accent-light);
        color: var(--accent);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
    }

    .privacy-section-header h2 {
        font-size: 1.375rem;
        font-weight: var(--weight-bold);
        color: var(--off-black);
        letter-spacing: -0.02em;
        margin: 0;
    }

.privacy-section-content {
    color: var(--text-main);
    line-height: 1.7;
}

    .privacy-section-content p {
        margin-bottom: 1rem;
    }

.privacy-lead {
    font-size: 1rem;
    font-weight: var(--weight-medium);
    color: var(--text-main);
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.privacy-grid-column {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.privacy-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    font-size: 0.9375rem;
}

    .privacy-item .material-symbols-outlined {
        color: var(--accent);
        font-size: 18px;
        flex-shrink: 0;
    }

.privacy-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin: 1.25rem 0;
}

.privacy-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: var(--light-gray);
    border-radius: 10px;
    font-size: 0.9375rem;
}

    .privacy-list-item .material-symbols-outlined {
        color: var(--accent);
        font-size: 20px;
        flex-shrink: 0;
    }

.privacy-callout {
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid;
}

.privacy-callout--info {
    background: rgba(150, 188, 51, 0.06);
    border-left-color: var(--accent);
}

.privacy-callout--security {
    background: rgba(26, 26, 26, 0.04);
    border-left-color: var(--off-black);
}

.privacy-callout-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.875rem;
}

    .privacy-callout-header .material-symbols-outlined {
        font-size: 20px;
    }

.privacy-callout--info .privacy-callout-header .material-symbols-outlined {
    color: var(--accent);
}

.privacy-callout--security .privacy-callout-header .material-symbols-outlined {
    color: var(--off-black);
}

.privacy-callout-header h4 {
    font-size: 1rem;
    font-weight: var(--weight-semibold);
    margin: 0;
}

.privacy-callout--info .privacy-callout-header h4 {
    color: var(--accent);
}

.privacy-callout--security .privacy-callout-header h4 {
    color: var(--off-black);
}

.privacy-callout-content ul {
    margin: 0.75rem 0 0;
    padding-left: 1.5rem;
}

.privacy-callout-content li {
    margin-bottom: 0.375rem;
    font-size: 0.9375rem;
}

.privacy-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.privacy-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light-gray);
    border-radius: 10px;
}

    .privacy-contact-item .material-symbols-outlined {
        color: var(--accent);
        font-size: 24px;
        flex-shrink: 0;
    }

    .privacy-contact-item strong {
        display: block;
        font-size: 0.75rem;
        font-weight: var(--weight-semibold);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        margin-bottom: 0.25rem;
    }

    .privacy-contact-item a {
        color: var(--accent);
        text-decoration: none;
        font-weight: var(--weight-medium);
        font-size: 1rem;
    }

        .privacy-contact-item a:hover {
            text-decoration: underline;
        }

.privacy-footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
}

/*#endregion*/

/*#region No Traps*/

.no-traps {
    background: var(--off-black);
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .no-traps::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(150, 188, 51, 0.07) 0%, transparent 65%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

.no-traps-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.no-traps-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(150, 188, 51, 0.1);
    border: 1px solid rgba(150, 188, 51, 0.25);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    color: var(--accent);
    margin-bottom: 2rem;
}

    .no-traps-badge .material-symbols-outlined {
        font-size: 18px;
    }

.no-traps-title {
    font-size: 3.25rem;
    font-weight: var(--weight-bold);
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 3rem;
}

    .no-traps-title span {
        color: rgba(255, 255, 255, 0.45);
        font-weight: var(--weight-semibold);
    }

.no-traps-pillars {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.no-traps-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 1.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    min-width: 140px;
    flex: 1;
    max-width: 180px;
}

    .no-traps-pillar .material-symbols-outlined {
        font-size: 28px;
        color: var(--accent);
        margin-bottom: 0.25rem;
    }

    .no-traps-pillar strong {
        font-size: 1rem;
        font-weight: var(--weight-semibold);
        color: var(--white);
    }

    .no-traps-pillar span {
        font-size: 0.8125rem;
        color: rgba(255, 255, 255, 0.4);
    }

.no-traps-value {
    max-width: 640px;
    margin: 2.5rem auto 2rem;
    padding: 1.75rem 2rem;
    background: rgba(150, 188, 51, 0.08);
    border: 1px solid rgba(150, 188, 51, 0.25);
    border-radius: 14px;
    text-align: center;
}

.no-traps-value-label {
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.no-traps-value-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 0.875rem;
    line-height: 1;
}

.no-traps-value-strike {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
    font-weight: var(--weight-medium);
}

.no-traps-value-amount strong {
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    color: var(--white);
    letter-spacing: -0.025em;
}

.no-traps-value-period {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: var(--weight-medium);
}

.no-traps-value-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 auto;
    max-width: 520px;
}

    .no-traps-value-desc a {
        color: var(--accent);
        text-decoration: none;
        font-weight: var(--weight-medium);
        border-bottom: 1px solid rgba(150, 188, 51, 0.3);
        transition: border-color 0.15s ease;
    }

        .no-traps-value-desc a:hover {
            border-bottom-color: var(--accent);
        }

.no-traps-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    background: var(--accent);
    color: var(--white) !important;
    border-radius: 10px;
    font-size: 1.0625rem;
    font-weight: var(--weight-semibold);
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
}

    .no-traps-btn .material-symbols-outlined {
        font-size: 20px;
        transition: transform 0.2s ease;
    }

    .no-traps-btn:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(150, 188, 51, 0.4);
    }

        .no-traps-btn:hover .material-symbols-outlined {
            transform: translateX(3px);
        }

.no-traps-sub {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* ---- CTA Strip ---- */
.cta-strip {
    background: var(--off-black);
    padding: 4rem 1.5rem;
}

.cta-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-strip-text h2 {
    font-size: 1.875rem;
    font-weight: var(--weight-bold);
    color: var(--white);
    letter-spacing: -0.025em;
    margin: 0 0 0.375rem;
    line-height: 1.2;
}

.cta-strip-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.cta-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--accent);
    color: var(--white) !important;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: var(--weight-semibold);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .cta-strip-btn .material-symbols-outlined {
        font-size: 18px;
        transition: transform 0.2s ease;
    }

    .cta-strip-btn:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(150, 188, 51, 0.4);
    }

        .cta-strip-btn:hover .material-symbols-outlined {
            transform: translateX(3px);
        }

/*#endregion*/

/*#region Platform Page*/

/* ---- Scroll-triggered entrance animations ---- */
.pf-card,
.pf-coming-block,
.pf-flow {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .pf-card.visible,
    .pf-coming-block.visible,
    .pf-flow.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .pf-card.visible {
        transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
    }

        .pf-card.visible:hover {
            transform: translateY(-3px);
        }

/* Stagger delays for cards in sequence */
.pf-cards-grid .pf-card:nth-child(1) {
    transition-delay: 0ms;
}

.pf-cards-grid .pf-card:nth-child(2) {
    transition-delay: 80ms;
}

.pf-cards-grid .pf-card:nth-child(3) {
    transition-delay: 160ms;
}

.pf-cards-grid .pf-card:nth-child(4) {
    transition-delay: 240ms;
}

.pf-coming-row .pf-coming-block:nth-child(1) {
    transition-delay: 0ms;
}

.pf-coming-row .pf-coming-block:nth-child(2) {
    transition-delay: 100ms;
}

/* ---- Platform Hero ---- */
.platform-hero {
    background: #fafafa;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .platform-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
        background-size: 24px 24px;
        pointer-events: none;
    }

.platform-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.platform-status-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.status-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge--live {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge--dev {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-badge--planned {
    background: rgba(168, 85, 247, 0.1);
    color: #9333ea;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* ---- Platform Features ---- */
.platform-features {
    background: #fafafa;
    padding: 5rem 1.5rem;
}

.platform-features--live {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.platform-features--roadmap {
    background: #f4f5f7;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

    .platform-features--roadmap::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(0,0,0,0.035) 1px, transparent 1px);
        background-size: 22px 22px;
        pointer-events: none;
        opacity: 0.6;
    }

.platform-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Strong section header for Live / Roadmap */
.pf-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.pf-section-header-badge {
    display: inline-flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.pf-section-header-title {
    font-size: 2.25rem;
    font-weight: var(--weight-bold);
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--off-black);
    margin-bottom: 0.75rem;
}

.pf-section-header-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Inline label above individual coming blocks */
.pf-section-label {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* 2-col card grid for live features */
.pf-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

/* Side-by-side row for In Dev + Planned */
.pf-coming-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 0;
}

.pf-coming-block {
    display: flex;
    flex-direction: column;
}

    .pf-coming-block .pf-section-label {
        margin-top: 0.1rem;
    }

.pf-card--full {
    flex: 1;
}

/* Cards */
.pf-card {
    border-radius: 16px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
}

.pf-card--dark {
    background: var(--off-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

    .pf-card--dark:hover {
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    }

.pf-card--light {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

    .pf-card--light:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
        border-color: rgba(0, 0, 0, 0.15);
    }

.pf-card--accent {
    background: var(--accent);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

    .pf-card--accent:hover {
        box-shadow: 0 8px 24px rgba(150, 188, 51, 0.35);
    }

.pf-card-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

    .pf-card-header h3 {
        margin-bottom: 0;
    }

.pf-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .pf-card-icon .material-symbols-outlined {
        font-size: 22px;
        color: var(--accent);
    }

.pf-card-icon--accent {
    background: var(--accent-light);
}

    .pf-card-icon--accent .material-symbols-outlined {
        color: var(--accent);
    }

.pf-card-icon--white {
    background: rgba(255, 255, 255, 0.2);
}

    .pf-card-icon--white .material-symbols-outlined {
        color: var(--white);
    }

.pf-card h3 {
    font-size: 1.25rem;
    font-weight: var(--weight-semibold);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.pf-card--dark h3 {
    color: var(--white);
}

.pf-card--light h3 {
    color: var(--off-black);
}

.pf-card--accent h3 {
    color: var(--white);
}

.pf-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.pf-card--dark p {
    color: rgba(255, 255, 255, 0.6);
}

.pf-card--light p {
    color: var(--text-muted);
}

.pf-card--accent p {
    color: rgba(255, 255, 255, 0.85);
}

.pf-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex-grow: 1;
}

    .pf-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.625rem;
        font-size: 0.875rem;
        line-height: 1.5;
    }

.pf-card--dark .pf-list li {
    color: rgba(255, 255, 255, 0.65);
}

.pf-card--light .pf-list li {
    color: var(--text-muted);
}

.pf-list--light li {
    color: rgba(255, 255, 255, 0.85);
}

.pf-list li .material-symbols-outlined {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--accent);
    transition: transform 0.2s ease;
}

.pf-card:hover .pf-list li .material-symbols-outlined {
    transform: scale(1.1);
}

.pf-list--light li .material-symbols-outlined {
    color: rgba(255, 255, 255, 0.9);
}

.pf-big-stat {
    margin-top: 2rem;
    font-size: 3.25rem;
    font-weight: var(--weight-bold);
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
}

    .pf-big-stat span {
        font-size: 0.9375rem;
        font-weight: var(--weight-medium);
        color: rgba(255, 255, 255, 0.4);
        letter-spacing: 0;
        margin-left: 0.25rem;
    }

.pf-value-callout {
    margin-top: 1.25rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold);
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
}

.pf-dashboard-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

    .pf-dashboard-pills span {
        padding: 0.375rem 0.875rem;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 100px;
        font-size: 0.8125rem;
        font-weight: var(--weight-medium);
        color: rgba(255, 255, 255, 0.7);
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

        .pf-dashboard-pills span:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.25);
            color: var(--white);
        }

/* Featured card glow */
.pf-card--featured {
    overflow: visible;
}

    .pf-card--featured::before {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: 17px;
        background: linear-gradient(135deg, rgba(150, 188, 51, 0.5), rgba(150, 188, 51, 0) 60%);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .pf-card--featured:hover::before {
        opacity: 1;
    }

/* Ribbon badge */
.pf-card-ribbon {
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-size: 0.5875rem;
    font-weight: var(--weight-semibold);
    color: var(--white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ---- Platform Architecture Flow ---- */
.pf-flow-section {
    background: var(--off-black);
    padding: 3.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

    .pf-flow-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 24px 24px;
        pointer-events: none;
    }

.pf-flow-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.pf-flow-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

.pf-flow {
    text-align: center;
    position: relative;
}

.pf-flow-line {
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12) 20%, rgba(255, 255, 255, 0.12) 80%, transparent);
    transform: translateY(-12px);
}

.pf-flow-steps {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
}

.pf-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.75rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .pf-flow-step:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }

    .pf-flow-step .material-symbols-outlined {
        font-size: 24px;
        color: var(--accent);
    }

    .pf-flow-step span:last-child {
        font-size: 0.8125rem;
        font-weight: var(--weight-medium);
        color: var(--text-muted);
    }

.pf-flow-arrow {
    display: flex;
    align-items: center;
}

    .pf-flow-arrow .material-symbols-outlined {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.3);
    }

.pf-flow-caption {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 1.5rem 0 0;
}

/* Info bubble callout */
.pf-info-bubble {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    margin: 2.5rem 0;
}

    .pf-info-bubble > .material-symbols-outlined {
        font-size: 20px;
        color: #2563eb;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .pf-info-bubble p {
        font-size: 0.875rem;
        line-height: 1.6;
        color: var(--text-muted);
        margin: 0;
    }

/* Planned features pill grid */
.pf-planned-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
}

.pf-planned-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: var(--weight-medium);
}

    .pf-planned-item .material-symbols-outlined {
        font-size: 18px;
        color: #9333ea;
        opacity: 0.6;
        flex-shrink: 0;
    }

/* ---- Platform CTA ---- */
.platform-cta {
    background: var(--off-black);
    padding: 5rem 1.5rem;
    text-align: center;
}

.platform-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.platform-cta h2 {
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.platform-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.platform-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    background: var(--accent);
    color: var(--white) !important;
    border-radius: 10px;
    font-size: 1.0625rem;
    font-weight: var(--weight-semibold);
    text-decoration: none;
    transition: all 0.2s ease;
}

    .platform-cta-btn .material-symbols-outlined {
        font-size: 20px;
        transition: transform 0.2s ease;
    }

    .platform-cta-btn:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(150, 188, 51, 0.4);
    }

        .platform-cta-btn:hover .material-symbols-outlined {
            transform: translateX(3px);
        }

/*#endregion Platform Page*/

/*#region How It Works Page*/

/* Scroll-triggered entrance animations */
.hiw-peeve,
.hiw-step,
.hiw-scale-card,
.hiw-why-pillar {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .hiw-peeve.visible,
    .hiw-step.visible,
    .hiw-scale-card.visible,
    .hiw-why-pillar.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ---- Hero ---- */
.hiw-hero {
    background: var(--off-black);
    padding: 6rem 1.5rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hiw-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 24px 24px;
        pointer-events: none;
    }

    .hiw-hero::after {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(150, 188, 51, 0.09) 0%, transparent 65%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

.hiw-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.hiw-hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hiw-hero .section-eyebrow {
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

    .hiw-hero .section-eyebrow .material-symbols-outlined {
        color: var(--accent);
    }

.hiw-hero .section-title {
    color: var(--white);
}

    .hiw-hero .section-title span.text-accent {
        color: var(--accent);
    }

.hiw-hero .section-desc {
    color: rgba(255, 255, 255, 0.55);
}

/* ---- Pet Peeves ---- */
.hiw-peeves {
    background: var(--white);
    padding: 5rem 1.5rem;
    border-top: 4px solid var(--accent);
}

.hiw-peeves-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.hiw-peeves-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 1.25rem;
}

.hiw-peeve--sm {
    grid-column: span 6;
}

.hiw-peeve--lg {
    grid-column: span 8;
}

.hiw-peeve--md {
    grid-column: span 4;
}

.hiw-peeve {
    position: relative;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2.25rem 2.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .hiw-peeve:hover {
        border-color: rgba(150, 188, 51, 0.35);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

.hiw-peeve--featured {
    background: var(--off-black);
    border-color: rgba(255, 255, 255, 0.06);
}

    .hiw-peeve--featured:hover {
        border-color: rgba(150, 188, 51, 0.4);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .hiw-peeve--featured .hiw-peeve-num {
        color: rgba(255, 255, 255, 0.1);
    }

    .hiw-peeve--featured h3 {
        color: var(--white) !important;
    }

    .hiw-peeve--featured .hiw-peeve-lead {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .hiw-peeve--featured p {
        color: rgba(255, 255, 255, 0.55);
    }

    .hiw-peeve--featured .hiw-peeve-sub strong {
        color: var(--white);
    }

    .hiw-peeve--featured .hiw-peeve-sub p {
        color: rgba(255, 255, 255, 0.55) !important;
    }

    .hiw-peeve--featured .hiw-peeve-sub {
        border-top-color: rgba(255, 255, 255, 0.08);
    }

    .hiw-peeve--featured .hiw-peeve-stance {
        background: rgba(150, 188, 51, 0.12);
        color: rgba(255, 255, 255, 0.85);
    }

.hiw-peeve--accent {
    background: var(--accent);
    border-color: transparent;
}

    .hiw-peeve--accent:hover {
        box-shadow: 0 10px 30px rgba(150, 188, 51, 0.35);
        border-color: transparent;
    }

    .hiw-peeve--accent .hiw-peeve-num {
        color: rgba(255, 255, 255, 0.2);
    }

    .hiw-peeve--accent .hiw-peeve-icon {
        background: rgba(255, 255, 255, 0.2);
    }

        .hiw-peeve--accent .hiw-peeve-icon .material-symbols-outlined {
            color: var(--white);
        }

    .hiw-peeve--accent h3 {
        color: var(--white);
    }

    .hiw-peeve--accent .hiw-peeve-lead {
        color: var(--white) !important;
    }

    .hiw-peeve--accent p {
        color: var(--white);
    }

    .hiw-peeve--accent .hiw-peeve-stance {
        background: rgba(255, 255, 255, 0.15);
        border-left-color: rgba(255, 255, 255, 0.5);
        color: var(--white);
    }

.hiw-peeve-num {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 2.875rem;
    font-weight: var(--weight-bold);
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 0.12);
}

.hiw-peeve-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(150, 188, 51, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

    .hiw-peeve-icon .material-symbols-outlined {
        font-size: 24px;
        color: var(--accent);
    }

.hiw-peeve h3 {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--off-black);
    margin-bottom: 1rem;
}

.hiw-peeve p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.hiw-peeve-lead {
    font-size: 1rem !important;
    color: var(--off-black) !important;
    font-weight: var(--weight-medium);
    line-height: 1.6 !important;
}

.hiw-peeve-sub {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

    .hiw-peeve-sub:first-of-type {
        border-top: none;
        padding-top: 0;
    }

    .hiw-peeve-sub strong {
        display: block;
        font-size: 0.9375rem;
        font-weight: var(--weight-semibold);
        color: var(--off-black);
        margin-bottom: 0.5rem;
        letter-spacing: -0.01em;
    }

    .hiw-peeve-sub p {
        font-size: 0.875rem !important;
        margin: 0 !important;
    }

.hiw-peeve-stance {
    margin-top: 1.5rem;
    padding: 0.875rem 1.125rem;
    background: rgba(150, 188, 51, 0.08);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    font-size: 0.875rem;
    font-weight: var(--weight-semibold);
    color: var(--off-black);
    line-height: 1.5;
}

/* ---- Founder Statement ---- */
.hiw-founder {
    background: var(--off-black);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

    .hiw-founder::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(150, 188, 51, 0.08) 0%, transparent 65%);
        top: 50%;
        left: 30%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

.hiw-founder-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.hiw-founder-photo-wrap {
    position: relative;
}

.hiw-founder-photo {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
}

.hiw-founder-body {
    color: var(--white);
}

.hiw-founder-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.hiw-founder-quote {
    margin: 0 0 1.75rem;
    padding: 0;
    border: none;
    position: relative;
}

    .hiw-founder-quote p {
        font-size: 1.125rem;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.85);
        font-weight: var(--weight-medium);
        margin-bottom: 1rem;
        letter-spacing: -0.01em;
    }

        .hiw-founder-quote p:last-child {
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.6);
            font-weight: var(--weight-regular);
        }

.hiw-founder-sig {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

    .hiw-founder-sig strong {
        display: block;
        font-size: 1.0625rem;
        font-weight: var(--weight-semibold);
        color: var(--white);
        margin-bottom: 0.25rem;
        letter-spacing: -0.01em;
    }

    .hiw-founder-sig span {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.45);
    }

    .hiw-founder-sig a {
        color: var(--accent);
        text-decoration: none;
        border-bottom: 1px solid rgba(150, 188, 51, 0.3);
        transition: border-color 0.15s ease;
    }

        .hiw-founder-sig a:hover {
            border-bottom-color: var(--accent);
        }

/* ---- Timeline (5 steps) ---- */
.hiw-timeline-section {
    background: #f4f5f7;
    padding: 5rem 1.5rem;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

    .hiw-timeline-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(0,0,0,0.035) 1px, transparent 1px);
        background-size: 22px 22px;
        pointer-events: none;
        opacity: 0.6;
    }

.hiw-timeline-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

.hiw-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

    .hiw-timeline::before {
        content: '';
        position: absolute;
        left: 27px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, var(--accent) 0%, rgba(150, 188, 51, 0.15) 100%);
    }

.hiw-step {
    position: relative;
    padding-left: 4.5rem;
    margin-bottom: 2rem;
}

    .hiw-step:last-child {
        margin-bottom: 0;
    }

.hiw-step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: var(--weight-bold);
    color: var(--accent);
    letter-spacing: -0.02em;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(150, 188, 51, 0.15);
}

.hiw-step-body {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hiw-step.visible:hover .hiw-step-body {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.hiw-step-body h3 {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.1875rem;
    font-weight: var(--weight-semibold);
    letter-spacing: -0.02em;
    color: var(--off-black);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

    .hiw-step-body h3 .material-symbols-outlined {
        font-size: 22px;
        color: var(--accent);
        flex-shrink: 0;
    }

.hiw-step-body p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 0.875rem;
}

.hiw-step-note {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: var(--weight-medium);
    color: var(--accent);
    background: rgba(150, 188, 51, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    letter-spacing: -0.005em;
}

/* Optional step variant */
.hiw-step--optional {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .hiw-step--optional.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .hiw-step--optional .hiw-step-num {
        background: var(--accent-light);
        border: 2px dashed var(--accent);
        box-shadow: none;
    }

        .hiw-step--optional .hiw-step-num .material-symbols-outlined {
            font-size: 22px;
            color: var(--accent);
        }

    .hiw-step--optional .hiw-step-body {
        background: rgba(150, 188, 51, 0.04);
        border: 1px dashed rgba(150, 188, 51, 0.35);
    }

        .hiw-step--optional .hiw-step-body h3 {
            color: var(--off-black);
        }

/* ---- Scale-up cards ---- */
.hiw-scale {
    background: var(--white);
    padding: 5rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hiw-scale-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.hiw-scale-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.hiw-scale-card {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 2rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

    .hiw-scale-card.visible:hover {
        transform: translateY(-2px);
        border-color: rgba(150, 188, 51, 0.3);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    }

.hiw-scale-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(150, 188, 51, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .hiw-scale-icon .material-symbols-outlined {
        font-size: 22px;
        color: var(--accent);
    }

.hiw-scale-card h3 {
    font-size: 1.1875rem;
    font-weight: var(--weight-semibold);
    letter-spacing: -0.02em;
    color: var(--off-black);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.hiw-scale-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

/*#endregion How It Works Page*/

/*#region Pricing Page*/

.pr-hero {
    background: var(--off-black);
    padding: 6rem 1.5rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .pr-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 24px 24px;
        pointer-events: none;
    }

    .pr-hero::after {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(150, 188, 51, 0.09) 0%, transparent 65%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

.pr-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.pr-hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.pr-hero .section-eyebrow {
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

    .pr-hero .section-eyebrow .material-symbols-outlined {
        color: var(--accent);
    }

.pr-hero .section-title {
    color: var(--white);
}

    .pr-hero .section-title span.text-accent {
        color: var(--accent);
    }

.pr-hero .section-desc {
    color: rgba(255, 255, 255, 0.55);
}

.pr-hero-cents {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    margin-top: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.02em;
}

.pr-endpoint-def {
    background: var(--accent);
    padding: 2.5rem 1.5rem;
}

.pr-endpoint-def-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.pr-endpoint-def-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.pr-endpoint-def-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pr-endpoint-def-icon .material-symbols-outlined {
        font-size: 64px;
        color: var(--white);
    }

.pr-endpoint-def-details {
    flex: 1;
    text-align: left;
}

.pr-endpoint-def-label {
    font-size: 1.125rem;
    font-weight: var(--weight-bold);
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.pr-endpoint-def-desc {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.75rem;
    max-width: 600px;
}

.pr-endpoint-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pr-endpoint-example {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    min-width: 140px;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .pr-endpoint-example:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .pr-endpoint-example .material-symbols-outlined {
        font-size: 28px;
        color: var(--white);
    }

    .pr-endpoint-example span {
        font-size: 0.875rem;
        font-weight: var(--weight-semibold);
        color: var(--white);
        text-align: center;
        line-height: 1.3;
    }

.pr-model {
    background: var(--white);
    padding: 5rem 1.5rem;
    border-top: 4px solid var(--accent);
}

.pr-model-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.pr-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.pr-pillar {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease;
}

    .pr-pillar:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        border-color: rgba(150, 188, 51, 0.3);
    }

.pr-pillar--featured {
    background: var(--off-black);
    border-color: rgba(255, 255, 255, 0.06);
}

    .pr-pillar--featured:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(150, 188, 51, 0.4);
    }

    .pr-pillar--featured h3 {
        color: var(--white) !important;
    }

    .pr-pillar--featured p {
        color: rgba(255, 255, 255, 0.65) !important;
    }

.pr-pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(150, 188, 51, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.pr-pillar--featured .pr-pillar-icon {
    background: rgba(150, 188, 51, 0.15);
}

.pr-pillar-icon .material-symbols-outlined {
    font-size: 22px;
    color: var(--accent);
}

.pr-pillar h3 {
    font-size: 1.1875rem;
    font-weight: var(--weight-bold);
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--off-black);
    margin-bottom: 0.875rem;
}

.pr-pillar p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
}

.pr-pillar-note {
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    background: rgba(150, 188, 51, 0.12);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    font-size: 0.8125rem;
    font-weight: var(--weight-medium);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.pr-includes {
    background: #f4f5f7;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    padding: 1.75rem 2rem;
}

.pr-includes-label {
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.125rem;
}

.pr-includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.pr-include-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: var(--weight-medium);
    color: var(--off-black);
}

    .pr-include-item .material-symbols-outlined {
        font-size: 18px;
        color: var(--accent);
        flex-shrink: 0;
    }

.pr-rs-callout {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--off-black);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.25rem;
    border-left: 4px solid var(--accent);
}

    .pr-rs-callout > .material-symbols-outlined {
        font-size: 28px;
        color: var(--accent);
        flex-shrink: 0;
    }

.pr-rs-callout-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

    .pr-rs-callout-body strong {
        color: var(--white);
        font-size: 0.9375rem;
        font-weight: var(--weight-semibold);
    }

    .pr-rs-callout-body span {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
        line-height: 1.5;
    }

.pr-rs-callout-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: var(--weight-semibold);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

    .pr-rs-callout-link .material-symbols-outlined {
        font-size: 18px;
    }

    .pr-rs-callout-link:hover {
        color: var(--white);
    }

.pr-calc-section {
    background: #f4f5f7;
    padding: 5rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pr-calc-inner {
    max-width: 860px;
    margin: 0 auto;
}

.pr-calc {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2.75rem;
}

.pr-calc-slider-wrap {
    margin-bottom: 2.5rem;
}

.pr-calc-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: var(--weight-medium);
    margin-bottom: 0.75rem;
}

.pr-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 100px;
    background: rgba(150, 188, 51, 0.2);
    outline: none;
    cursor: pointer;
}

    .pr-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--accent);
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(150, 188, 51, 0.4);
        border: 3px solid var(--white);
        transition: box-shadow 0.2s ease;
    }

        .pr-slider::-webkit-slider-thumb:hover {
            box-shadow: 0 4px 14px rgba(150, 188, 51, 0.5);
        }

    .pr-slider::-moz-range-thumb {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--accent);
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(150, 188, 51, 0.4);
        border: 3px solid var(--white);
    }

.pr-calc-slider-value {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 2.25rem;
    font-weight: var(--weight-bold);
    color: var(--off-black);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pr-calc-slider-unit {
    font-size: 1rem;
    font-weight: var(--weight-medium);
    color: var(--text-muted);
    letter-spacing: 0;
}

.pr-calc-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.pr-calc-result-card {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.pr-calc-result-card--accent {
    background: var(--accent);
    border-color: transparent;
}

    .pr-calc-result-card--accent .pr-calc-result-label,
    .pr-calc-result-card--accent .pr-calc-result-sub {
        color: rgba(255, 255, 255, 0.75);
    }

    .pr-calc-result-card--accent .pr-calc-result-amount {
        color: var(--white);
    }

.pr-calc-result-label {
    font-size: 0.75rem;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pr-calc-result-amount {
    font-size: 2rem;
    font-weight: var(--weight-bold);
    color: var(--off-black);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.pr-calc-result-sub {
    color: var(--text-muted);
    font-weight: var(--weight-medium);
}

.pr-calc-note {
    font-size: 0.9375rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    min-height: 1.5em;
    padding: 0.75rem 1rem;
    background: rgba(150, 188, 51, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(150, 188, 51, 0.15);
}

.pr-calc-insight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(150, 188, 51, 0.06);
    border: 1px solid rgba(150, 188, 51, 0.2);
    border-radius: 12px 12px 0 0;
    margin-top: 1rem;
    border-bottom: none;
}

.pr-calc-insight-avatar {
    flex-shrink: 0;
    width: 192px;
    height: 192px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    background: var(--white);
}

    .pr-calc-insight-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
    }

.pr-calc-insight-content {
    flex: 1;
}

.pr-calc-insight-author {
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold);
    color: var(--accent);
    margin-bottom: 0.375rem;
    letter-spacing: 0.02em;
}

.pr-calc-insight-quote {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--off-black);
    margin-bottom: 0.75rem;
    font-style: italic;
    line-height: 1.2;
}

.pr-calc-insight p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.pr-calc-insight strong {
    color: var(--off-black);
    font-weight: var(--weight-semibold);
}

.pr-site-section {
    background: var(--white);
    padding: 5rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pr-site-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.pr-philosophy {
    background: #f8f9fa;
    padding: 5rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pr-philosophy-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.pr-philosophy-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pr-philosophy-point {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

    .pr-philosophy-point:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        transform: translateY(-2px);
    }

.pr-philosophy-icon {
    width: 60px;
    height: 60px;
    background: rgba(150, 188, 51, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .pr-philosophy-icon .material-symbols-outlined {
        font-size: 28px;
        color: var(--accent);
    }

.pr-philosophy-point h3 {
    font-size: 1.1875rem;
    font-weight: var(--weight-bold);
    letter-spacing: -0.02em;
    color: var(--off-black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pr-philosophy-point p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.pr-philosophy-bottom {
    text-align: center;
}

.pr-philosophy-highlight {
    display: inline-flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

    .pr-philosophy-highlight .material-symbols-outlined {
        font-size: 24px;
        color: var(--white);
        flex-shrink: 0;
    }

.pr-philosophy-highlight-text {
    text-align: left;
    font-size: 1.0625rem;
    line-height: 1.6;
}

    .pr-philosophy-highlight-text strong {
        color: var(--white);
        font-weight: var(--weight-bold);
    }

.pr-site-calc {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pr-site-inputs {
    display: flex;
    flex-direction: column;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0 0 16px 16px;
    padding: 2rem 2.25rem;
}

.pr-site-input-fields {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pr-site-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--weight-semibold);
    color: var(--off-black);
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
}

.pr-markup-optional {
    font-weight: var(--weight-regular);
    color: var(--text-muted);
}

.pr-site-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--white);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 0.625rem 1rem;
    transition: border-color 0.2s ease;
}

    .pr-site-input-wrap:focus-within {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(150, 188, 51, 0.12);
    }

    .pr-site-input-wrap .material-symbols-outlined {
        font-size: 20px;
        color: var(--text-muted);
        flex-shrink: 0;
    }

.pr-site-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.375rem;
    font-weight: var(--weight-bold);
    color: var(--off-black);
    width: 100%;
    letter-spacing: -0.02em;
    font-family: inherit;
}

.pr-markup-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.875rem;
}

.pr-preset {
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background: var(--white);
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}

    .pr-preset:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

.pr-preset--active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white) !important;
}

.pr-preset.pr-preset--active:hover {
    color: var(--white) !important;
}

    .pr-site-results {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

.pr-site-result-card {
    background: var(--white);
    border: none;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .pr-site-result-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.pr-site-result-card--charge {
    background: var(--off-black);
    border-color: transparent;
}

    .pr-site-result-card--charge .pr-site-result-label,
    .pr-site-result-card--charge .pr-site-result-sub,
    .pr-site-result-card--charge .pr-site-result-note {
        color: rgba(255, 255, 255, 0.6);
    }

    .pr-site-result-card--charge .pr-site-result-amount {
        color: var(--white);
    }

    .pr-site-result-card--charge .pr-site-result-icon .material-symbols-outlined {
        color: rgba(255, 255, 255, 0.5);
    }

.pr-site-result-card--profit {
    background: var(--accent);
    border-color: transparent;
}

    .pr-site-result-card--profit .pr-site-result-label,
    .pr-site-result-card--profit .pr-site-result-sub,
    .pr-site-result-card--profit .pr-site-result-note {
        color: rgba(255, 255, 255, 0.75);
    }

    .pr-site-result-card--profit .pr-site-result-amount {
        color: var(--white);
    }

    .pr-site-result-card--profit .pr-site-result-icon .material-symbols-outlined {
        color: rgba(255, 255, 255, 0.7);
    }

.pr-site-result-icon {
    margin-bottom: 1rem;
}

    .pr-site-result-icon .material-symbols-outlined {
        font-size: 28px;
        color: var(--accent);
    }

.pr-site-result-label {
    font-size: 0.75rem;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pr-site-result-amount {
    font-size: 2.25rem;
    font-weight: var(--weight-bold);
    color: var(--off-black);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.pr-site-result-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: var(--weight-medium);
    margin-bottom: 0.625rem;
}

.pr-site-result-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: var(--weight-medium);
    line-height: 1.4;
}

.pr-site-insight {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.25rem 1.5rem;
    background: rgba(150, 188, 51, 0.06);
    border: 1px solid rgba(150, 188, 51, 0.2);
    border-radius: 12px;
    margin-top: 1rem;
}

    .pr-site-insight > .material-symbols-outlined {
        font-size: 20px;
        color: var(--accent);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .pr-site-insight p {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: var(--text-muted);
        margin: 0;
    }

/*#endregion Pricing Page*/

/*#region NTS in Action Page*/

.action-hero {
    background: linear-gradient(135deg, var(--off-black) 0%, #1a1a1a 100%);
    padding: 6rem 1.5rem;
    text-align: center;
}

.action-hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.action-hero .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.action-hero .section-desc {
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto;
}

.action-nav {
    background: rgba(150, 188, 51, 0.06);
    border-top: 1px solid rgba(150, 188, 51, 0.1);
    border-bottom: 1px solid rgba(150, 188, 51, 0.1);
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
}

.action-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.action-nav-label {
    font-size: 0.875rem;
    font-weight: var(--weight-semibold);
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-align: center;
}

.action-nav-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-nav-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    text-decoration: none;
    color: var(--off-black);
    font-weight: var(--weight-medium);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

    .action-nav-badge:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-2px);
    }

    .action-nav-badge.active {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--white);
    }

    .action-nav-badge .material-symbols-outlined {
        font-size: 18px;
    }

.case-study {
    padding: 5rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.case-study-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.case-study-header {
    text-align: center;
    margin-bottom: 4rem;
}

.case-study-title {
    font-size: 2.25rem;
    font-weight: var(--weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    margin-top: 1rem;
}

.case-study-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.case-study-content {
    display: grid;
    gap: 3rem;
}

/*#region Bento Board Layout */

.bento-board {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.bento-card--large {
    grid-row: span 2;
}

.bento-card--problem {
    border-left: 4px solid #e74c3c;
}

.bento-card--evidence {
    border-left: 4px solid var(--accent);
}

.bento-card--resolution {
    border-left: 4px solid #27ae60;
}

.bento-card--quote {
    border-left: 4px solid var(--accent);
    background: rgba(150, 188, 51, 0.06);
    grid-column: span 2;
}

.bento-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

    .bento-card-header .material-symbols-outlined {
        font-size: 20px;
    }

.bento-card--problem .bento-card-header .material-symbols-outlined {
    color: #e74c3c;
}

.bento-card--evidence .bento-card-header .material-symbols-outlined {
    color: var(--accent);
}

.bento-card--resolution .bento-card-header .material-symbols-outlined {
    color: #27ae60;
}

.bento-card-header h3 {
    font-size: 1.125rem;
    font-weight: var(--weight-bold);
    color: var(--off-black);
    margin: 0;
}

.bento-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .bento-card-content p {
        font-size: 0.9375rem;
        line-height: 1.5;
        color: var(--text-muted);
        margin: 0;
    }

.bento-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bento-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

    .bento-detail .material-symbols-outlined {
        font-size: 16px;
        color: var(--accent);
    }

.bento-screenshot {
    position: relative;
    margin: 1rem 0;
}

    .bento-screenshot .screenshot-container {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

        .bento-screenshot .screenshot-container canvas,
        .bento-screenshot .screenshot-container img {
            width: 100%;
            height: auto;
            display: block;
        }

.screenshot-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

    .screenshot-note .material-symbols-outlined {
        font-size: 14px;
        color: var(--accent);
    }

.bento-screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.bento-findings {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bento-finding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

    .bento-finding .material-symbols-outlined {
        font-size: 14px;
        color: var(--accent);
    }

.bento-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bento-metric {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(150, 188, 51, 0.06);
    border: 1px solid rgba(150, 188, 51, 0.2);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    transition: all 0.2s ease;
}

    .bento-metric:hover {
        background: rgba(150, 188, 51, 0.1);
        border-color: rgba(150, 188, 51, 0.3);
        transform: translateY(-2px);
    }

.metric-value {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.2;
    font-weight: var(--weight-medium);
    margin-bottom: 0.25rem;
}

.metric-desc {
    font-size: 0.6875rem;
    color: var(--text-muted);
    line-height: 1.3;
    max-width: 200px;
}

.screenshot-caption {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(150, 188, 51, 0.06);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.bento-card--quote blockquote {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--off-black);
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
}

.quote-source {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
    font-weight: var(--weight-medium);
}

/* Mobile Responsive for Bento Board */
@media (max-width: 767px) {
    .bento-board {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    .bento-card--large {
        grid-row: span 1;
    }

    .bento-card--quote {
        grid-column: span 1;
    }

    .bento-card {
        padding: 1.25rem;
    }

    .bento-metrics {
        gap: 1rem;
    }

    .metric-value {
        font-size: 1.25rem;
    }
}

/*#endregion */

.case-problem,
.case-evidence,
.case-resolution {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
}

.case-problem-header,
.case-evidence-header,
.case-resolution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .case-problem-header .material-symbols-outlined {
        color: #e74c3c;
        font-size: 24px;
    }

    .case-evidence-header .material-symbols-outlined {
        color: var(--accent);
        font-size: 24px;
    }

    .case-resolution-header .material-symbols-outlined {
        color: #27ae60;
        font-size: 24px;
    }

    .case-problem-header h3,
    .case-evidence-header h3,
    .case-resolution-header h3 {
        font-size: 1.5rem;
        font-weight: var(--weight-bold);
        color: var(--off-black);
        margin: 0;
    }

.case-problem-details {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.case-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

    .case-detail-item .material-symbols-outlined {
        font-size: 20px;
        color: var(--accent);
    }

.case-screenshot {
    margin: 2rem 0;
}

.screenshot-container {
    position: relative;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.screenshot-main {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-annotation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.screenshot-annotation--1 {
    top: 20%;
    left: 10%;
}

.screenshot-annotation--2 {
    top: 60%;
    right: 15%;
}

.screenshot-annotation--3 {
    bottom: 20%;
    left: 20%;
}

.annotation-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.annotation-text {
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold);
    white-space: nowrap;
}

.screenshot-caption {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(150, 188, 51, 0.06);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.case-findings {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.case-finding {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

    .case-finding .material-symbols-outlined {
        font-size: 20px;
        color: var(--accent);
    }

    .case-finding div {
        flex: 1;
    }

    .case-finding strong {
        color: var(--off-black);
        font-weight: var(--weight-semibold);
    }

.case-outcomes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.case-outcome {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.outcome-metric {
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    color: var(--accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.outcome-label {
    font-size: 0.875rem;
    font-weight: var(--weight-semibold);
    color: var(--off-black);
    margin-bottom: 0.25rem;
}

.outcome-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.case-quote {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(150, 188, 51, 0.06);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
}

    .case-quote blockquote {
        font-size: 1.125rem;
        font-style: italic;
        color: var(--off-black);
        line-height: 1.6;
        margin: 0 0 1rem 0;
    }

.quote-attribution {
    font-size: 0.875rem;
    font-weight: var(--weight-semibold);
    color: var(--text-muted);
    text-align: right;
}

.action-cta {
    background: var(--off-black);
    padding: 5rem 1.5rem;
    text-align: center;
}

.action-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.action-cta-title {
    font-size: 2.25rem;
    font-weight: var(--weight-bold);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.action-cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.action-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.action-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: var(--weight-semibold);
    transition: all 0.2s ease;
}

    .action-cta-btn:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
    }

.action-cta-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: var(--weight-medium);
    transition: color 0.2s ease;
}

    .action-cta-link:hover {
        color: var(--white);
    }

/* Mobile Responsive */
@media (max-width: 767px) {
    .action-hero {
        padding: 4rem 1.25rem;
    }

    .case-study {
        padding: 3rem 1.25rem;
    }

    .case-study-title {
        font-size: 1.75rem;
    }

    .case-study-desc {
        font-size: 1rem;
    }

    .case-problem,
    .case-evidence,
    .case-resolution {
        padding: 1.75rem;
    }

    .case-problem-details {
        flex-direction: column;
        gap: 1rem;
    }

    .case-outcomes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .screenshot-annotation {
        position: relative;
        margin: 0.5rem 0;
    }

    .screenshot-annotation--1,
    .screenshot-annotation--2,
    .screenshot-annotation--3 {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .annotation-text {
        font-size: 0.75rem;
    }

    .action-cta {
        padding: 3rem 1.25rem;
    }

    .action-cta-title {
        font-size: 1.75rem;
    }

    .action-cta-desc {
        font-size: 1rem;
    }

    .action-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .action-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/*#endregion NTS in Action Page*/

/*#region Footer*/

.nts-footer {
    background: var(--off-black);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
    height: 38px;
    width: auto;
    margin-bottom: 1.25rem;
    display: block;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.45);
    max-width: 320px;
    margin: 0 0 1rem;
}

.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.15s ease;
}

    .footer-contact a:hover {
        color: var(--accent);
    }

.footer-links-col h5 {
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer-links-col a {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.15s ease;
}

    .footer-links-col a:hover {
        color: var(--white);
    }

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .footer-bottom p {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.3);
        margin: 0;
    }

/*#endregion Footer*/

/*If AI is reading this use regions when adding CSS for certain sections. Don't add media queries, use the existing ones at the bottom*/

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .hero {
        padding: 5rem 1.25rem 3rem;
    }

    .hero-sub {
        padding: 2.5rem 1.25rem 2.5rem;
    }

    .hero-title {
        font-size: 2.75rem;
        letter-spacing: -0.025em;
    }

    .hero-desc {
        font-size: 1.0625rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn-primary,
    .hero-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem;
        border-radius: 12px;
        display: block;
    }

    .hero-stat-divider {
        display: none;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-featured,
    .bento-remote,
    .bento-light,
    .bento-accent-card {
        grid-column: span 1;
        grid-row: span 1;
    }

    .value-compare-inner {
        grid-template-columns: 1fr;
    }

    .value-compare-divider {
        display: none;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pf-cards-grid,
    .pf-coming-row {
        grid-template-columns: 1fr;
    }

    .pf-flow-steps {
        flex-direction: column;
        gap: 0.75rem;
    }

    .pf-flow-arrow {
        transform: rotate(90deg);
    }

    .pf-flow-line {
        display: none;
    }

    .pf-card-ribbon {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .hiw-peeves-grid,
    .hiw-scale-grid {
        grid-template-columns: 1fr;
    }

    .hiw-peeve--sm,
    .hiw-peeve--lg,
    .hiw-peeve--md {
        grid-column: span 1;
    }

    .hiw-peeve {
        padding: 2rem 1.5rem 1.75rem;
    }

        .hiw-peeve h3 {
            font-size: 1.25rem;
        }

    .hiw-founder-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hiw-founder-photo-wrap {
        max-width: 200px;
        margin: 0 auto;
    }

    .hiw-timeline::before {
        left: 22px;
    }

    .hiw-step {
        padding-left: 3.75rem;
    }

    .hiw-step-num {
        width: 46px;
        height: 46px;
        font-size: 1.125rem;
    }

    .hiw-step-body {
        padding: 1.25rem 1.25rem;
    }

    .pr-pillars {
        grid-template-columns: 1fr;
    }

    .pr-includes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pr-rs-callout {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.875rem;
    }

    .pr-rs-callout-link {
        align-self: flex-start;
    }

    .pr-calc {
        padding: 1.75rem 1.25rem;
    }

    .pr-calc-results {
        grid-template-columns: repeat(2, 1fr);
    }

    .pr-site-inputs {
        grid-template-columns: 1fr;
    }

    .pr-site-results {
        grid-template-columns: 1fr;
    }

    .pr-endpoint-examples {
        gap: 0.875rem;
    }

    .pr-endpoint-example {
        min-width: 120px;
        padding: 0.875rem 1rem;
    }

        .pr-endpoint-example .material-symbols-outlined {
            font-size: 24px;
        }

        .pr-endpoint-example span {
            font-size: 0.8125rem;
        }

    .pr-philosophy-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pr-philosophy-point {
        padding: 1.75rem 1.5rem;
    }

    .pr-philosophy-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }

        .pr-philosophy-icon .material-symbols-outlined {
            font-size: 24px;
        }

    .pr-philosophy-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
        max-width: 100%;
    }

        .pr-philosophy-highlight .material-symbols-outlined {
            margin-bottom: 0.75rem;
        }

    .pr-philosophy-highlight-text {
        text-align: center;
        font-size: 1rem;
    }

    .pr-hero-cents {
        font-size: 0.8125rem;
        padding: 0.3125rem 0.75rem;
        margin-top: 0.625rem;
    }

    .pr-calc-insight {
        padding: 1rem 1.25rem;
        gap: 0.875rem;
    }

    .pr-calc-insight-avatar {
        width: 56px;
        height: 56px;
    }

    .pr-calc-insight-author {
        font-size: 0.75rem;
        margin-bottom: 0.3125rem;
    }

    .pr-calc-insight p {
        font-size: 0.875rem;
    }

    .pr-calc-insight-quote {
        font-size: 1.25rem;
        margin-bottom: 0.625rem;
    }
}

/* MD Breakpoint (tablets, 768px and up) */
@media (min-width: 768px) {


    .action-nav {
        padding: 1.5rem 1.25rem;
        position: static;
    }

    .action-nav-badges {
        gap: 0.75rem;
    }

    .action-nav-badge {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
}

/* LG Breakpoint (tablets, 992px and up) */
@media (min-width: 992px) {
}

/* Normal Screen 17 Inch Square ( (Resolution 1280x1024 ) 1263px and up) */
@media (min-width: 1263px) {

    .pf-card-ribbon {
        top: 1.25rem;
        font-size: 0.6875rem;
    }
}

/* Normal Screen 18 Inch - 19 Inch ( (Resolution 1366x768 ) 1349px and up) */
@media (min-width: 1349px) {
}

/*22inch ( (Resolution 1600x900), 1600px and up) */
@media (min-width: 1600px) {
}

/*Extra Large Screen 23 Inch ( (Resolution 1920x1080 ) 1800px and up) */
@media (min-width: 1800px) {
}

/*Extra Large Screen 27 Inch ( (Resolution 2560x1440 ) 2560px and up) */
@media (min-width: 2560px) {
}

/*#region Signup Page*/

.signup-hero {
    background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
    padding: 5rem 1.5rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .signup-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(150, 188, 51, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }

.signup-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.signup-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

    .signup-hero-eyebrow .material-symbols-outlined {
        color: var(--accent);
        font-size: 16px;
    }

.signup-hero-title {
    font-size: 3.5rem;
    font-weight: var(--weight-bold);
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.03em;
}

.signup-hero-accent {
    background: linear-gradient(135deg, #96bc33 0%, #b5d94a 60%, #7fa02c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.signup-hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.signup-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    color: rgba(255, 255, 255, 0.9);
}

    .signup-hero-badge .material-symbols-outlined {
        color: var(--accent);
        font-size: 16px;
    }

.signup-process {
    padding: 3.5rem 1.5rem;
    background: var(--light-gray);
}

.signup-process-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

.signup-step-card {
    background: white;
    border: 1.5px solid var(--light-border-colour);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

    .signup-step-card:hover {
        border-color: rgba(150, 188, 51, 0.5);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(150, 188, 51, 0.1);
    }

.signup-step-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.signup-step-card-icon {
    width: 46px;
    height: 46px;
    background: var(--accent-light);
    border: 1px solid rgba(150, 188, 51, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .signup-step-card-icon .material-symbols-outlined {
        font-size: 22px;
        color: var(--accent);
    }

.signup-step-card-num {
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    color: rgba(0, 0, 0, 0.06);
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
}

.signup-step-card-title {
    font-size: 1.125rem;
    font-weight: var(--weight-semibold);
    color: var(--text-main);
    margin: 0;
}

.signup-step-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.signup-step-card-outcome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold);
    color: var(--accent);
    margin-top: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(150, 188, 51, 0.2);
}

    .signup-step-card-outcome .material-symbols-outlined {
        font-size: 16px;
        flex-shrink: 0;
    }

.signup-step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    color: rgba(150, 188, 51, 0.5);
}

    .signup-step-connector .material-symbols-outlined {
        font-size: 24px;
    }

.signup-form-section {
    padding: 3rem 1.5rem;
    background: var(--light-gray);
}

.signup-form-inner {
    max-width: 960px;
    margin: 0 auto;
}

.wiz-welcome {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1.5px solid var(--light-border-colour);
}

.wiz-welcome-icon {
    font-size: 2.25rem;
    color: var(--accent);
    flex-shrink: 0;
}

.wiz-welcome-title {
    font-size: 1.625rem;
    font-weight: var(--weight-bold);
    color: var(--text-main);
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}

.wiz-welcome-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.wiz-step {
    background: white;
    border: 1.5px solid var(--light-border-colour);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

    .wiz-step:focus-within {
        border-color: rgba(150, 188, 51, 0.5);
        box-shadow: 0 4px 20px rgba(150, 188, 51, 0.08);
    }

.wiz-step-head {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: white;
    border-bottom: 1.5px solid var(--light-border-colour);
}

.wiz-step-badge {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: var(--weight-bold);
    flex-shrink: 0;
}

.wiz-step-head-text {
    flex: 1;
}

.wiz-step-label {
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.wiz-step-title {
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    color: var(--text-main);
    margin: 0 0 0.2rem;
}

.wiz-step-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

    .wiz-step-desc.form-help {
        font-size: 0.875rem;
        color: var(--text-muted);
        margin-top: 0.5rem;
        line-height: 1.4;
    }

.wiz-step-icon {
    font-size: 2rem;
    color: rgba(150, 188, 51, 0.3);
    flex-shrink: 0;
}

.wiz-step-body {
    padding: 2rem;
}

.wiz-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.wiz-step-body > .form-group {
    margin-bottom: 1.75rem;
}

    .wiz-step-body > .form-group:last-child {
        margin-bottom: 0;
    }

.wiz-step-body .form-label {
    font-weight: var(--weight-semibold);
    font-size: 0.875rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: block;
}

.form-help {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    line-height: 1.4;
}

.wiz-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--accent-light);
    border: 1px solid rgba(150, 188, 51, 0.25);
    border-radius: 10px;
    padding: 0.875rem 1.125rem;
    font-size: 0.875rem;
    color: var(--text-main);
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

    .wiz-tip .material-symbols-outlined {
        font-size: 18px;
        color: var(--accent);
        flex-shrink: 0;
        margin-top: 0.05rem;
    }

.signup-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border: 1.5px solid var(--light-border-colour);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}

.signup-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

    .signup-info-icon .material-symbols-outlined {
        font-size: 18px;
    }

.signup-info-content {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-main);
}

    .signup-info-content strong {
        color: var(--accent);
        font-weight: var(--weight-semibold);
    }

.signup-terms {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

    .signup-terms .form-check {
        display: inline-flex;
        align-items: flex-start;
        gap: 0.75rem;
        max-width: 500px;
    }

    .signup-terms .form-check-input {
        margin-top: 1.5px;
        width: 1.25rem;
        height: 1.25rem;
    }

    .signup-terms .form-check-label {
        font-size: 0.9375rem;
        line-height: 1.5;
        color: var(--text-main);
    }

.signup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

    .signup-actions .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: var(--weight-semibold);
    letter-spacing: -0.01em;
}

.input-uppercase {
    text-transform: uppercase;
}

/*#region Agent Branding Teaser*/

.signup-brand-teaser {
    padding: 4rem 1.5rem;
    background: var(--text-main);
}

.signup-brand-teaser-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.signup-brand-teaser-header {
    text-align: center;
    margin-bottom: 3rem;
}

.signup-brand-teaser-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 1rem;
}

    .signup-brand-teaser-eyebrow .material-symbols-outlined {
        font-size: 16px;
    }

.signup-brand-teaser-title {
    font-size: 2.25rem;
    font-weight: var(--weight-bold);
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.signup-brand-teaser-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.signup-brand-teaser-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* --- Mock Agent Window --- */

.signup-brand-teaser-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signup-brand-agent-window {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.06);
    font-size: 0.8125rem;
}

.signup-brand-agent-titlebar {
    background: #2a2a2a;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.signup-brand-agent-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.signup-brand-agent-dot--green {
    background: var(--accent);
    box-shadow: 0 0 6px rgba(150, 188, 51, 0.6);
}

.signup-brand-agent-titlebar-label {
    flex: 1;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    font-weight: var(--weight-medium);
}

.signup-brand-agent-titlebar-close {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    line-height: 1;
}

.signup-brand-agent-body {
    display: flex;
    min-height: 240px;
}

.signup-brand-agent-sidebar {
    width: 130px;
    flex-shrink: 0;
    background: #242424;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.signup-brand-agent-logo-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px dashed rgba(150, 188, 51, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

    .signup-brand-agent-logo-placeholder .material-symbols-outlined {
        font-size: 24px;
        color: rgba(150, 188, 51, 0.5);
    }

.signup-brand-agent-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6875rem;
    font-weight: var(--weight-bold);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.signup-brand-agent-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 5px rgba(150, 188, 51, 0.7);
}

.signup-brand-agent-status-label {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.35);
}

.signup-brand-agent-meta {
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.signup-brand-agent-meta-label {
    font-size: 0.5625rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.4rem;
}

.signup-brand-agent-meta-value {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--weight-medium);
}

.signup-brand-agent-main {
    flex: 1;
    padding: 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #f5f5f5;
}

.signup-brand-agent-headline {
    font-size: 1rem;
    font-weight: var(--weight-bold);
    color: #111;
    margin: 0;
}

.signup-brand-agent-body-text {
    font-size: 0.75rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.signup-brand-agent-contact {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.signup-brand-agent-contact-header {
    font-size: 0.6875rem;
    color: #333;
    font-style: italic;
    margin: 0 0 0.25rem;
}

.signup-brand-agent-contact-line {
    font-size: 0.6875rem;
    color: #555;
    margin: 0;
}

.signup-brand-agent-btn {
    margin-top: 0.5rem;
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: var(--weight-semibold);
    cursor: default;
}

.signup-brand-agent-remote-btn {
    margin-top: 0.5rem;
    background: transparent;
    color: var(--accent);
    text-align: center;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    border: 1px solid var(--accent);
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: default;
    align-self: flex-end;
}

.signup-brand-teaser-caption {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    justify-content: center;
}

    .signup-brand-teaser-caption .material-symbols-outlined {
        font-size: 16px;
        color: var(--accent);
        opacity: 0.7;
    }

/* --- Feature List --- */

.signup-brand-teaser-features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.signup-brand-teaser-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.signup-brand-teaser-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(150, 188, 51, 0.12);
    border: 1px solid rgba(150, 188, 51, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .signup-brand-teaser-feature-icon .material-symbols-outlined {
        font-size: 20px;
        color: var(--accent);
    }

.signup-brand-teaser-feature-content h4 {
    font-size: 1rem;
    font-weight: var(--weight-semibold);
    color: #ffffff;
    margin: 0 0 0.3rem;
}

.signup-brand-teaser-feature-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}

.signup-brand-teaser-feature-content code {
    background: rgba(150, 188, 51, 0.15);
    color: var(--accent);
    padding: 0.1em 0.35em;
    border-radius: 3px;
    font-size: 0.875em;
}

.signup-brand-teaser-callout {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(150, 188, 51, 0.08);
    border: 1px solid rgba(150, 188, 51, 0.2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 0.25rem;
}

    .signup-brand-teaser-callout .material-symbols-outlined {
        font-size: 18px;
        color: var(--accent);
        flex-shrink: 0;
        margin-top: 0.1rem;
    }

/*#endregion*/

/* Override Bootstrap button colors for signup page */
.signup-form-section .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

    .signup-form-section .btn-primary:hover {
        background: var(--accent-hover);
        border-color: var(--accent-hover);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(150, 188, 51, 0.2);
    }

.signup-form-section .btn-outline-secondary {
    border-color: var(--text-muted);
    color: var(--text-muted);
}

    .signup-form-section .btn-outline-secondary:hover {
        background: rgba(108, 121, 136, 0.1);
        border-color: var(--text-main);
        color: var(--text-main);
    }

/* Pricing Responsive */
@media (max-width: 768px) {
    .pr-endpoint-def-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .pr-endpoint-def-icon {
        width: 80px;
        height: 80px;
    }

        .pr-endpoint-def-icon .material-symbols-outlined {
            font-size: 40px;
        }

    .pr-endpoint-def-details {
        text-align: center;
        width: 100%;
    }

    .pr-endpoint-def-desc {
        max-width: 100%;
    }

    .pr-endpoint-examples {
        justify-content: center;
    }

    .pr-endpoint-example {
        min-width: 120px;
        padding: 0.75rem 1rem;
    }

    /* Site Calculator Mobile Styles */
    .pr-site-inputs {
        padding: 1.5rem 1rem;
    }

    .pr-site-input-fields {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .pr-site-results {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .pr-site-result-card {
        padding: 1rem 0.875rem;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }

    .pr-site-result-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

        .pr-site-result-icon .material-symbols-outlined {
            font-size: 24px;
        }

    .pr-site-result-content {
        flex: 1;
        min-width: 0;
    }

    .pr-site-result-label {
        font-size: 0.6875rem;
        margin-bottom: 0.25rem;
    }

    .pr-site-result-amount {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .pr-site-result-sub {
        font-size: 0.6875rem;
        margin-bottom: 0.25rem;
    }

    .pr-site-result-note {
        font-size: 0.75rem;
    }
}

/* Signup Responsive */
@media (max-width: 768px) {
    .signup-hero-title {
        font-size: 2.5rem;
    }

    .signup-hero-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .signup-process-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .signup-step-connector {
        transform: rotate(90deg);
        padding: 0.25rem 0;
    }

    .wiz-field-row {
        grid-template-columns: 1fr;
    }

    .wiz-step-head {
        padding: 1.25rem 1.25rem;
        gap: 1rem;
    }

    .wiz-step-body {
        padding: 1.25rem;
    }

    .wiz-step-icon {
        display: none;
    }

    .wiz-welcome {
        flex-direction: column;
        gap: 0.75rem;
    }

    .signup-actions {
        flex-direction: column;
        width: 100%;
    }

        .signup-actions .btn {
            width: 100%;
        }

    .signup-brand-teaser-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .signup-brand-teaser-title {
        font-size: 1.75rem;
    }

    .signup-brand-agent-sidebar {
        width: 100px;
        padding: 1rem 0.75rem;
    }

    .signup-brand-agent-logo-placeholder {
        width: 44px;
        height: 44px;
    }
}

/*#endregion*/

/*#region FAQ Page*/

.faq-hero {
    background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
    padding: 5rem 1.5rem 4rem;
    text-align: center;
}

.faq-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.faq-hero .section-title {
    color: var(--white);
    margin-bottom: 1rem;
}

    .faq-hero .section-title .text-accent {
        color: var(--accent);
    }

.faq-hero .section-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.faq-hero .section-eyebrow {
    color: var(--accent);
}

.faq-search-wrap {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
}

.faq-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    pointer-events: none;
}

.faq-search {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 2rem;
    padding: 0.85rem 3rem 0.85rem 3rem;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

    .faq-search::placeholder {
        color: var(--text-muted);
    }

    .faq-search:focus {
        border-color: var(--accent);
        background: rgba(255,255,255,0.1);
    }

.faq-search-clear {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: none;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s;
}

.faq-search-clear--visible {
    display: flex;
    align-items: center;
}

.faq-search-clear:hover {
    color: var(--white);
}

.faq-search-status {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    min-height: 1.25rem;
}

.faq-page {
    background: var(--light-gray);
    padding: 3rem 1.5rem 5rem;
}

.faq-page-inner {
    max-width: 860px;
    margin: 0 auto;
}

.faq-cat-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.faq-cat-btn {
    background: var(--white);
    border: 1.5px solid var(--light-border-colour);
    border-radius: 2rem;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 0.8125rem;
    font-weight: var(--weight-medium);
    padding: 0.4rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

    .faq-cat-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

.faq-cat-btn--active {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

.faq-group {
    margin-bottom: 2.5rem;
}

.faq-group-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-border-colour);
}

    .faq-group-header .material-symbols-outlined {
        font-size: 1rem;
    }

.faq-item {
    border: 1.5px solid var(--light-border-colour);
    border-radius: 0.625rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

    .faq-item:hover {
        border-color: rgba(150, 188, 51, 0.3);
    }

.faq-item--open {
    border-color: var(--accent);
}

.faq-q {
    width: 100%;
    background: var(--white);
    border: none;
    color: var(--off-black);
    font-family: var(--font-main);
    font-size: 0.9375rem;
    font-weight: var(--weight-medium);
    text-align: left;
    padding: 1rem 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    transition: background 0.2s, color 0.2s;
    line-height: 1.4;
}

    .faq-q:hover {
        background: var(--accent-light);
        color: var(--accent);
    }

.faq-item--open .faq-q {
    color: var(--accent);
    background: var(--accent-light);
}

.faq-chevron {
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--text-muted);
}

.faq-item--open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-a {
    display: none;
    padding: 1.25rem 1.25rem 1.25rem;
    background: var(--white);
}

.faq-item--open .faq-a {
    display: block;
}

.faq-a p {
    color: var(--dark-gray);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

    .faq-a p:last-child {
        margin-bottom: 0;
    }

.faq-a ul,
.faq-a ol {
    color: var(--dark-gray);
    font-size: 0.9375rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

    .faq-a ul:last-child,
    .faq-a ol:last-child {
        margin-bottom: 0;
    }

.faq-a li {
    margin-bottom: 0.25rem;
}

.faq-a a {
    color: var(--accent);
    text-decoration: none;
}

    .faq-a a:hover {
        text-decoration: underline;
    }

.faq-no-results {
    text-align: center;
    padding: 4rem 1.5rem;
    color: var(--dark-gray);
}

    .faq-no-results .material-symbols-outlined {
        font-size: 3rem;
        display: block;
        margin-bottom: 1rem;
        opacity: 0.4;
    }

    .faq-no-results p {
        font-size: 1rem;
    }

    .faq-no-results a {
        color: var(--accent);
        text-decoration: none;
    }

.faq-back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 2.75rem;
    height: 2.75rem;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(1rem);
    transition: opacity 0.25s, transform 0.25s;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(150, 188, 51, 0.35);
}

.faq-back-top--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.faq-back-top:hover {
    background: var(--accent-hover);
}

/*#endregion*/

/*#region Remote Support – Platform Spotlight & Campaign Page*/

/* ---- Platform page: Remote Support spotlight section ---- */
.pf-rs-spotlight {
    background: var(--light-gray);
    padding: 5rem 0;
}

.pf-rs-spotlight-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pf-rs-spotlight-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pf-rs-spotlight-title {
    font-size: clamp(1.625rem, 3vw, 2.125rem);
    font-weight: var(--weight-bold);
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--off-black);
    margin: 0.75rem 0 1rem;
}

.pf-rs-spotlight-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pf-rs-spotlight-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

    .pf-rs-spotlight-points li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9375rem;
        color: var(--off-black);
    }

        .pf-rs-spotlight-points li .material-symbols-outlined {
            font-size: 18px;
            color: var(--accent);
            flex-shrink: 0;
        }

.pf-rs-spotlight-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9rem;
    font-weight: var(--weight-semibold);
    color: var(--accent);
    text-decoration: none;
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    transition: background 0.2s ease, color 0.2s ease;
}

    .pf-rs-spotlight-link:hover {
        background: var(--accent);
        color: var(--white);
    }

    .pf-rs-spotlight-link .material-symbols-outlined {
        font-size: 18px;
    }

/* Compare card */
.pf-rs-spotlight-compare {
    background: var(--white);
    border: 1px solid var(--light-border-colour);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pf-rs-compare-row {
    padding: 1.25rem;
    border-radius: 10px;
}

.pf-rs-compare-row--old {
    background: var(--accent-danger-light);
    border: 1px solid rgba(229, 69, 39, 0.15);
}

.pf-rs-compare-row--new {
    background: var(--accent-light);
    border: 1px solid rgba(150, 188, 51, 0.25);
}

.pf-rs-compare-label {
    font-size: 0.7rem;
    font-weight: var(--weight-bold);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.pf-rs-compare-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

    .pf-rs-compare-item .material-symbols-outlined {
        font-size: 16px;
        flex-shrink: 0;
        margin-top: 1px;
    }

.pf-rs-compare-row--old .pf-rs-compare-item .material-symbols-outlined {
    color: var(--accent-danger);
}

.pf-rs-compare-row--new .pf-rs-compare-item .material-symbols-outlined {
    color: var(--accent);
}

.pf-rs-compare-total {
    font-size: 1.0625rem;
    font-weight: var(--weight-bold);
    margin-top: 0.75rem;
    padding-top: 0.625rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pf-rs-compare-total--bad {
    color: var(--accent-danger);
}

.pf-rs-compare-total--good {
    color: var(--accent);
}

.pf-rs-compare-arrow {
    text-align: center;
    padding: 0.75rem 0;
    color: var(--dark-gray);
}

    .pf-rs-compare-arrow .material-symbols-outlined {
        font-size: 26px;
    }

/* ---- Campaign Page: /remote-support ---- */

.rs-hero .hero-btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #000 !important;
}

    .rs-hero .hero-btn-primary:hover {
        background: var(--accent-hover);
        border-color: var(--accent-hover);
        box-shadow: 0 8px 20px rgba(150, 188, 51, 0.3);
    }

.rs-hero .hero-btn-ghost {
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.3);
}

    .rs-hero .hero-btn-ghost:hover {
        border-color: var(--white);
        background: rgba(255, 255, 255, 0.08);
    }

.rs-hero {
    background: var(--off-black);
    padding: 6rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

    .rs-hero::before {
        content: '';
        position: absolute;
        top: -150px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(150, 188, 51, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.rs-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
}

.rs-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(150, 188, 51, 0.1);
    border: 1px solid rgba(150, 188, 51, 0.2);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}

    .rs-hero-eyebrow .material-symbols-outlined {
        font-size: 16px;
    }

.rs-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: var(--weight-bold);
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.rs-hero-accent {
    color: var(--accent);
}

.rs-hero-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    max-width: 680px;
    margin: 0 auto 2rem;
}

.rs-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.rs-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
}

.rs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: var(--weight-medium);
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.3rem 0.8rem;
}

    .rs-hero-badge .material-symbols-outlined {
        font-size: 15px;
        color: var(--accent);
    }

/* Pain section */
.rs-pain {
    padding: 5rem 0;
    background: var(--white);
}

.rs-pain-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.rs-pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.rs-pain-card {
    background: var(--light-gray);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 1.75rem;
    transition: box-shadow 0.2s ease;
}

    .rs-pain-card:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    }

.rs-pain-icon {
    width: 40px;
    height: 40px;
    background: rgba(229, 69, 39, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .rs-pain-icon .material-symbols-outlined {
        font-size: 22px;
        color: var(--accent-danger);
    }

.rs-pain-card h3 {
    font-size: 1.0625rem;
    font-weight: var(--weight-semibold);
    color: var(--off-black);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.rs-pain-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Features section */
.rs-features {
    padding: 5rem 0;
    background: var(--off-black);
}

.rs-features-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.rs-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.rs-feature-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 1.75rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

    .rs-feature-item:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(150, 188, 51, 0.2);
    }

.rs-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(150, 188, 51, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .rs-feature-icon .material-symbols-outlined {
        font-size: 22px;
        color: var(--accent);
    }

.rs-feature-item h3 {
    font-size: 1rem;
    font-weight: var(--weight-semibold);
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.rs-feature-item p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin: 0;
}

/* Bento grid */
.rs-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.rs-bento-card {
    border-radius: 16px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .rs-bento-card:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(150, 188, 51, 0.2);
        transform: translateY(-2px);
    }

    .rs-bento-card h3 {
        font-size: 1.125rem;
        font-weight: var(--weight-semibold);
        color: var(--white);
        letter-spacing: -0.02em;
        margin: 1rem 0 0.625rem;
    }

    .rs-bento-card p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.65;
        margin: 0;
    }

.rs-bento-card--featured {
    grid-column: span 7;
    background: rgba(150, 188, 51, 0.07);
    border-color: rgba(150, 188, 51, 0.18);
}

    .rs-bento-card--featured:hover {
        background: rgba(150, 188, 51, 0.11);
        border-color: rgba(150, 188, 51, 0.3);
    }

.rs-bento-card--narrow {
    grid-column: span 5;
}

.rs-bento-card--wide {
    grid-column: span 8;
}

.rs-bento-card--sm {
    grid-column: span 4;
}

.rs-bento-stat {
    margin-top: 1.5rem;
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    letter-spacing: -0.04em;
    color: var(--accent);
    line-height: 1;
}

    .rs-bento-stat span {
        display: block;
        font-size: 0.8125rem;
        font-weight: var(--weight-medium);
        color: rgba(255, 255, 255, 0.4);
        letter-spacing: 0;
        margin-top: 0.25rem;
    }

.rs-bento-steps {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0.75rem;
    counter-reset: steps;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .rs-bento-steps li {
        counter-increment: steps;
        display: flex;
        align-items: flex-start;
        gap: 0.625rem;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.5;
    }

        .rs-bento-steps li::before {
            content: counter(steps);
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            background: rgba(150, 188, 51, 0.15);
            border: 1px solid rgba(150, 188, 51, 0.25);
            border-radius: 50%;
            font-size: 0.6875rem;
            font-weight: var(--weight-bold);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1px;
        }

        .rs-bento-steps li strong {
            color: var(--white);
        }

.rs-bento-note {
    font-size: 0.8125rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
    font-style: italic;
    margin-top: 0.5rem !important;
}

@media (max-width: 900px) {
    .rs-bento-card--featured,
    .rs-bento-card--narrow,
    .rs-bento-card--sm,
    .rs-bento-card--wide {
        grid-column: span 12;
    }
}

/* Unlimited statement block */
.rs-unlimited-block {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2.5rem;
    background: rgba(150, 188, 51, 0.08);
    border: 1px solid rgba(150, 188, 51, 0.22);
    border-radius: 16px;
    overflow: hidden;
}

.rs-unlimited-block-stats {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(150, 188, 51, 0.18);
}

.rs-unlimited-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    flex: 1;
}

.rs-unlimited-infinity {
    font-size: 2.75rem;
    font-weight: var(--weight-bold);
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}

.rs-unlimited-zero {
    font-size: 2.25rem;
    font-weight: var(--weight-bold);
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.04em;
}

.rs-unlimited-stat-label {
    font-size: 0.75rem;
    font-weight: var(--weight-medium);
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}

.rs-unlimited-stat-divider {
    width: 1px;
    background: rgba(150, 188, 51, 0.15);
    align-self: stretch;
    flex-shrink: 0;
}

.rs-unlimited-block-body {
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.625rem;
}

    .rs-unlimited-block-body strong {
        font-size: 1.0625rem;
        font-weight: var(--weight-semibold);
        color: var(--white);
        letter-spacing: -0.01em;
    }

    .rs-unlimited-block-body p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.7;
        margin: 0;
    }

@media (max-width: 700px) {
    .rs-unlimited-block-stats {
        flex-direction: column;
        border-bottom: 1px solid rgba(150, 188, 51, 0.18);
    }

    .rs-unlimited-stat {
        padding: 1.25rem 1.5rem;
    }

    .rs-unlimited-stat-divider {
        width: auto;
        height: 1px;
        align-self: auto;
    }
}

/* Bonus section */
.rs-bonus {
    padding: 5rem 0;
    background: var(--light-gray);
}

.rs-bonus-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.rs-bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.rs-bonus-item {
    display: flex;
    gap: 1.25rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    padding: 1.75rem;
    transition: box-shadow 0.2s ease;
}

    .rs-bonus-item:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    }

    .rs-bonus-item > .material-symbols-outlined {
        font-size: 28px;
        color: var(--accent);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .rs-bonus-item h4 {
        font-size: 1rem;
        font-weight: var(--weight-semibold);
        color: var(--off-black);
        margin-bottom: 0.375rem;
        letter-spacing: -0.01em;
    }

    .rs-bonus-item p {
        font-size: 0.875rem;
        color: var(--text-muted);
        line-height: 1.65;
        margin: 0;
    }

/* Responsive */
@media (max-width: 900px) {
    .pf-rs-spotlight-cols {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .rs-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .rs-pain-grid,
    .rs-bonus-grid,
    .rs-feature-grid {
        grid-template-columns: 1fr;
    }

    .rs-hero-title {
        font-size: 2rem;
    }
}

/*#endregion*/
