/*
 * Online Dimensions - Combined Page Styles
 * Pages: Diagnostic, How We Work, Functional & Technical Design,
 *        Support & Improvement, Accelerators, Insights
 */

:root {
    --brand-yellow: #e5b237;
    --light-gray: #f5f5f5;
    --dark-text: #1a1a1a;
    --light-text: #666;
    --border-gray: #e0e0e0;
    --white: #ffffff;
    --success-green: #27ae60;
}

/* ========== GLOBAL RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

.content-body-inner.wrap {
    width: unset !important;
    max-width: unset !important;
    margin: 0;
    padding: 0;
}

.content-bottom-widgets {
    display: none !important;
}

/* ========== COMMON SECTION LAYOUT ========== */
.diagnostic-section,
.how-section,
.ftd-section,
.support-section,
.accel-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-gray);
}

.diagnostic-section.alt-bg,
.how-section.alt-bg,
.ftd-section.alt-bg,
.support-section.alt-bg,
.accel-section.alt-bg,
.insights-section.alt-bg {
    background-color: var(--light-gray);
}

.insights-section.alt-bg {
    padding: 80px 0;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--light-gray);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.how-section.model-section .section-label {
    color: var(--light-text) !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark-text);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 48px;
    max-width: 700px;
    line-height: 1.8;
}

/* ========== HERO SECTIONS ========== */
.diagnostic-hero,
.support-hero,
.accel-hero,
.insights-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow) 100%);
    border-bottom: 1px solid var(--border-gray);
}

.ftd-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow) 100%);
    border-bottom: 1px solid var(--border-gray);
}

.model-section {
    padding: 100px 0 80px;
}

.diagnostic-hero h1,
.support-hero h1,
.accel-hero h1,
.ftd-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-text);
}

.insights-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.diagnostic-hero p,
.support-hero p,
.accel-hero p,
.ftd-hero p,
.insights-hero p {
    font-size: 1.25rem;
    color: #3f3f3f;
    margin-bottom: 32px;
    max-width: 700px;
    line-height: 1.8;
}

.insights-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 0;
}

/* ========== CTA BUTTONS ========== */
.cta-primary {
    display: inline-block;
    background-color: var(--brand-yellow);
    color: var(--dark-text);
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--brand-yellow);
    cursor: pointer;
}

.cta-primary:hover {
    background-color: transparent;
    color: var(--brand-yellow);
}

.cta-secondary {
    display: inline-block;
    color: var(--brand-yellow);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-left: 16px;
}

.cta-secondary:hover {
    color: var(--dark-text);
}

/* ========== CTA SECTIONS ========== */

.cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/wp-content/uploads/2025/05/businesspeople-interacting-inside-office-building-1.jpg) center center !important;
    background-position: center center;
    background-size: cover !important;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--brand-yellow);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ========== DIAGNOSTIC PAGE ========== */
.what-it-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.what-it-is-grid h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--dark-text);
}

.what-it-is-grid ul {
    list-style: none;
    padding: 0;
}

.what-it-is-grid li {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
    line-height: 1.8;
}

.what-it-is-grid li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--brand-yellow);
    font-weight: 700;
    font-size: 1.25rem;
}

.who-for {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--brand-yellow);
}

.who-for h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.who-for p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin: 0;
}

.deliverables-list {
    list-style: none;
    padding: 0;
}

.deliverables-list li {
    padding: 24px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    border-left: 4px solid var(--brand-yellow);
}

.deliverables-list li:before {
    content: "✓";
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.deliverables-list li span {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.6;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:not(:last-child):after {
    content: "";
    position: absolute;
    left: 100px;
    top: 100px;
    width: 2px;
    height: 100%;
    background-color: var(--border-gray);
}

.timeline-week {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-yellow);
    display: flex;
    align-items: center;
}

.timeline-week:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--brand-yellow);
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.timeline-content p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
}

.pricing-box {
    background-color: white;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-yellow);
    margin-bottom: 12px;
}

.pricing-note {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.pricing-highlight {
    background-color: var(--light-gray);
    border-left: 4px solid var(--brand-yellow);
    padding: 20px;
    border-radius: 4px;
    font-size: 1.05rem;
    color: var(--dark-text);
    line-height: 1.8;
}

.not-for {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.not-for h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.not-for ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.not-for li {
    font-size: 1.05rem;
    color: var(--dark-text);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.not-for li:before {
    content: "×";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.25rem;
    color: #dc3545;
}

.not-for p {
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin-top: 16px;
}

/* ========== HOW WE WORK PAGE ========== */
.four-stage-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.stage-arrow {
    display: none; /* Hide arrows on desktop */
}

.stage-card {
    text-align: center;
    padding: 32px 24px;
    background-color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-gray);
}

.stage-card:hover {
    border-color: var(--brand-yellow);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.stage-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-yellow);
    line-height: 1;
    margin-bottom: 16px;
}

.stage-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stage-desc {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
}

.pricing-section {
    text-align: center;
}

.pricing-intro {
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
}

.pricing-table {
    margin: 0 auto 48px;
    max-width: 900px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table thead th {
    background-color: white;
    padding: 24px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-yellow);
    border-bottom: 2px solid var(--border-gray);
}

.pricing-table tbody td {
    padding: 24px;
    border-bottom: 1px solid var(--border-gray);
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:nth-child(even) td {
    background-color: var(--light-gray);
}

.recommended-column {
    background-color: rgba(229, 178, 55, 0.1) !important;
    border-left: 4px solid var(--brand-yellow);
    border-right: 4px solid var(--brand-yellow);
}

.recommended-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.column-header {
    text-align: center;
}

.column-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.pricing-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-feature {
    font-size: 1rem;
    color: var(--dark-text);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-feature.check {
    color: var(--success-green);
}

.pricing-feature .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature .text {
    flex: 1;
}

.warranty-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.warranty-card {
    background-color: white;
    border-left: 4px solid var(--success-green);
    padding: 32px;
    border-radius: 8px;
}

.warranty-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--success-green);
}

.warranty-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warranty-list li {
    font-size: 1rem;
    color: var(--dark-text);
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--border-gray);
}

.warranty-list li:last-child {
    border-bottom: none;
}

.warranty-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--success-green);
    font-size: 1.1rem;
}

.outside-card {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 32px;
    border-radius: 8px;
}

.outside-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #856404;
}

.outside-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outside-list li {
    font-size: 1rem;
    color: var(--dark-text);
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid #ffeaa7;
}

.outside-list li:last-child {
    border-bottom: none;
}

.outside-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #dc3545;
    font-size: 1.1rem;
}

.retainer-section {
    margin-top: 48px;
}

.retainer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.retainer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.retainer-list li {
    font-size: 1rem;
    color: var(--light-text);
    padding: 16px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid var(--border-gray);
}

.retainer-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--brand-yellow);
    font-weight: 700;
    font-size: 1.1rem;
}

.requirements-card {
    background-color: var(--light-gray);
    border-left: 4px solid var(--brand-yellow);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.requirements-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    font-size: 1rem;
    color: var(--dark-text);
    padding: 16px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--border-gray);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--brand-yellow);
    font-weight: 700;
    font-size: 1.1rem;
}

.requirements-note {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
    margin-top: 16px;
    line-height: 1.6;
}

/* ========== FUNCTIONAL & TECHNICAL DESIGN PAGE ========== */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.deliverable-item {
    background-color: white;
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid var(--brand-yellow);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 0.3s ease;
}

.deliverable-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.deliverable-icon {
    color: var(--brand-yellow);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deliverable-text {
    flex: 1;
}

.deliverable-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
}

.deliverable-text p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

.sprint-card {
    background-color: white;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
}

.sprint-header {
    padding: 40px;
    border-bottom: 1px solid var(--border-gray);
}

.sprint-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.sprint-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    max-width: 600px;
    margin: 0;
}

.sprint-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.sprint-option {
    padding: 32px;
    border-right: 1px solid var(--border-gray);
    text-align: center;
}

.sprint-option:last-child {
    border-right: none;
}

.sprint-option-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--brand-yellow);
}

.sprint-option h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.sprint-option p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

.budget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.budget-argument {
    padding-right: 20px;
}

.budget-argument h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.budget-argument p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.budget-visual {
    background-color: white;
    border-radius: 8px;
    padding: 32px;
    border: 1px solid var(--border-gray);
}

.cost-comparison {
    margin-bottom: 0;
}

.cost-row {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-gray);
}

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

.cost-label {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
}

.cost-bar {
    flex: 2;
    height: 32px;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
}

.cost-bar-fill {
    height: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.cost-bar-fill.design {
    background-color: var(--brand-yellow);
    width: 25%;
    color: var(--dark-text);
}

.cost-bar-fill.rework {
    background-color: #dc3545;
    width: 75%;
}

.cost-bar-fill.build {
    background-color: var(--success-green);
    width: 50%;
}

.cost-bar-fill.overrun {
    background-color: #dc3545;
    width: 90%;
}

.cost-caption {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-left: 12px;
    white-space: nowrap;
}

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

.secure-item {
    background-color: white;
    padding: 28px;
    border-radius: 8px;
    border-top: 4px solid var(--brand-yellow);
    text-align: center;
}

.secure-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.secure-item p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

.secure-note {
    margin-top: 40px;
    padding: 24px;
    background-color: white;
    border-left: 4px solid var(--brand-yellow);
    border-radius: 8px;
}

.secure-note p {
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin: 0;
}

/* ========== SUPPORT & IMPROVEMENT PAGE ========== */
.support-hero .highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-top: 24px;
    padding: 20px;
    background-color: white;
    border-left: 4px solid var(--light-text);
    border-radius: 4px;
}

.continuity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.continuity-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.continuity-text p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.continuity-visual {
    background-color: white;
    border-radius: 8px;
    padding: 32px;
    border: 1px solid var(--border-gray);
}

.continuity-comparison {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-item {
    padding: 20px;
    border-radius: 8px;
}

.comparison-item.bad {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
}

.comparison-item.good {
    background-color: #d4edda;
    border-left: 4px solid var(--success-green);
}

.comparison-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.comparison-item.bad h4 {
    color: #721c24;
}

.comparison-item.good h4 {
    color: #155724;
}

.comparison-item p {
    font-size: 0.95rem;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.6;
}

.comparison-item.bad p {
    color: #721c24;
}

.comparison-item.good p {
    color: #155724;
}

.retainer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.retainer-card {
    background-color: white;
    border-radius: 8px;
    padding: 32px;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
}

.retainer-card:hover {
    border-color: var(--brand-yellow);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.retainer-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--brand-yellow);
}

.retainer-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.retainer-card .best-for {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.retainer-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.retainer-card li {
    font-size: 0.95rem;
    color: var(--light-text);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--border-gray);
}

.retainer-card li:last-child {
    border-bottom: none;
}

.retainer-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--brand-yellow);
    font-weight: 600;
}

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

.definition-item {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    border-top: 4px solid var(--brand-yellow);
}

.definition-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.definition-item p {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

.reporting-sample {
    background-color: white;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
}

.reporting-header {
    background-color: var(--light-gray);
    padding: 20px 32px;
    border-bottom: 1px solid var(--border-gray);
}

.reporting-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.reporting-content {
    padding: 32px;
}

.report-section {
    margin-bottom: 24px;
}

.report-section:last-child {
    margin-bottom: 0;
}

.report-section h5 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.report-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.report-metric {
    text-align: center;
    padding: 16px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.report-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-yellow);
    display: block;
}

.report-metric-label {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-top: 4px;
}

.report-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-list li {
    font-size: 0.95rem;
    color: var(--light-text);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--border-gray);
}

.report-list li:last-child {
    border-bottom: none;
}

.report-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 600;
}

/* ========== ACCELERATORS PAGE ========== */
.accel-hero .highlight-box {
    margin-top: 32px;
    padding: 28px;
    background-color: white;
    border-left: 4px solid var(--dark-text);
    border-radius: 8px;
    max-width: 600px;
}

.accel-hero .highlight-box p {
    font-size: 1.05rem;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.7;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    border-top: 4px solid var(--brand-yellow);
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.7;
    margin: 0;
}

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

.accelerator-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.accelerator-card:hover {
    border-color: var(--brand-yellow);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.accel-card-header {
    padding: 20px 24px;
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-gray);
}

.accel-card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.accel-card-body {
    padding: 24px;
}

.accel-detail {
    margin-bottom: 16px;
}

.accel-detail:last-child {
    margin-bottom: 0;
}

.accel-detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.accel-detail-value {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.5;
}

.accel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.accel-tag {
    font-size: 0.8rem;
    padding: 4px 10px;
    background-color: var(--light-gray);
    border-radius: 4px;
    color: var(--light-text);
}

.category-header {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-gray);
}

.category-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.category-header p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0;
    line-height: 1.6;
}

.category-section {
    margin-bottom: 60px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.note-box {
    background-color: white;
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid var(--brand-yellow);
    margin-top: 48px;
}

.note-box p {
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin: 0;
}

/* ========== INSIGHTS PAGE ========== */
.filter-bar {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-gray);
    background-color: white;
}

.filter-bar .container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--light-text);
    margin-right: 8px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    background-color: white;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: var(--dark-text);
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
}

.featured-content .featured-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-content h2 a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-content h2 a:hover {
    color: var(--brand-yellow);
}

.featured-content p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.featured-meta {
    font-size: 0.875rem;
    color: var(--light-text);
}

.featured-image {
    background-color: var(--light-gray);
    border-radius: 8px;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--brand-yellow);
    font-weight: 700;
    border: 1px solid var(--border-gray);
}

.read-link {
    display: inline-block;
    color: var(--brand-yellow);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.read-link:hover {
    color: var(--dark-text);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.article-card {
    background-color: white;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: var(--brand-yellow);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.article-card-image {
    background-color: var(--light-gray);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-yellow);
    font-weight: 700;
    border-bottom: 1px solid var(--border-gray);
}

.article-card-body {
    padding: 28px;
}

.article-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.article-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card-body h3 a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-card-body h3 a:hover {
    color: var(--brand-yellow);
}

.article-card-body p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-card-meta {
    font-size: 0.8rem;
    color: var(--light-text);
    padding-top: 16px;
    border-top: 1px solid var(--border-gray);
}

/* ========== FORM STYLES (DIAGNOSTIC PAGE) ========== */
.form-container {
    max-width: 800px;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.form-group label .required {
    color: #dc3545;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 3px rgba(229, 178, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.checkbox-group,
.form-group.radio-group {
    display: grid;
    gap: 12px;
}

.form-group.checkbox-group label,
.form-group.radio-group label {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 0;
    cursor: pointer;
}

.form-group.checkbox-group input[type="checkbox"],
.form-group.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--brand-yellow);
}

.form-note {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 8px;
    font-weight: 400;
}

.form-submit {
    background-color: var(--brand-yellow);
    color: var(--dark-text);
    padding: 16px 48px;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 24px;
}

.form-submit:hover {
    background-color: transparent;
    border: 2px solid var(--brand-yellow);
    color: var(--brand-yellow);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-validation-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 6px;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-group.error .form-validation-error {
    display: block;
}

.form-response {
    margin-top: 24px;
    padding: 24px;
    border-radius: 8px;
    display: none;
}

.form-response.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-response.success h4 {
    color: #155724;
    margin-bottom: 12px;
}

.form-response.borderline {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.form-response.borderline h4 {
    color: #856404;
    margin-bottom: 12px;
}

.form-response.unqualified {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-response.unqualified h4 {
    color: #721c24;
    margin-bottom: 12px;
}

.form-response p {
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.form-response a {
    font-weight: 600;
    text-decoration: none;
}

.form-response.success a {
    color: #155724;
}

.form-response.borderline a {
    color: #856404;
}

.form-response.unqualified a {
    color: #721c24;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */
@media (max-width: 992px) {
    .four-stage-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stage-arrow {
        display: block;
        color: var(--brand-yellow);
        font-size: 2rem;
        margin: 8px 0;
        text-align: center;
    }

    .sprint-options {
        grid-template-columns: 1fr;
    }

    .sprint-option {
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
    }

    .sprint-option:last-child {
        border-bottom: none;
    }

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

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

    .accelerator-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .report-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-article {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .featured-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .diagnostic-hero,
    .support-hero,
    .accel-hero,
    .ftd-hero,
    .insights-hero {
        padding: 60px 0;
    }

    .diagnostic-hero h1,
    .support-hero h1,
    .accel-hero h1,
    .ftd-hero h1 {
        font-size: 2.25rem;
    }

    .insights-hero h1 {
        font-size: 2.25rem;
    }

    .what-it-is-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .budget-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .warranty-section {
        grid-template-columns: 1fr;
    }

    .continuity-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .diagnostic-section,
    .how-section,
    .ftd-section,
    .support-section,
    .accel-section,
    .insights-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .timeline-item:not(:last-child):after {
        left: 10px;
        top: 60px;
    }

    .featured-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .diagnostic-hero h1,
    .support-hero h1,
    .accel-hero h1,
    .ftd-hero h1 {
        font-size: 1.75rem;
    }

    .insights-hero h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .four-stage-container {
        grid-template-columns: 1fr;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .cost-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cost-bar {
        width: 100%;
    }

    .cta-secondary {
        display: block;
        margin-left: 0;
        margin-top: 16px;
    }

    .column-header h3 {
        font-size: 1.1rem;
    }

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

    .filter-bar .container {
        gap: 8px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}