/* ============================================================
   COMPONENTS — forms, cards, badges, stats, features, process
   ============================================================ */

/* === Honeypot === */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
    pointer-events: none;
}

/* === Forms === */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.optional {
    font-weight: 400;
    color: var(--gray-500);
    font-size: 0.8rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 107, 63, 0.08);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.form-alt {
    margin-top: 14px;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* === Blog Card === */
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    transition: box-shadow var(--transition), transform var(--transition),
                border-color var(--transition);
    will-change: transform;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--gray-300);
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}

.blog-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.blog-card h3 a {
    color: var(--navy);
    transition: color var(--transition);
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--green);
    text-decoration: none;
}

.blog-card p {
    color: var(--gray-700);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

/* === Landing Nav Cards === */
.landing-nav-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-decoration: none;
    transition: box-shadow var(--transition), transform var(--transition),
                border-color var(--transition);
    will-change: transform;
}

.landing-nav-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: var(--green);
    text-decoration: none;
}

.landing-nav-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background var(--transition);
    flex-shrink: 0;
}

.landing-nav-card:hover .landing-nav-card-icon {
    background: var(--green);
}

.landing-nav-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    transition: color var(--transition);
    stroke: currentColor;
    fill: none;
}

.landing-nav-card:hover .landing-nav-card-icon svg {
    color: var(--white);
}

.landing-nav-card h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.landing-nav-card:hover h3 {
    color: var(--green);
}

.landing-nav-card p {
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* === Service Card === */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-card--featured {
    border: none;
    background: linear-gradient(150deg, #ffffff 0%, #f2fbf6 100%);
    box-shadow: 0 0 0 1px var(--gray-200), 0 4px 32px rgba(0, 0, 0, 0.08);
    padding: 44px;
    border-radius: var(--radius-xl);
}

.service-card--featured:hover {
    transform: none;
    box-shadow: 0 0 0 1px var(--gray-300), var(--shadow-lg);
}

.service-card--featured h2 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* === Badges === */
.service-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    background: var(--green-light);
    color: var(--green-dark);
}

.service-badge--soon {
    background: #fff3cd;
    color: #7c5e00;
}

.service-badge--alpha {
    background: #dbeafe;
    color: #1e40af;
}

/* === Credentials inline === */
.consulting-credentials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 0;
    flex-wrap: wrap;
}

.cred-item {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--navy);
}

.cred-divider {
    color: var(--gray-300);
    font-size: 0.825rem;
}

/* === Stats Block === */
.stats-block {
    margin: 32px 0;
    padding: 28px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stats-context-note {
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    min-width: 90px;
}

.stat-value {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--green) 0%, #00a651 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-top: 6px;
}

.stat-context {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 3px;
    line-height: 1.4;
}

/* === Service Lead / Outcome (customer-centric opening) === */
.service-lead {
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.65;
    margin: 20px 0 10px;
    max-width: 720px;
}

.service-outcome {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.75;
    max-width: 720px;
    margin-bottom: 0;
}

/* === Who This Is For === */
.service-fit {
    background: rgba(0, 107, 63, 0.04);
    border: 1px solid rgba(0, 107, 63, 0.12);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin: 28px 0;
}

.service-fit h3 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 14px;
}

.fit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fit-list li {
    color: var(--gray-700);
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
    align-items: baseline;
    line-height: 1.55;
}

.fit-list li::before {
    content: "→";
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* === Service Features (Pain-First Stacked Rows) === */
.service-features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
}

.feature-row {
    padding: 18px 20px;
    border-left: 3px solid var(--green);
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: background var(--transition);
}

.feature-row + .feature-row {
    border-top: 1px solid var(--gray-200);
}

.feature-row:hover {
    background: rgba(0, 107, 63, 0.04);
}

.feature-pain {
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
    margin-bottom: 6px;
}

.feature-context {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0 0 8px;
}

.feature-resolution {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* === Process Steps === */
.service-process {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-200);
}

.service-process > h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.process-step {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition), border-color var(--transition),
                transform var(--transition);
    will-change: transform;
}

.process-step:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
    transform: translateY(-2px);
}

.process-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--green);
    color: var(--white);
    font-weight: 800;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.process-step strong {
    display: block;
    font-size: 1rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* === Service Contact === */
.service-contact {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.service-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

/* === Upcoming Services === */
.services-upcoming {
    margin-top: 56px;
}

.services-upcoming-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.services-grid .service-card {
    display: flex;
    flex-direction: column;
}

.services-grid .service-card h3 {
    margin-bottom: 0.75rem;
}

.services-grid .service-card p {
    color: var(--gray-700);
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.65;
}

.services-grid form {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.services-grid form input {
    flex: 1;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}

.services-grid form input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 107, 63, 0.08);
}

/* === Credential Cards (About page) === */
.about-credential {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--green);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    transition: box-shadow var(--transition), transform var(--transition);
    will-change: transform;
}

.credential-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.credential-icon {
    font-size: 1.35rem;
    margin-bottom: 10px;
    display: block;
}

.credential-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.credential-card p {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* === Blog Card Image === */
.blog-card-image {
    margin: -28px -32px 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    max-height: 240px;
}

.blog-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.blog-card-author {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 8px;
    font-weight: 500;
}

/* === Blog Post Cover === */
.blog-post-cover {
    margin: 0 0 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-post-cover img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

/* === Blog Post Meta === */
.blog-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.meta-sep {
    margin: 0 8px;
    color: var(--gray-300);
}

.meta-link {
    color: var(--gray-500);
    text-decoration: none;
    transition: color var(--transition);
}

.meta-link:hover {
    color: var(--green);
    text-decoration: underline;
}

.meta-badge-draft {
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

.blog-post-author {
    font-weight: 500;
}

/* === Blog Post Body Content === */
.blog-post-body h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    scroll-margin-top: 84px;
}

.blog-post-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-post-body li {
    margin-bottom: 0.5rem;
}

.blog-post-body blockquote {
    border-left: 3px solid var(--green);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: var(--gray-50);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--gray-700);
    font-style: italic;
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1rem 0;
}

.blog-post-body pre {
    background: var(--navy);
    color: #e2e8f0;
    padding: 1.25rem;
    border-radius: var(--radius);
    overflow-x: auto;
    margin: 1.25rem 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.blog-post-body code {
    background: var(--gray-100);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875em;
}

.blog-post-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.blog-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.blog-post-body th,
.blog-post-body td {
    border: 1px solid var(--gray-300);
    padding: 10px 14px;
    text-align: left;
}

.blog-post-body th {
    background: var(--gray-50);
    font-weight: 600;
}

.blog-post-body a {
    color: var(--green);
    text-decoration: underline;
    text-decoration-color: rgba(0, 107, 63, 0.3);
}

.blog-post-body a:hover {
    text-decoration-color: var(--green);
}

/* === Blog Tags === */
.blog-post-tags {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

.blog-tag:hover {
    background: var(--green);
    color: var(--white);
    text-decoration: none;
}

/* === Blog Pagination === */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 2.5rem;
}

.blog-pagination-info {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* === Blog Tag Filter === */
.blog-tag-filter {
    margin-bottom: 1.5rem;
    padding: 10px 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--gray-700);
}

.blog-tag-clear {
    margin-left: 8px;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
}

/* === Blog Listing === */
.blog-listing {
    padding: 60px 0 var(--space-section);
}

.blog-listing h1 {
    margin-bottom: 2rem;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* === Blog Post === */
.blog-post {
    padding: 60px 0 var(--space-section);
}

.blog-post-header {
    margin-bottom: 2.5rem;
}

.blog-post-header .link-arrow {
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.blog-post-header h1 {
    margin-bottom: 0.5rem;
}

.blog-post-header time {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.blog-post-body {
    max-width: 680px;
    line-height: 1.85;
    font-size: 1.05rem;
}

.blog-post-body p {
    margin-bottom: 1.25rem;
}

/* === Static Page === */
.static-page {
    padding: 60px 0 var(--space-section);
}

.static-page h1 {
    margin-bottom: 1.5rem;
}

.static-page h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.static-page p {
    margin-bottom: 0.75rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.static-page ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.static-page li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.static-page li ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.static-page a {
    color: var(--accent);
    text-decoration: underline;
}

.static-page a:hover {
    opacity: 0.8;
}

.static-page ol.sub-para {
    padding-left: 2rem;
    margin-bottom: 1rem;
    list-style-type: none;
    counter-reset: none;
}

.static-page ol.sub-para > li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
    color: var(--text-secondary);
    position: relative;
    padding-left: 0;
}

.static-page ol[type="a"].sub-para > li::before {
    content: "(" counter(list-item, lower-alpha) ")";
    font-weight: 500;
    margin-right: 0.5rem;
    color: var(--text-secondary);
}

.static-page ol[type="i"].sub-para {
    margin-top: 0.5rem;
}

.static-page ol[type="i"].sub-para > li::before {
    content: "(" counter(list-item, lower-roman) ")";
    font-weight: 500;
    margin-right: 0.5rem;
    color: var(--text-secondary);
}

/* === Page Subtitle / Empty State (public pages) === */
.page-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.page-empty {
    color: var(--gray-500);
    font-size: 0.95rem;
    padding: 3rem 0;
    text-align: center;
}

/* === Report Banners === */
.report-banner-warning {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #92400e;
}

.report-banner-warning a {
    color: #92400e;
    font-weight: 600;
    text-decoration: underline;
}

.report-banner-info {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.report-banner-info h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.report-banner-info-row {
    font-size: 0.875rem;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.report-banner-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

/* === Report Breadcrumb === */
.report-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.report-breadcrumb a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color var(--transition);
}

.report-breadcrumb a:hover {
    color: var(--green);
}

.report-breadcrumb-sep {
    color: var(--gray-300);
}

/* === Report Footer Nav === */
.report-footer-nav {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.report-footer-nav-prev {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.report-footer-nav-prev a {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
}

.report-footer-nav-prev a:hover {
    text-decoration: underline;
}

/* === Report Supplier Deep-Dives Section === */
.report-supplier-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.report-supplier-section h2 {
    margin-bottom: 1rem;
}

/* === Compare Table === */
.compare-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.compare-table thead tr {
    border-bottom: 2px solid var(--gray-200);
}

.compare-table th {
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    white-space: nowrap;
    background: var(--gray-50);
}

.compare-table th:first-child {
    border-radius: var(--radius) 0 0 0;
}

.compare-table th:last-child {
    border-radius: 0 var(--radius) 0 0;
}

.compare-table tbody tr {
    border-bottom: 1px solid var(--gray-100);
    transition: background var(--transition);
}

.compare-table tbody tr:hover {
    background: var(--gray-50);
}

.compare-table td {
    padding: 0.75rem 1rem;
    color: var(--gray-700);
}

.compare-table td:first-child {
    font-weight: 600;
    color: var(--navy);
}

.compare-table td a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.compare-table td a:hover {
    text-decoration: underline;
}

.compare-table .tag-yes {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

.compare-table .tag-no {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

/* === Report Preview Banner === */
.report-banner-preview {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-left: 4px solid #3b82f6;
    border-radius: var(--radius-lg);
    padding: 0.875rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #1e40af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.report-banner-preview a {
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: underline;
    margin-left: auto;
}

/* === Executive Summary Block === */
.report-executive-summary {
    scroll-margin-top: 84px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem 1rem;
    margin-bottom: 2rem;
}

.report-executive-summary-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 0.875rem;
}

.report-executive-summary p {
    margin-bottom: 0.875rem;
    line-height: 1.75;
    font-size: 0.975rem;
    color: var(--gray-800);
}

.report-executive-summary p:last-child {
    margin-bottom: 0;
}

.report-executive-summary h1,
.report-executive-summary h2,
.report-executive-summary h3,
.report-executive-summary h4 {
    margin-top: 0;
    padding-top: 1.25rem;
    margin-bottom: 0.375rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
}

.report-executive-summary h1 { font-size: 1.25rem; }
.report-executive-summary h2 { font-size: 1.1rem; }
.report-executive-summary h3 { font-size: 1rem; }
.report-executive-summary h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; }


.report-executive-summary ul,
.report-executive-summary ol {
    margin: 0.625rem 0 0.875rem;
    padding-left: 1.5rem;
}

.report-executive-summary li {
    margin-bottom: 0.35rem;
    line-height: 1.65;
    font-size: 0.975rem;
    color: var(--gray-800);
}

.report-executive-summary strong {
    font-weight: 700;
    color: var(--gray-900);
}

.report-executive-summary > *:last-child {
    margin-bottom: 0;
}

/* === Supplier Page Two-Column Layout === */
.supplier-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2.5rem;
    align-items: start;
}

.supplier-page-main {
    min-width: 0;
}

.supplier-content {
    max-width: none;
}

/* === Supplier Key Facts Sidebar === */
.supplier-page-sidebar {
    position: sticky;
    top: 5rem;
}

.supplier-key-facts {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.supplier-key-facts-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 0;
}

.supplier-facts-list {
    margin: 0;
}

.supplier-fact-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.supplier-fact-row:last-child {
    border-bottom: none;
}

.supplier-fact-row dt {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-500);
    flex-shrink: 0;
}

.supplier-fact-row dd {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    text-align: right;
}

.fact-tag-yes {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

.fact-tag-no {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

.supplier-compare-link {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid var(--green-light);
    border-radius: var(--radius);
    background: var(--green-light);
    transition: background var(--transition), color var(--transition);
}

.supplier-compare-link:hover {
    background: var(--green);
    color: var(--white);
    text-decoration: none;
}

/* === Report Page Two-Column Layout (consolidated report) === */
.report-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2.5rem;
    align-items: start;
}

.report-page-main {
    min-width: 0;
}

.report-page-sidebar {
    position: sticky;
    top: 5rem;
}

/* === Report TOC Widget === */
.report-toc {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.supplier-page-sidebar .supplier-key-facts {
    margin-top: 1rem;
}

/* === Sidebar collapsible toggle === */
.sidebar-section-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0.875rem;
}

.sidebar-section-toggle:hover .sidebar-chevron {
    color: var(--gray-600);
}

.sidebar-chevron {
    color: var(--gray-400);
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.15s ease;
}

.sidebar-section-toggle[aria-expanded="false"] .sidebar-chevron {
    transform: rotate(-90deg);
}

.sidebar-section-toggle[aria-expanded="false"] + .sidebar-section-body {
    display: none;
}

.supplier-key-facts .sidebar-section-toggle {
    margin-bottom: 1rem;
}

/* === Report TOC label === */
.report-toc-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 0;
}

.report-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toc-link {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: var(--radius);
    border-left: 2px solid transparent;
    line-height: 1.4;
    transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.toc-link:hover {
    color: var(--green);
    background: var(--green-light);
    text-decoration: none;
}

.toc-link--active {
    color: var(--green);
    background: var(--green-light);
    border-left-color: var(--green);
    font-weight: 600;
    text-decoration: none;
}

/* === Responsive: Components === */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-card--featured {
        padding: 28px 22px;
    }

    .service-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
    }

    .stat {
        min-width: 0;
    }

    .stat-value {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .services-grid form {
        flex-direction: column;
    }

    .feature-row {
        padding: 14px 16px;
    }

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

    .supplier-page-sidebar {
        position: static;
        order: -1;
    }

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

    .report-page-sidebar {
        display: none;
    }

    .report-toc {
        display: none;
    }
}
