/* 
 * Feature Prioritization Framework - Styles
 * 
 * Main stylesheet for the integrated feature prioritization application
 */

:root {
    /* Primary colors */
    --primary: #ED212F; /* MOP Red */
    --primary-dark: #c41a26; /* Darker MOP Red */
    --primary-light: #f25c67; /* Lighter MOP Red */
    
    /* Secondary colors */
    --secondary: #6c757d;
    --secondary-dark: #5a6268;
    --secondary-light: #a1a8ae;
    
    /* New accent colors for visual pop */
    --accent-blue: #2568ef;
    --accent-purple: #7747e3;
    --accent-teal: #20c997;
    
    /* Category colors (can be used in results) */
    --must-have: #198754; 
    --should-have: #ffca2c; 
    --could-have: #0dcaf0; 
    --wont-have: #dc3545; 
    
    /* Neutral colors */
    --dark: #333; /* Updated from --dark: #343a40; */
    --light: #f8f9fa;
    --white: #ffffff;
    --light-text: #4B5563; /* From lead capture CSS */
    
    /* Dark section colors */
    --dark-bg: #1a1a1a;
    --dark-bg-light: #252525;
    --dark-text: #e5e7eb;
    
    /* Other */
    --border: #e5e7eb; /* Updated from --border: #dee2e6; */
    --shadow: rgba(0, 0, 0, 0.05); /* Softer shadow */
    --progress-bg: #e9ecef;
    
    /* Font sizes */
    --font-small: 0.875rem;
    --font-normal: 1rem;
    --font-medium: 1.125rem;
    --font-large: 1.25rem;
    --font-xlarge: 1.5rem;
    --font-xxlarge: 2rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;

    --text-color: #333;
}

/* Base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Styles from index.html inline <style> merged here */
body { 
    font-family: 'Inter', sans-serif; /* Use Inter font */
    background-color: var(--light); /* Lighter background */
    color: var(--dark);
    line-height: 1.6; 
}

/* Dark Section Styling */
.dark-section {
    background-color: var(--text-color);
    color: white;
    position: relative;
}

.dark-section * {
    color: white;
}

.dark-section p,
.dark-section li {
    color: rgba(255, 255, 255, 0.9);
}

.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: var(--white);
}

.dark-section .benefit-card,
.dark-section .testimonial {
    background-color: var(--dark-bg-light);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-section .benefit-card p,
.dark-section .testimonial .quote {
    color: rgba(255, 255, 255, 0.8);
}

.dark-section .author-info span {
    color: rgba(255, 255, 255, 0.6);
}

/* Container */
.container { 
    max-width: 900px; /* Consistent container width */
    margin: 0 auto; 
    padding: var(--space-lg) var(--space-md); /* Responsive padding */
    width: 100%; /* Ensure container takes full width */
}

/* Enhanced header with sticky functionality */
header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    will-change: transform;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

header.scrolled-up {
    transform: translateY(0);
}

header.scrolled-down {
    transform: translateY(-100%);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 36px;
    width: auto;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 30px;
}

.logo-text {
    font-size: var(--font-medium);
    font-weight: 600; 
    vertical-align: middle; 
    color: var(--dark);
    transition: all 0.3s ease;
}

header.scrolled .logo-text {
    font-size: calc(var(--font-medium) - 0.125rem);
}

/* Header CTA button */
header .btn-cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(237, 33, 47, 0.15);
}

header.scrolled .btn-cta {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

/* Remove old logo text styles */
/* .logo-text-container, .logo-feature, .logo-prioritization { display: none; } */

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg); /* Consistent padding */
    border-radius: 6px; /* Slightly more rounded */
    cursor: pointer; 
    font-weight: 500; 
    transition: background-color 0.2s, transform 0.1s;
    text-align: center;
    text-decoration: none;
    border: none; 
    font-size: var(--font-normal); /* Ensure consistent font size */
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0); /* Remove the 1px active shift */
}

/* Button Layout and Positioning */
.buttons-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* Primary Button Styling */
.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    transition: all 0.2s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 33, 47, 0.2);
}

/* Secondary Button Styling */
.btn-secondary {
    background-color: #e5e7eb;
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    border: none;
    transition: all 0.2s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
}

.btn-secondary:hover {
    background-color: #d1d5db;
}

/* Hero Section Button */
.hero .btn-primary {
    margin: 1rem auto 0;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .buttons-row {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .buttons-row button {
        width: 100%;
        margin: 0;
    }

    .hero .btn-primary {
        width: 100%;
        max-width: 300px;
        margin: 1.5rem auto 0;
    }

    /* Ensure proper spacing between social proof and CTA */
    .social-proof {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .social-proof + .btn-primary {
        margin-top: 1.5rem;
    }

    /* Adjust floating button for better mobile experience */
    .floating-estimate-btn {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .floating-estimate-btn .btn-cta {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        border-radius: 8px;
        font-size: 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .hero .btn-primary {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    /* Ensure buttons are properly centered in the hero */
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Adjust spacing for form buttons */
    .form-step .buttons-row {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }
}

/* CTA Button Styling */
.btn-cta {
    background: var(--primary);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(237, 33, 47, 0.2);
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(237, 33, 47, 0.3);
}

/* Fix button alignment in specific sections */
.lets-talk .action-buttons {
    text-align: left;
    margin-top: 2rem;
}

.export-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .export-buttons {
        flex-direction: column;
    }

    .export-buttons button {
        width: 100%;
    }

    .lets-talk .action-buttons {
        text-align: center;
    }
}

/* Main content area */
main .container {
    padding-top: 0; /* Remove extra top padding */
}

h1 { 
    text-align: center; 
    color: var(--dark); /* Changed from red to dark for better hierarchy */
    margin-bottom: var(--space-sm); 
    font-size: var(--font-xxlarge);
}

h1 span {
    color: var(--primary); /* Add span option for strategic red highlights */
}

.subtitle { 
    text-align: center; 
    color: var(--light-text); 
    margin-bottom: var(--space-xl); 
    font-size: var(--font-medium);
}

/* Tool container section */
#prioritization-tool { 
    background-color: var(--white); 
    border-radius: 8px; 
    box-shadow: 0 4px 12px var(--shadow); 
    padding: var(--space-xl); 
}

/* New Progress Indicator Styles */
.progress-indicator { 
    margin-bottom: 2rem; 
    position: relative;
} 
.progress-bar {
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #ED212F, #ff6b81);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 1px 3px rgba(237, 33, 47, 0.3);
}
.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
    animation: shine 1.5s infinite;
}
@keyframes shine {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}
.progress-steps {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}
@media (max-width: 768px) {
    .progress-indicator {
        margin-bottom: 1.5rem;
    }
    
    .progress-bar {
        height: 10px;
        margin-bottom: 12px;
    }
    
    .progress-steps {
        font-size: 1rem;
        font-weight: 600;
    }
}
@media (max-width: 480px) {
    .progress-bar {
        height: 8px;
    }
    
    .progress-steps {
        font-size: 0.9rem;
    }
}

/* Form Step Styles */
.form-step { 
    display: none; /* Hide steps by default */
    background-color: var(--white); /* Ensure background */
    padding: var(--space-lg); 
    margin-bottom: var(--space-md); 
    border: 1px solid var(--border); /* Subtle border */
    border-radius: 6px;
    animation: fadeIn 0.3s ease-in-out; /* Add fade effect */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step.active { 
    display: block; /* Show active step */ 
}

.form-step h2 {
    font-size: var(--font-xlarge);
    color: var(--dark); /* Changed from red to dark */
    margin-bottom: var(--space-sm);
    font-weight: 600;
    border-left: 4px solid var(--primary); /* Strategic use of red as accent */
    padding-left: 10px;
}

.form-step h3 { /* For subheadings like in results */
    font-size: var(--font-large);
    color: var(--dark);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}


.form-step p {
    color: var(--light-text);
    margin-bottom: var(--space-lg);
    font-size: var(--font-normal);
}

/* Input and Form Group Styling */
.input-group {
    margin-bottom: var(--space-lg); /* Consistent spacing */
}

.input-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    font-size: var(--font-small);
}

input[type="text"], 
textarea, 
select,
input[type="email"] { /* Added email type */
    width: 100%;
    padding: 0.75rem 1rem; /* From lead capture */
    border: 1px solid var(--border);
    border-radius: 0.375rem; /* From lead capture */
    font-size: var(--font-normal);
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: var(--white);
    color: var(--dark);
}

input[type="text"]:focus, 
textarea:focus, 
select:focus,
input[type="email"]:focus { /* Added email type */
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(237, 33, 47, 0.1); /* MOP Red focus shadow */
}

textarea {
    min-height: 80px;
    resize: vertical;
}

/* Specific Step Content Styling */

/* Step 1: List Features */
#features-container .feature-item {
    border: 1px dashed var(--border);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border-radius: 4px;
    position: relative;
}
#add-feature-btn {
    /* Style adjustment if needed */
}

/* Step 2 & 3: Ratings */
.ratings-container {
    display: grid;
    gap: var(--space-lg);
}
.feature-rating {
    background-color: #f9fafb;
    padding: var(--space-md);
    border-radius: 8px;
    margin-bottom: var(--space-md);
}
.feature-rating-header {
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--dark);
}
.rating-buttons {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0 1.5rem;
    flex-wrap: wrap;
    gap: 10px;
}
.rating-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    border-radius: 50%;
    background-color: #f5f7fa;
    border: 2px solid #e5e7eb;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    color: var(--text-color);
    -webkit-tap-highlight-color: transparent; /* Removes default mobile tap highlight */
}

.rating-btn:hover {
    border-color: var(--primary);
    background-color: rgba(237, 33, 47, 0.1);
    transform: translateY(-2px);
}

.rating-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(237, 33, 47, 0.3);
}

.rating-buttons {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0 1.5rem;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 768px) {
    .rating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin: 0 5px;
    }
    
    .rating-buttons {
        gap: 12px;
        margin: 1rem 0 1.5rem;
    }
    
    .feature-rating {
        padding: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
        background-color: #f9fafb;
        border: 1px solid #e5e7eb;
    }
    
    .feature-rating-header {
        font-weight: 600;
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .rating-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        margin: 0 4px;
    }
    
    .rating-buttons {
        justify-content: space-between;
        gap: 6px;
    }
    
    .feature-rating {
        padding: 0.75rem;
    }
}

/* Rating colors - make 1-5 gradually more intense */
.impact-rating-btn[data-value="1"].active { background-color: rgba(237, 33, 47, 0.5); }
.impact-rating-btn[data-value="2"].active { background-color: rgba(237, 33, 47, 0.6); }
.impact-rating-btn[data-value="3"].active { background-color: rgba(237, 33, 47, 0.75); }
.impact-rating-btn[data-value="4"].active { background-color: rgba(237, 33, 47, 0.9); }
.impact-rating-btn[data-value="5"].active { background-color: rgba(237, 33, 47, 1); }

.effort-rating-btn[data-value="1"].active { background-color: rgba(237, 33, 47, 0.5); }
.effort-rating-btn[data-value="2"].active { background-color: rgba(237, 33, 47, 0.6); }
.effort-rating-btn[data-value="3"].active { background-color: rgba(237, 33, 47, 0.75); }
.effort-rating-btn[data-value="4"].active { background-color: rgba(237, 33, 47, 0.9); }
.effort-rating-btn[data-value="5"].active { background-color: rgba(237, 33, 47, 1); }

.rating-legend {
    margin-bottom: var(--space-lg); /* Add more space below legend */
    display: flex; 
    justify-content: space-around; /* Spread out items */
    font-size: var(--font-small); 
    color: var(--secondary-dark);
    padding: var(--space-sm);
    background-color: #f8f9fa;
    border-radius: 4px;
}

/* Step 4: Dependencies */
#dependencies-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.dependency-item {
    background-color: #f9fafb;
    padding: var(--space-md);
    border-radius: 8px;
}

.dependency-item label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--dark);
}

.dependency-select {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid var(--border);
    border-radius: 6px;
    background-color: white;
    font-family: inherit;
    min-height: 100px;
}

/* Step 5: Results */
.results-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.result-card {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: var(--space-lg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.result-card h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: var(--space-xs);
    font-size: var(--font-medium);
}

.result-description {
    color: var(--light-text);
    margin-bottom: var(--space-md);
    font-size: var(--font-small);
}

.matrix-display {
    min-height: 200px;
    border-radius: 6px;
    overflow: hidden;
    background-color: white;
    padding: var(--space-md);
}

.table-container {
    overflow-x: auto;
    background-color: white;
    border-radius: 6px;
    padding: var(--space-xs);
}

.priority-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-small);
}

.priority-table th {
    background-color: #f9fafb;
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-weight: 600;
}

.priority-table td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--border);
}

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

.export-options {
    margin-top: var(--space-xl);
    background-color: #f9fafb;
    border-radius: 8px;
    padding: var(--space-lg);
}

.export-options h3 {
    margin-top: 0;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.export-options p {
    color: var(--light-text);
    margin-bottom: var(--space-md);
}

.export-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.export-buttons .btn {
    margin-right: var(--space-sm);
}

/* Step 6: Lead Capture Form */
/* Uses .input-group, input, label styles defined earlier */
/* Add specific styles if needed */
.form-step[data-step="6"] {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-step[data-step="6"] h2 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
}

.form-step[data-step="6"] p {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.playbook-preview {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px dashed rgba(0,0,0,0.1);
}

.playbook-image {
    flex: 0 0 150px;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playbook-benefits {
    flex: 1;
}

.playbook-benefits h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.playbook-benefits ul {
    list-style: none;
    padding: 0;
}

.playbook-benefits li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.playbook-benefits li i {
    color: var(--primary);
    margin-right: 0.75rem;
}

.consultation-option {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: rgba(237, 33, 47, 0.05);
    border-radius: 8px;
}

.consultation-option input[type="checkbox"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
}

.consultation-option label {
    font-weight: 500;
    cursor: pointer;
}

.guarantee {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.guarantee i {
    color: var(--accent-teal);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Form groups in step 6 */
.form-step[data-step="6"] .form-group {
    margin-bottom: 1.25rem;
}

.form-step[data-step="6"] .form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-step[data-step="6"] .form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-step[data-step="6"] .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(237, 33, 47, 0.1);
}

.form-step[data-step="6"] .buttons-row {
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

/* Submit button enhancement */
.form-step[data-step="6"] button[type="submit"] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1rem 2rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(237, 33, 47, 0.2);
}

.form-step[data-step="6"] button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(237, 33, 47, 0.25);
}

/* Button Layout within steps */
.buttons-row { 
    display: flex; 
    justify-content: space-between; 
    margin-top: var(--space-xl); /* Ensure consistent spacing */
    border-top: 1px solid var(--border); /* Separator line */
    padding-top: var(--space-lg);
}
/* Hide back button on first step (Step 0) */
.form-step[data-step="0"] .btn-back {
    display: none; 
}
/* Adjust button alignment if only one button exists */
.buttons-row > div:first-child:empty + .btn {
     margin-left: auto; /* Push single button (Next) to the right */
}


/* Footer */
footer { 
    text-align: center; 
    margin-top: 3rem; 
    padding-top: 1.5rem; 
    border-top: 1px solid var(--border); 
    font-size: 0.9rem; 
    color: var(--light-text); 
}

/* New footer styles to match MVP Cost Calculator */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}


/* REMOVED OLD STYLES */
/* Removed .steps-container */
/* Removed .step-indicator, .step, .step-number, .step-label, .connector */
/* Removed old .progress-bar-container, .progress-bar-text (replaced by new progress indicator styles) */
/* Removed old .steps-content (replaced by .form-step) */
/* Removed old .nav-buttons (replaced by .buttons-row) */
/* Removed old .matrix styles (simplified to #matrix-display placeholder) */


/* Responsive styles (Review and adapt) */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    /* Improve typography for mobile */
    h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Fix header spacing when sticky */
    header.sticky {
        padding: 0.5rem 0;
    }
    
    header.sticky .logo img {
        height: 28px;
    }
    
    /* Optimize form elements for touch */
    .btn {
        padding: 0.8rem 1.2rem;
        min-height: 44px; /* Minimum touch target height */
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve priority tool on mobile */
    #prioritization-tool {
        padding: 1.5rem 1rem;
        margin: 0 -0.5rem;
        border-radius: 6px;
    }
    
    /* Make the form steps more mobile-friendly */
    .form-step {
        padding: 1.25rem 1rem;
    }
    
    /* Adjust ratings for easier tapping */
    .rating-btn {
        min-width: 44px;
        min-height: 44px;
        margin: 0 2px;
    }
    
    /* Better spacing for feature items */
    #features-container .feature-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Adjust dependency selects for touch */
    .dependency-select {
        min-height: 44px;
        padding: 0.5rem;
    }
    
    /* Make testimonial cards easier to read */
    .testimonial {
        padding: 1.25rem;
    }
    
    /* Adjust the benefits grid layout */
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Improve FAQs on mobile */
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 2rem;
    }
}

/* Additional mobile tweaks for smaller screens */
@media (max-width: 576px) {
    /* Optimize form steps on very small screens */
    .form-step {
        padding: 1rem 0.75rem;
    }
    
    /* Adjust buttons in button rows */
    .buttons-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .buttons-row .btn {
        width: 100%;
    }
    
    /* Fix back/next button arrangement */
    .form-step[data-step="0"] .buttons-row {
        flex-direction: row;
    }
    
    /* Improve hero section */
    .hero {
        padding: 2rem 0 3rem;
    }
    
    /* Fix social proof section */
    .social-proof {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-proof-item {
        width: 100%;
        text-align: center;
    }
}

/* Touch-friendly improvements for all screen sizes */
.btn, 
button,
.rating-btn,
input[type="checkbox"],
input[type="radio"],
select,
.faq-question {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Improve scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent content jumping when modals open */
html.has-modal {
    overflow: hidden;
}

/* Fix form field focus styles for mobile */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(237, 33, 47, 0.3);
}

/* Improved Hero Section with larger heading */
.hero {
    padding: 6rem 0 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f9 100%);
    text-align: center;
    border-bottom: 1px solid var(--border);
    margin-top: -0.25rem; /* Compensate for header border */
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ed212f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: "";
    position: absolute;
    bottom: -0.1rem;
    left: 0;
    right: 0;
    height: 0.3rem;
    background-color: rgba(237, 33, 47, 0.15);
    z-index: -1;
}

/* Mobile optimizations for header and hero */
@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }
    
    header .logo img {
        height: 30px;
    }
    
    .hero {
        padding: 4.5rem 0 3.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .hero .btn-primary {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    header .logo img {
        height: 26px;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.25;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Social proof section styling */
.social-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.social-proof-item {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.social-proof-item:hover {
    transform: translateY(-2px);
}

.social-proof-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .social-proof {
        gap: 1rem;
        margin: 1.5rem auto;
        max-width: 300px;
    }

    .social-proof-item {
        flex: 0 1 100%;
        min-width: unset;
        padding: 0.75rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero .subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .hero h1 span {
        display: inline;
    }

    .social-proof-item strong {
        font-size: 1.25rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 3.5rem 0;
    background-color: var(--white);
    position: relative;
}

/* Add subtle pattern background to benefits */
.benefits::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.benefit-card {
    background-color: var(--white);
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    position: relative;
}

.benefit-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Calculator Section (Renamed from prioritization-tool) */
.calculator {
    padding: 3rem 0 4rem;
    background-color: var(--light);
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.calculator h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.calculator > .container > p {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

#prioritization-tool {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    padding: 2rem;
    position: relative;
}

/* Testimonials Section */
.testimonials {
    padding: 4.5rem 0 5.5rem;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Add subtle pattern to testimonials */
.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M81.28 88H68.413l19.298 19.298L81.28 88zm2.107 0h13.226L90 107.838 83.387 88zm15.334 0h12.866l-19.298 19.298L98.72 88zm-32.927-2.207L73.586 78h32.827l.5.5 7.294 7.293L115.414 87l-24.707 24.707-.707.707L64.586 87l1.207-1.207zm2.62.207L74 80.414 79.586 86H68.414L74 80.414zm16 0L90 80.414 95.586 86H84.414L90 80.414zm16 0L106 80.414 111.586 86h-11.172L106 80.414zM60.414 82L58 84.414 53.586 80H64.414L60.414 82zm0 16L58 100.414 53.586 96h10.828L60.414 98zm16 0L74 100.414 69.586 96h10.828L76.414 98zm16 0L90 100.414 85.586 96h10.828L92.414 98zm16 0l-4 2.414L99.586 96h10.828L108.414 98zM68.414 114l-4-2.414L70 106.414 68.414 114zm16 0l-4-2.414L86 106.414 84.414 114zm16 0l-4-2.414L102 106.414 100.414 114zm16 0l-4-2.414L118 106.414 116.414 114zM66.414 128l-4-2.414L68 120.414 66.414 128zm16 0l-4-2.414L84 120.414 82.414 128zm16 0l-4-2.414L100 120.414 98.414 128zm16 0l-4-2.414L116 120.414 114.414 128zm-16 16l-4-2.414L100 136.414 98.414 144zm16 0l-4-2.414L116 136.414 114.414 144z' fill='%23ed212f' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.testimonials h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonials > .container > p {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 3rem;
    color: rgba(237, 33, 47, 0.1);
}

.quote {
    margin-bottom: 1rem;
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.quote-highlight {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
}

.author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    border: 2px solid rgba(237, 33, 47, 0.2);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-color);
    font-size: 1rem;
}

.author-info span {
    color: var(--light-text);
    font-size: 0.85rem;
}

/* Awards Section */
.awards {
    padding: 4rem 0;
    background-color: var(--light);
    text-align: center;
    border-top: 1px solid var(--border);
}

.awards h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.awards-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.award {
    flex: 1;
    min-width: 180px;
    max-width: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award img {
    height: 80px;
    margin-bottom: 1.25rem;
    object-fit: contain;
}

.award p {
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .awards-grid {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .award {
        margin-bottom: 0;
        min-width: 100%;
    }
    
    .award img {
        height: 70px;
        margin-bottom: 1rem;
    }
}

/* Video Showcase Section */
.video-showcase {
    padding: 4rem 0;
    background-color: var(--white);
    text-align: center;
}

.video-showcase h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.video-description {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.video-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

/* Let's Talk Section */
.lets-talk {
    padding: 5rem 0;
    background-color: var(--text-color);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lets-talk .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lets-talk-content {
    max-width: 100%;
}

.lets-talk-features {
    margin-bottom: 2.5rem;
}

.lets-talk .feature {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.lets-talk .feature:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Red underline for section titles */
.lets-talk .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ed212f;
    margin-top: 1rem;
    margin-left: 0;
    margin-right: auto;
}

.action-buttons {
    margin-top: 2rem;
}

.lets-talk-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lets-talk-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Icon container styling */
.lets-talk .feature-icon {
    background-color: #ed212f; /* Solid red background for icons */
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px; /* Slightly rounder corners like in screenshot */
    margin-right: 1.5rem; /* More space between icon and content */
    flex-shrink: 0;
}

/* Icon itself */
.lets-talk .feature-icon i {
    color: white;
    font-size: 1.2rem;
}

/* Section title styling */
.lets-talk h2,
.lets-talk .section-title,
.lets-talk h2 span {
    color: white;
    margin-bottom: 1.5rem; /* Add more space below heading */
}

/* Paragraph styling */
.lets-talk p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem; /* More space below intro paragraph */
}

.lets-talk .feature h4 {
    color: white;
    font-size: 1.2rem; /* Slightly larger headings */
    margin-bottom: 0.5rem;
}

.lets-talk .feature p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0; /* No bottom margin on feature descriptions */
}

/* CTA button styling */
.lets-talk .btn-cta {
    background-color: #ed212f;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(237, 33, 47, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
}

.lets-talk .btn-cta:hover {
    background-color: #c41a26;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(237, 33, 47, 0.4);
}

/* Award section styling */
.awards {
    padding: 4rem 0;
    background-color: var(--light);
    text-align: center;
}

.awards h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.awards-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.award {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.award img {
    height: 80px;
    margin-bottom: 1rem;
}

.award p {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
    border-top: 1px solid var(--border);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.faq-section .subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: rgba(237, 33, 47, 0.03);
}

.faq-question h3 {
    margin: 0;
    font-size: var(--font-large);
    color: var(--text-color);
    padding-right: 2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-dark);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* Ensure alternating section backgrounds */
.hero { background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f9 100%); }
.benefits { background-color: var(--white); }
.calculator { background-color: var(--light); }
.testimonials { background-color: var(--white); }
.awards { background-color: var(--light); }
.video-showcase { background-color: var(--white); }
.lets-talk { background-color: var(--text-color); }
.faq-section { background-color: var(--white); }

/* Enhanced Footer (already styled, just update background) */
footer {
    background-color: #2d2d2d;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col p {
    color: #e5e7eb;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
    text-decoration: underline;
}

.contact-link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: white;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.copyright p {
    color: #a1a8ae;
}

.copyright a {
    color: #a1a8ae;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: white;
    text-decoration: underline;
}

/* Floating Button */
.floating-estimate-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-estimate-btn.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.floating-estimate-btn .btn-cta {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(237, 33, 47, 0.2);
    transition: all 0.2s ease;
}

.floating-estimate-btn .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(237, 33, 47, 0.3);
}

/* Responsive styles */
@media (max-width: 992px) {
    .lets-talk .container,
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lets-talk-image {
        order: -1;
    }
    
    .playbook-preview {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .playbook-image {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: var(--space-md) var(--space-sm);
    }
    
    .hero {
        padding: 3rem 0 2.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .award {
        margin-bottom: 2rem;
    }
    
    #prioritization-tool {
        padding: 1.5rem;
    }
    
    .form-step {
        padding: 1.5rem;
    }
    
    .form-step[data-step="6"] {
        padding: 1.5rem;
    }
    
    .buttons-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .buttons-row button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .hero .btn {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .copyright {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Feature Helpers */
.feature-helpers {
    background-color: var(--light);
    border-radius: 8px;
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    border: 1px solid var(--border);
}

.feature-helper-controls {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    align-items: center;
}

#inspire-me-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
    background-color: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#inspire-me-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

#template-selector {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    background-color: var(--white);
    font-size: var(--font-normal);
    color: var(--dark);
    min-width: 220px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
    cursor: pointer;
}

#template-features {
    margin-top: var(--space-lg);
    background-color: var(--white);
    border-radius: 8px;
    padding: var(--space-md);
    border: 1px solid var(--border);
}

.template-feature {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: var(--space-md);
    transition: transform 0.2s, box-shadow 0.2s;
}

.template-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow);
}

.btn-add-template {
    color: var(--primary);
    background: none;
    border: 1px solid var(--primary);
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.btn-add-template:hover {
    color: white;
    background-color: var(--primary);
}

#feature-guide-toggle {
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    padding: 0.5rem 0.75rem;
    background-color: rgba(237, 33, 47, 0.05);
    border-radius: 4px;
    transition: all 0.2s;
    display: inline-flex;
}

#feature-guide-toggle:hover {
    background-color: rgba(237, 33, 47, 0.1);
}

#feature-guide {
    background-color: var(--white);
    border-left: 4px solid var(--primary);
    border-radius: 0 6px 6px 0;
    padding: var(--space-lg);
    margin-top: var(--space-md);
}

/* Make sure we have a responsive layout for feature helpers */
@media (max-width: 768px) {
    .feature-helper-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #template-selector {
        width: 100%;
        max-width: none;
    }
    
    #template-features > div {
        grid-template-columns: 1fr !important;
    }
}

/* Section headings */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color); /* Dark color for white background sections */
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 60px;
    background-color: var(--primary); /* Strategic use of red as accent */
}

/* Dark section styling refinements */
.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: var(--white);
}

.dark-section .section-title::after {
    background-color: var(--primary); /* Keep red accent in dark sections */
}

/* Mobile header CTA */
.mobile-header-cta {
    display: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    header .container {
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }
    
    header .logo img {
        height: 32px;
    }
    
    header .logo-text {
        display: none;
    }
    
    header .btn-cta {
        display: none;
    }
    
    .mobile-header-cta {
        display: block;
    }
    
    header.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    header.sticky.hidden {
        transform: translateY(-100%);
    }
    
    body.has-sticky-header {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .mobile-header-cta {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Touch feedback for mobile interactions */
.tap-active {
    transform: scale(0.97);
    opacity: 0.9;
    transition: transform 0.1s, opacity 0.1s;
}

/* Improve loading performance */
body {
    opacity: 1;
    transition: opacity 0.2s ease-in;
}

body.loading {
    opacity: 0;
}

/* Update text colors for headers in dark sections */
.dark-section h2,
.dark-section .section-title {
    color: white;
}

.lets-talk h2,
.lets-talk .section-title,
.lets-talk h2 span {
    color: white;
}

.lets-talk p {
    color: rgba(255, 255, 255, 0.9);
}

.lets-talk .feature h4 {
    color: white;
}

.lets-talk .feature p {
    color: rgba(255, 255, 255, 0.9);
}

/* Ensure quote highlight has consistent color in testimonials */
.quote-highlight {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Add more contrast to the author info in dark sections */
.dark-section .author-info strong {
    color: white;
}

.dark-section .author-info span {
    color: rgba(255, 255, 255, 0.8);
}

/* Ensure primary buttons stand out better in dark sections */
.dark-section .btn-primary,
.dark-section .btn-cta {
    background-color: #ED212F;
    color: white;
    border: none;
}

.dark-section .btn-primary:hover,
.dark-section .btn-cta:hover {
    background-color: #c41a26;
}

/* Ensure dark color headers in sections with white backgrounds */
.calculator h2,
.awards h2,
.video-showcase h2,
.faq-section h2 {
    color: var(--text-color); /* Dark color for white background sections */
}

/* Add red accent for section titles in white background sections */
.calculator .section-title,
.awards .section-title,
.video-showcase .section-title,
.faq-section .section-title {
    color: var(--text-color);
}

/* Keep the red underscore in all section titles */
.section-title::after {
    background-color: #ED212F;
}

/* Keep the strong contrast for the FAQ questions */
.faq-question h3 {
    color: var(--text-color);
    font-weight: 600;
}

.step-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--text-color);
    color: white;
    font-weight: 500;
    margin-right: 8px;
}

.prioritization-step-heading {
    display: flex;
    align-items: center;
    background-color: var(--text-color);
    color: white;
    padding: 15px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: 0;
}

.card-title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.client-name {
    font-weight: 600;
    color: var(--text-color);
}

/* Dark Section Cards */
.feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

/* Priority Matrix Styling */
.matrix-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.matrix-quadrant {
    padding: 1.25rem;
    border-radius: 8px;
    min-height: 200px;
}

.matrix-quadrant h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    white-space: normal;
    line-height: 1.3;
}

.matrix-quadrant .description {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-card {
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Error Modal Styling */
.error-modal {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: #2d2d2d;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: slideUp 0.3s ease;
}

.error-modal .error-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.error-modal .error-message {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.error-modal .error-button {
    background: #5cc9f5;
    color: #2d2d2d;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .benefit-item {
        padding: 1.25rem;
    }

    .feature {
        padding: 1.25rem;
    }

    .matrix-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .matrix-quadrant {
        padding: 1rem;
        min-height: auto;
    }

    .matrix-quadrant h3 {
        font-size: 1rem;
    }

    .feature-card {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .error-modal {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 12px 12px 0 0;
    }

    .error-modal .error-content {
        flex-direction: column;
        text-align: center;
    }

    .error-modal .error-button {
        width: 100%;
        padding: 0.75rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .benefit-item {
        padding: 1rem;
    }

    .feature {
        padding: 1rem;
    }

    .matrix-quadrant {
        padding: 0.875rem;
    }

    .matrix-quadrant h3 {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 0.625rem;
        font-size: 0.8125rem;
    }

    .error-modal {
        padding: 0.875rem;
    }

    .error-modal .error-message {
        font-size: 0.875rem;
    }
}

/* Priority Matrix Colors */
.matrix-quadrant.must-have {
    background-color: rgba(25, 135, 84, 0.1);
}

.matrix-quadrant.should-have {
    background-color: rgba(255, 202, 44, 0.1);
}

.matrix-quadrant.could-have {
    background-color: rgba(13, 202, 240, 0.1);
}

.matrix-quadrant.wont-have {
    background-color: rgba(220, 53, 69, 0.1);
}

/* Ensure text doesn't get cut off */
.matrix-quadrant h3,
.feature-card {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
} 

.hero .subtitle {
    font-size: 1.35rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero .btn-primary {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(237, 33, 47, 0.2);
}

.hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(237, 33, 47, 0.3);
}

/* Mobile optimizations for the benefit items on the first screen of the framework */
@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .benefit-item {
        padding: 1.25rem !important;
        display: flex !important;
        align-items: flex-start !important;
    }
    
    .benefit-item div:first-child {
        margin-right: 1rem !important;
        font-size: 1.75rem !important;
        min-width: 2rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .benefit-item h3 {
        margin-top: 0 !important;
        margin-bottom: 0.5rem !important;
        font-size: 1.1rem !important;
    }
    
    .benefit-item p {
        margin-bottom: 0 !important;
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {
    .benefits-container {
        margin: 1rem 0 !important;
    }
    
    .benefit-item {
        padding: 1rem !important;
    }
    
    .benefit-item div:first-child {
        font-size: 1.5rem !important;
    }
    
    .benefit-item h3 {
        font-size: 1rem !important;
    }
    
    .benefit-item p {
        font-size: 0.9rem !important;
    }
    
    .form-step[data-step="0"] .buttons-row {
        margin-top: 1rem !important;
    }
}

/* Divider between form and direct consultation option */
.or-divider {
    text-align: center;
    margin: 2.5rem 0;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: var(--border);
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.or-divider span {
    display: inline-block;
    padding: 0 1rem;
    background-color: white;
    position: relative;
    z-index: 1;
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Direct consultation section */
.direct-consultation {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
}

.direct-consultation h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.direct-consultation p {
    color: var(--light-text);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.consultation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(237, 33, 47, 0.25);
}

/* Mobile styles for step 6 */
@media (max-width: 768px) {
    .form-step[data-step="6"] {
        padding: 1.5rem;
    }
    
    .or-divider {
        margin: 2rem 0;
    }
    
    .direct-consultation {
        padding: 1.25rem;
    }
    
    .consultation-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .form-step[data-step="6"] {
        padding: 1.25rem;
    }
    
    .or-divider {
        margin: 1.5rem 0;
    }
    
    .or-divider::before,
    .or-divider::after {
        width: 40%;
    }
    
    .direct-consultation {
        padding: 1rem;
    }
    
    .direct-consultation h3 {
        font-size: 1.1rem;
    }
    
    .direct-consultation p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .consultation-btn {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}

/* Results page consultation CTA */
.results-consultation {
    background-color: #f5f7f9;
    border-radius: 8px;
    padding: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.results-consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
}

.results-consultation h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.results-consultation p {
    color: var(--light-text);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-btn-results {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    max-width: 300px;
}

/* Mobile styles for results consultation */
@media (max-width: 768px) {
    .results-consultation {
        padding: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .consultation-btn-results {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .results-consultation {
        padding: 1.25rem;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .results-consultation h3 {
        font-size: 1.1rem;
    }
    
    .results-consultation p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .consultation-btn-results {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}

/* Improving tap/click feedback for mobile users */
.tap-active {
    opacity: 0.7;
    transform: scale(0.98);
    transition: all 0.1s ease;
}

/* Enhanced floating button */
.floating-estimate-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    border-radius: 50px;
    overflow: hidden;
}

.floating-estimate-btn.hidden {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.floating-estimate-btn .btn-cta {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    margin: 0;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.floating-estimate-btn .btn-cta::before {
    content: "\f11e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.floating-estimate-btn .btn-cta:hover {
    transform: translateY(0);
    box-shadow: none;
}

@media (max-width: 768px) {
    .floating-estimate-btn {
        bottom: 16px;
        right: 16px;
        left: 16px;
        text-align: center;
    }
    
    .floating-estimate-btn .btn-cta {
        padding: 0.75rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .floating-estimate-btn {
        bottom: 12px;
        right: 12px;
        left: 12px;
    }
}

/* Improved matrix visualization for mobile */
.matrix-display {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 260px;
    gap: 2px;
    background-color: var(--border);
    margin-top: 1rem;
}

.matrix-quadrant {
    padding: 1rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.matrix-quadrant h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.matrix-quadrant .description {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.feature-card {
    padding: 0.5rem 0.75rem;
    background-color: rgba(237, 33, 47, 0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--primary);
    text-align: left;
    width: 100%;
    font-weight: 500;
}

.matrix-quadrant.must-have {
    background-color: rgba(237, 33, 47, 0.05);
}

.matrix-quadrant.should-have {
    background-color: rgba(237, 33, 47, 0.02);
}

.matrix-quadrant.could-have {
    background-color: rgba(0, 120, 200, 0.02);
}

.matrix-quadrant.wont-have {
    background-color: rgba(108, 117, 125, 0.02);
}

@media (max-width: 768px) {
    .matrix-display {
        min-height: 320px;
        gap: 3px;
    }
    
    .matrix-quadrant {
        padding: 0.75rem;
    }
    
    .matrix-quadrant h3 {
        font-size: 0.85rem;
    }
    
    .feature-card {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .matrix-display {
        min-height: 280px;
    }
    
    .matrix-quadrant h3 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .matrix-quadrant .description {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card {
        padding: 0.35rem 0.5rem;
        margin-bottom: 0.4rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
  .social-proof-item {
    font-size: 1.3rem !important;
    padding: 1.2rem 0 !important;
    margin-bottom: 1.2rem !important;
    border-radius: 12px !important;
    width: 90vw !important;
    max-width: 350px !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.2rem !important;
    font-size: 1.3rem !important;
    padding: 1.2rem 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(237, 33, 47, 0.08);
    text-align: center;
    flex: none !important;
    display: block !important;
  }
  .social-proof-item strong {
    font-size: 2rem !important;
    display: block;
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 768px) {
  .social-proof {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    margin: 2rem 0 0 0 !important;
    padding: 0 !important;
  }
  .social-proof-item {
    width: 90vw !important;
    max-width: 350px !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.2rem !important;
    font-size: 1.3rem !important;
    padding: 1.2rem 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(237, 33, 47, 0.08);
    text-align: center;
    flex: none !important;
    display: block !important;
  }
  .social-proof-item strong {
    font-size: 2rem !important;
    display: block;
    margin-bottom: 0.3rem;
  }
}