
:root {
            --primary: #482d70; /* Brand Purple */
            --primary-dark: #3b2459; /* Darker Purple (hover) */
            --primary-light: #e9e4f0; /* Light Purple */
            --secondary: #181944; /* Dark Blue (for header/footer, secondary backgrounds) */
            --text: #1e293b; /* Primary Text (dark gray) */
            --text-light: #64748b; /* Secondary Text (medium gray) */
            --bg-light: #f8fafc; /* Light Background */
            --danger: #ef4444; /* Red */
            --danger-light: #fee2e2;
            --success: #10b981; /* Green */
            --success-light: #d1fae5;
            --warning: #f59e0b; /* Orange */
            --warning-light: #fef3c7;
        }
        
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 0.5rem;
            width: 100%;
            box-sizing: border-box;
        }
        
        @media (min-width: 768px) {
            .container {
                padding: 0 2rem;
            }
        }
        
        .report-id {
            background-color: var(--primary-light); /* Light purple background */
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary); /* Brand purple text */
        }
	.single-company_report .hero-section {background-color:var(--primary);color: white; padding:4rem 1.5rem; margin-bottom:2rem; border-radius:0 0 20px 20px; text-align:center;}
        
        .front-page-hero {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            color: var(--text);
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
            min-height: 85vh;
            display: flex;
            align-items: center;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }
        
        .front-page-hero::before {
            content: "";
            position: absolute;
            top: -20%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(72, 45, 112, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            animation: heroFloat 25s ease-in-out infinite;
        }
        
        .front-page-hero::after {
            content: "";
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(72, 45, 112, 0.02) 0%, transparent 70%);
            border-radius: 50%;
            animation: heroFloat 30s ease-in-out infinite reverse;
        }
        
        @keyframes heroFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(30px, -30px) rotate(180deg); }
        }
        
        .front-page-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            font-weight: 700;
            color: var(--text);
        }
        
        .front-page-hero p {
            font-size: 1.3rem;
            margin: 0 auto 2.5rem;
            opacity: 0.85;
            line-height: 1.6;
            color: var(--text-light);
        }
        
        .report-header {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        
        .report-header:hover {
            transform: translateY(-5px);
        }
        
        .company-name {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
                    gap:1rem;
        }
        
        .company-name i {
            margin-right: 0.5rem;
            color: var(--primary);
        }
        
        .report-date {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .company-details {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
            gap: 2rem;
        }
        
        .company-detail {
            display: flex;
            align-items: center;
            color: var(--text);
        }
        
        .company-detail-icon {
            margin-right: 0.5rem;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .score-card {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .score-item {
            text-align: center;
            background-color: white;
            border-radius: 12px;
            padding: 1.5rem;
            flex: 1;
            min-width: 200px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            
					
        }
        
        .score-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);z-index:1;overflow: visible !important;
        }
        
        .score-item h3 {
            font-size: 1rem;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }
        
        .score-item .value {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }
        
        .score-item.danger {
            background-color: var(--danger-light);
        }
        
        .score-item.warning {
            background-color: var(--warning-light);
        }
        
        .score-item.success {
            background-color: var(--success-light);
        }
        
        .score-item.danger .value {
            color: var(--danger);
        }
        
        .score-item.warning .value {
            color: var(--warning);
        }
        
        .score-item.success .value {
            color: var(--success);
        }
        
        .score-item .context {
            font-size: 0.875rem;
            color: var(--text-light);
            position: relative;
            z-index: 2;
        }
        
        .score-item i {
            position: absolute;
            bottom: -10px;
            right: -10px;
            font-size: 5rem;
            opacity: 0.1;
            z-index: 1;
        }
        
        .industry-comparison {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .industry-comparison h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
                    gap:1rem;
        }
        
        .industry-comparison h2 i {
            margin-right: 0.5rem;
            color: var(--primary);
        }
        
        .comparison-container {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }
        
        .comparison-item {
            flex: 1;
            width: 100%;
        }
        
        .comparison-item h3 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }
        
        .progress-container {
            height: 30px;
            background-color: #e2e8f0;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            margin-bottom: 0.5rem;
            width: 100%;
        }
        
        .progress-bar {
            height: 100%;
            border-radius: 15px;
            transition: width 1.5s ease-in-out;
        }
        
        .progress-bar.your-business {
            background-color: var(--primary);
        }
        
        .progress-bar.industry {
            background-color: var(--success);
        }
        
        .progress-label {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }
        
        .progress-value {
            font-size: 0.875rem;
            color: var(--text-light);
            display: flex;
            justify-content: space-between;
            width: 100%;
        }
        
        .chart-section {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .chart-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
                    gap:1rem;
        }
        
        .chart-section h2 i {
            margin-right: 0.5rem;
            color: var(--primary);
        }
        
        .chart-container {
                    height: 400px;
margin-bottom: 1.5rem;

            position: relative;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);

        }
        .chart-container canvas {
    border-radius: 8px;
}
    #dailyChart,
#callDistributionChart {
    background: transparent;
}
        .chart-insights {
            background-color: var(--danger-light);
            border-left: 4px solid var(--danger);
            padding: 1rem;
            border-radius: 0 8px 8px 0;
        }
        
        .chart-insights h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--danger);
        }
        
        .revenue-impact {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .revenue-impact h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
                    gap:1rem;
        }
        
        .revenue-impact h2 i {
            margin-right: 0.5rem;
            color: var(--danger);
        }
        
        .revenue-calculator {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .calc-input {
            flex: 1;
            min-width: 300px;
        }
        
        .calc-result {
            flex: 1;
            min-width: 300px;
            background-color: var(--danger-light);
            padding: 2rem;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }
        
        .calc-result h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--danger);
        }
        
        .loss-amount {
            font-size: 3rem;
            font-weight: 700;
            color: var(--danger);
            margin-bottom: 1rem;
        }
        
        .calc-result i {
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 8rem;
            opacity: 0.1;
        }
        
        .annual-loss {
            font-size: 1.1rem;
            margin-top: 1rem;
        }
        
        .annual-loss strong {
            color: var(--danger);
        }
        
        .input-group {
            margin-bottom: 1.5rem;
        }
        
        .input-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .input-group input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .input-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-light);
        }
        
        .input-slider {
            width: 100%;
            margin-top: 0.5rem;
            -webkit-appearance: none; /* Override default appearance */
            appearance: none;
            height: 8px; /* Specify a height */
            background: #e2e8f0; /* Light grey background for the track */
            border-radius: 5px;
            outline: none; /* Remove outline */
        }

        .input-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px; /* Width of the thumb */
            height: 20px; /* Height of the thumb */
            background: var(--primary); /* Brand Purple */
            border-radius: 50%;
            cursor: pointer;
            margin-top: -6px; /* Adjust thumb position vertically */
        }

        .input-slider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            background: var(--primary); /* Brand Purple */
            border-radius: 50%;
            cursor: pointer;
            border: none; /* FF adds a border by default */
        }

        .input-slider::-ms-thumb {
            width: 20px;
            height: 20px;
            background: var(--primary); /* Brand Purple */
            border-radius: 50%;
            cursor: pointer;
            border: none;
        }

        /* Track styling for WebKit/Blink */
        .input-slider::-webkit-slider-runnable-track {
            width: 100%;
            height: 8px;
            cursor: pointer;
            background: var(--primary-light); /* Light purple for the track */
            border-radius: 5px;
        }
        
        /* Track styling for Firefox */
        .input-slider::-moz-range-track {
            width: 100%;
            height: 8px;
            cursor: pointer;
            background: var(--primary-light); /* Light purple for the track */
            border-radius: 5px;
            border: none; /* FF adds a border by default */
        }

        /* Track styling for IE/Edge */
        .input-slider::-ms-track {
            width: 100%;
            height: 8px;
            cursor: pointer;
            background: transparent; /* IE/Edge track needs to be transparent */
            border-color: transparent;
            color: transparent;
        }
        .input-slider::-ms-fill-lower {
            background: var(--primary-light); /* Light purple for the track */
            border-radius: 5px;
        }
        .input-slider::-ms-fill-upper {
            background: #e2e8f0; /* Light grey for the part of the track after thumb */
            border-radius: 5px;
        }
        
        /* New Educational Section Styles */
        .educational-section {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .educational-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            color: var(--primary);
        }
        
        .section-icon {
            margin-right: 0.5rem;
            font-size: 1.5rem;
        }
        
        .educational-section h3 {
            font-size: 1.25rem;
            color: var(--primary);
            margin: 1.5rem 0 0.75rem;
        }
        
        .educational-section p {
            margin-bottom: 1rem;
        }
        
        .how-it-works {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .step-card {
            flex: 1;
            min-width: 250px;
            background-color: var(--primary-light);
            border-radius: 12px;
            padding: 1.75rem;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 6px 12px rgba(0,0,0,0.08);
            border-bottom: 4px solid var(--primary);
        }
        
        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.12);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 15px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: 3px solid white;
            transition: transform 0.3s ease;
            z-index: 5;
        }
        
        .step-card:hover .step-number {
            transform: scale(1.1) rotate(10deg);
        }
        
        .step-card .step-icon {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 1.25rem;
            display: block;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .step-card:hover .step-icon {
            transform: scale(1.2);
        }
        
        .benefits-grid {
          display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
    margin: 2rem 0;
    width: 100%;

        }
        
        .benefit-item {
            background-color: var(--success-light);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center; /* Center align all content */
    transition: transform 0.3s ease;

        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
        }
        
        .benefit-item .benefit-icon {
            color: var(--success);
    font-size: 3rem; /* Make icon larger */
    margin: 0 auto 1rem auto; /* Center icon and add bottom margin */
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--success-light);
        }
        
        .benefit-item:hover .benefit-icon {
            transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
    .benefit-item .benefit-content {
    text-align: center; /* Ensure content is centered */
}
        
        .benefit-item .benefit-content h4 {
            color: var(--success);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
        }
        .benefit-item .benefit-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--text);
}
        .tech-features {
            background: linear-gradient(135deg, var(--primary-light) 0%, #f0f4ff 100%);
            border-radius: 12px;
            padding: 2rem;
            margin: 2.5rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            border-top: 5px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        
        .tech-features:before {
            content: "";
            position: absolute;
            top: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            background-color: rgba(72, 45, 112, 0.1);
            border-radius: 50%;
        }
        
        .tech-features:after {
            content: "";
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 150px;
            height: 150px;
            background-color: rgba(72, 45, 112, 0.07);
            border-radius: 50%;
        }
        
        .tech-features h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            position: relative;
            display: inline-block;
        }
        
        .tech-features h3:after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
        }
        
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            background-color: white;
            border-radius: 10px;
            padding: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary);
        }
        
        .feature-item:hover {
            transform: translateY(-5px) translateX(5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        
        .feature-item .feature-icon {
            color: var(--primary);
            margin-right: 1rem;
            font-size: 1.25rem;
            background: var(--primary-light);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            transform: rotate(15deg);
            background: var(--primary);
            color: white;
        }
        
        .recommendations {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .recommendations h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
                    gap:1rem;
        }
        
        .recommendations h2 i {
            margin-right: 0.5rem;
            color: var(--success);
                
        }
        
        .recommendation-list, .rec-list {
            list-style-type: none;
            padding-left: 0;
            margin: 0;
        }
        
        .recommendation-item, .rec-item {
            margin-bottom: 1rem;
            background-color: var(--success-light);
            border-radius: 8px;
            position: relative;
            transition: transform 0.3s ease;
            overflow: hidden;
        }
        
        .recommendation-item:hover, .rec-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        
        .recommendation-content, .rec-content {
            padding: 1.2rem 1.2rem 1.2rem 3rem;
            position: relative;
        }
        
        .recommendation-check, .rec-check {
            position: absolute;
            left: 1rem;
            top: 1.2rem;
            color: var(--success);
            font-size: 1.2rem;
        }
        
        .recommendation-title, .rec-title {
            margin-top: 0;
            margin-bottom: 0.5rem;
            color: var(--text);
            font-weight: 600;
        }
        
        .recommendation-text, .rec-text {
            margin: 0;
            color: var(--text);
        }
        
        .testimonials {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .testimonials h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
                    gap:1rem;
        }
        
        .testimonials h2 i {
            margin-right: 0.5rem;
            color: var(--primary); /* Changed from secondary (Dark Blue) to primary (Brand Purple) */
        }
        
        .testimonial-slider {
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-slide {
            padding: 1.5rem;
            border-radius: 8px;
            background-color: var(--bg-light);
            margin: 1rem 0.5rem;
            text-align: center;
        }
        
        .testimonial-slide img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid var(--primary);
        }
        
        .testimonial-quote {
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .testimonial-author {
            font-weight: 600;
        }
        
        .testimonial-company {
            font-size: 0.875rem;
            color: var(--text-light);
        }
        
        .testimonial-stats {
            margin-top: 0.5rem;
            color: var(--success);
            font-weight: 600;
        }
        
        .cta-section {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 12px;
            color: white;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary); /* Brand Purple */
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--primary-dark); /* Darker Purple */
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn i {
            margin-right: 0.5rem;
        }
        
        .feature-circles {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
        }
        
        .circle-1 {
            top: -50px;
            left: -50px;
        }
        
        .circle-2 {
            bottom: -100px;
            right: -50px;
            width: 300px;
            height: 300px;
        }
        
        /* Animation classes */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mobile-specific slider for cards */
        .card-slider {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
            scroll-snap-type: x mandatory;
            padding-bottom: 15px;
        }
        
        /* Hide scrollbar for Chrome, Safari and Opera */
        .card-slider::-webkit-scrollbar {
            display: none;
        }
        
        /* Slider indicators dots */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
            margin-bottom: 20px;
        }
        
        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--primary-light);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--primary);
            transform: scale(1.3);
        }
        /* For tablets - 2 columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

        /* Responsive adjustments */
        @media (max-width: 768px) {
            /* General responsive adjustments */
            .score-card {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 30px;
							padding-top:30px;
                margin-bottom: 1rem;
                padding-left: 10px;
                margin-left: -10px;
                width: calc(100% + 20px);
            }
            
            .score-item {
                flex: 0 0 calc(85% - 30px);
                min-width: 250px;
                scroll-snap-align: center;
                margin-right: 15px;
            }
            
            .score-item:last-child {
                margin-right: 30px;
            }
            
            .comparison-container {
                flex-direction: column;
                gap: 1.5rem;
                width: 100%;
            }
            
            .comparison-item {
                width: 100%;
            }
            
            .progress-container {
                width: 100%; /* Ensure progress bars use full width */
            }
            
            .progress-value {
                width: 100%; /* Match progress bar width */
            }
            
            /* Card layout transformations */
            .how-it-works {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 15px;
                padding-left: 20px;
                margin-left: -10px;
                width: calc(100% + 20px);
                gap: 0;
                margin-top: 2.5rem;
            }
            
            .step-card {
                flex: 0 0 calc(85% - 30px);
                min-width: 250px;
                scroll-snap-align: center;
                margin-right: 15px;
                margin-top: 10px;
            }
            
            .step-card:last-child {
                margin-right: 30px; /* Keep some margin to ensure last card is scrollable */
            }
            
            /* Feature list slider */
            .feature-list {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 15px;
                margin-bottom: 0;
                padding-left: 10px;
                margin-left: -10px;
                width: calc(100% + 20px);
                gap: 0;
            }
            
            .feature-item {
                flex: 0 0 calc(85% - 30px);
                min-width: 250px;
                scroll-snap-align: center;
                margin-right: 15px;
            }
            
            .feature-item:last-child {
                margin-right: 30px; /* Keep some margin to ensure last card is scrollable */
            }
            
            /* Benefits grid becomes slider */
            .benefits-grid {
                display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
        gap: 0;
        padding-left: 10px;
        margin-left: -10px;
        width: calc(100% + 20px);
            }
            
            .benefit-item {
                flex: 0 0 calc(85% - 30px);
        min-width: 250px;
        scroll-snap-align: center;
        margin-right: 15px;
            }
            
            .benefit-item:last-child {
                margin-right: 30px;
            }
            
            /* Recommendation list becomes slider */
            .recommendation-list, .rec-list {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 15px;
                padding-left: 10px;
                margin-left: -10px;
                width: calc(100% + 20px);
                gap: 0;
            }
            
            .recommendation-item, .rec-item {
                flex: 0 0 calc(85% - 30px);
                min-width: 250px;
                scroll-snap-align: center;
                margin-right: 15px;
            }
            
            .recommendation-item:last-child, .rec-item:last-child {
                margin-right: 30px;
            }
            
            /* Additional styling adjustments */
            .revenue-calculator {
                flex-direction: column;
            }
            
            .calc-input, .calc-result {
                width: 100%;
                min-width: 100%;
            }
            
            .front-page-hero h1 {
                font-size: 1.8rem;
                padding: 0 0.5rem;
            }
            
            .front-page-hero p {
                font-size: 1rem;
                padding: 0 0.5rem;
            }
            
            .company-name {
                font-size: 1.5rem;
            }
            
            .chart-container {
                height: 300px;
            }
            
            .chart-insights {
                padding: 0.75rem;
            }
            
            .calc-result {
                padding: 1.5rem;
            }
            
            .loss-amount {
                font-size: 2.5rem;
            }
            
            .cta-section h2 {
                font-size: 1.5rem;
            }
            
            /* Improved visual indicator for sliders */
            .score-card::after, 
            .how-it-works::after, 
            .feature-list::after, 
            .benefits-grid::after,
            .recommendation-list::after, .rec-list::after {
                content: "";
                flex: 0 0 20px;
                min-width: 20px;
            }
            
            /* Adjust the number cards */
            .step-number {
                left: 15px;
                z-index: 5;
            }

            /* Make scroll indicators visible on mobile only */
            .scroll-indicator {
                display: flex;
                justify-content: center;
                gap: 5px;
                margin: 10px 0 20px;
            }
            
            .scroll-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background-color: var(--primary-light);
                transition: background-color 0.3s ease;
            }
            
            .scroll-dot.active {
                background-color: var(--primary);
            }

            /* Adjust recommendation list styling */
            .recommendation-check, .rec-check {
                position: absolute;
                left: 10px;
                top: 15px;
                z-index: 5;
            }
            
            /* Responsive padding and margin adjustments */
            .recommendations, 
            .educational-section, 
            .revenue-impact, 
            .chart-section, 
            .industry-comparison, 
            .report-header {
                padding: 1.5rem;
            }

            /* Make company details stack on mobile */
            .company-details {
                flex-direction: column;
                gap: 0.75rem;
            }
        }
        
        @media (min-width: 769px) {
            /* Hide scroll indicators on desktop */
            .scroll-indicator {
                display: none;
            }
            
            /* Desktop styles for recommendations */
            .recommendation-list, .rec-list {
                display: block;
            }
            
            .recommendation-item {
                margin-bottom: 1rem;
            }
        }
    
    /* Featured Award Badge */
.featured-award {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.award-icon {
    margin-right: 0.5rem;
}

/* Record Link */
.record-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.record-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Call Statistics */
.call-statistics {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: block;
    align-items: center;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

/* Comparison Sections */
.comparison-section {
    margin-bottom: 2rem;
}

.comparison-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

/* CRI Comparison */
.comparison-metrics {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.metric-comparison h4 {
    margin-bottom: 1rem;
    color: var(--text);
}

.cri-values {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.cri-item {
    text-align: center;
}

.cri-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cri-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

/* Industry average indicators */
.industry-missed-rate,
.industry-response-rate,
.industry-cri {
    font-weight: 600;
}
    
/* Call Analytics Section */
.call-analytics-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    align-items: center;
}

.call-stats-column {
    padding-right: 2rem;
    border-right: 1px solid rgba(0,0,0,0.1);
}

.stats-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 600;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-row:hover {
    background-color: rgba(72, 45, 112, 0.05);
    padding-left: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding-right: 0.5rem;
}

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

.stat-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
}

.stat-icon {
    font-size: 1.25rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-row.answered .stat-number {
    color: var(--success);
}

.stat-row.missed .stat-number {
    color: var(--danger);
}

.call-chart-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Recording Player */
.recording-player {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--primary-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.recording-player h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recording-player audio {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.record-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.record-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .call-analytics-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .stat-row {
			justify-content: flex-start;
			gap:1rem;
}
    .call-stats-column {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .call-chart-column {
        padding-top: 1rem;
    }
}
    
    /* Recording Frame for MissNoCalls */
.recording-frame {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--primary-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}


.recording-frame h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recording-frame iframe {
    border-radius: 4px;
    background: white;
    margin-bottom: 1rem;
}

.open-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.open-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}


/* Make the progress bar labels stand out */
.progress-label {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 13px;
}
    
/* ======================================
   LANDING PAGE STYLES
   ====================================== */

/* Hero Section for Landing Page */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: heroBackground 20s linear infinite;
    z-index: 1;
}

@keyframes heroBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-cta {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: 2px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 45, 112, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(72, 45, 112, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(72, 45, 112, 0.25);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
    transform: translateY(30px);
}

.hero-stats .stat-item {
    text-align: center;
    color: var(--text);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(72, 45, 112, 0.1);
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary);
    line-height: 1;
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.3;
}

/* Section Layouts */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text);
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

/* Remove ALL ugly separators and borders between sections */
.front-page-hero,
.featured-companies-section,
.industry-breakdown-section,
.geographic-section,
.how-it-works-section,
.business-value-section {
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    border: none !important;
}

/* Remove any potential theme-generated separators */
.front-page-hero::after,
.featured-companies-section::after,
.industry-breakdown-section::after,
.geographic-section::after,
.how-it-works-section::after,
.business-value-section::after {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Remove separators from containers and content areas */
.container,
.hero-container,
#primary,
#main,
.site-main {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Override any GeneratePress theme separators */
.site-content,
.content-area,
.main-navigation,
.entry-content {
    border: none !important;
}

/* Remove any hr elements or separator divs */
hr,
.separator,
.divider,
.section-divider {
    display: none !important;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    position: relative;
    font-weight: 400;
}

/* Featured Companies Section */
.featured-companies-section {
    padding: 5rem 0;
    background-color: white;
}

.featured-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.company-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}

.company-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.company-card:hover::before {
    transform: scaleX(1);
}

.company-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.company-logo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.company-type {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.company-industry {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.company-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: space-between;
}

.metric {
    text-align: center;
    flex: 1;
    min-width: 120px;
    background: white;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
}

.metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.metric-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    position: relative;
    z-index: 2;
}

/* Color coding based on performance - Response Rate */
.metric.response-rate .metric-value {
    color: var(--success);
}

.metric.response-rate {
    background-color: var(--success-light);
}

.metric.response-rate::before {
    content: "📞";
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 3rem;
    opacity: 0.1;
    z-index: 1;
}

/* Color coding for Missed Calls Rank - lower is better */
.metric.missed-calls-rank .metric-value {
    color: var(--primary);
}

.metric.missed-calls-rank {
    background-color: var(--primary-light);
}

.metric.missed-calls-rank::before {
    content: "📊";
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 3rem;
    opacity: 0.1;
    z-index: 1;
}

.company-awards {
    margin-bottom: 1.5rem;
}

.award-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--text);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.award-badge::before {
    content: "🏆";
    margin-right: 0.4rem;
    font-size: 0.9em;
}

.award-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
}

.company-actions {
    text-align: center;
}

.btn-outline {
    background: linear-gradient(135deg, transparent, rgba(72, 45, 112, 0.05));
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(72, 45, 112, 0.3);
}

.btn-outline:hover::before {
    left: 100%;
}

.featured-actions {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.featured-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: 2px solid var(--primary);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(72, 45, 112, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.featured-actions .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.8s ease;
}

.featured-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(72, 45, 112, 0.35);
    border-color: var(--primary-dark);
}

.featured-actions .btn-primary:hover::before {
    left: 100%;
}

/* Industry Breakdown Section */
.industry-breakdown-section {
    padding: 5rem 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    border: 1px solid rgba(72, 45, 112, 0.1);
    overflow: hidden;
}

.industry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--success), var(--primary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(72, 45, 112, 0.12);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-header {
    margin-bottom: 1.5rem;
}

.industry-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.industry-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.industry-stats {
    margin-bottom: 2rem;
}

.industry-metric .metric-value {
    font-size: 2.5rem;
    color: var(--success);
}

.industry-action .btn-outline {
    width: 100%;
    text-align: center;
}

/* Geographic Section */
.geographic-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.location-count {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: block;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(72, 45, 112, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(72, 45, 112, 0.1);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(72, 45, 112, 0.15);
}

.step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 20px 20px 0 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(72, 45, 112, 0.3);
    border: 4px solid white;
}

.step-number::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.2rem;
    position: relative;
}

.step-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.step-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Business Value Section */
.business-value-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.business-value-section::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(72, 45, 112, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.value-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.value-header {
    text-align: center;
    margin-bottom: 2rem;
}

.value-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    margin-bottom: 0;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary);
    position: relative;
    text-align: center;
}

.benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(72, 45, 112, 0.15);
}

.benefit::before {
    content: "";
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(72, 45, 112, 0.3);
    border: 3px solid white;
}

.benefit:nth-child(1)::after {
    content: "📊";
    position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    z-index: 2;
}

.benefit:nth-child(2)::after {
    content: "🎯";
    position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    z-index: 2;
}

.benefit:nth-child(3)::after {
    content: "🏆";
    position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    z-index: 2;
}

.benefit h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.benefit p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.value-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(72, 45, 112, 0.15);
    text-align: center;
    position: relative;
    border: 2px solid rgba(72, 45, 112, 0.1);
    overflow: hidden;
    max-width: 600px;
    width: 100%;
}

.cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(72, 45, 112, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.cta-card p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white !important;
    border: none;
    box-shadow: 0 8px 20px rgba(72, 45, 112, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-decoration: none;
}

.btn-large::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(72, 45, 112, 0.4);
}

.btn-large:hover::before {
    left: 100%;
}

.cta-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
    padding: 1rem;
    background: rgba(72, 45, 112, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

/* Responsive Design for Landing Page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .hero-stats .stat-item {
        padding: 1.5rem 1rem;
        min-width: 150px;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Mobile section padding */
    .featured-companies-section,
    .industry-breakdown-section,
    .how-it-works-section,
    .business-value-section {
        padding: 3rem 0;
    }
    
    .featured-actions {
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .featured-actions .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 250px;
    }
    
    .featured-companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .company-metrics {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .metric {
        min-width: 100px;
        padding: 1rem 0.75rem;
    }
    
    .metric-value {
        font-size: 1.8rem;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
    
    .industry-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .value-content {
        gap: 2rem;
    }
    
    .value-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .benefit {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .benefit::before {
        top: -35px;
        width: 40px;
        height: 40px;
    }
    
    .benefit:nth-child(1)::after,
    .benefit:nth-child(2)::after,
    .benefit:nth-child(3)::after {
        top: -32px;
        font-size: 1.2rem;
    }
    
    .benefit h3 {
        font-size: 1.1rem;
        margin-top: 0.5rem;
    }
    
    .benefit p {
        font-size: 0.95rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-card h3 {
        font-size: 1.5rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
}

    
/* ======================================
   SCROLL ANIMATIONS & ENHANCED INTERACTIONS
   ====================================== */

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grid items */
.featured-companies-grid .company-card:nth-child(1) { animation-delay: 0.1s; }
.featured-companies-grid .company-card:nth-child(2) { animation-delay: 0.2s; }
.featured-companies-grid .company-card:nth-child(3) { animation-delay: 0.3s; }
.featured-companies-grid .company-card:nth-child(4) { animation-delay: 0.4s; }
.featured-companies-grid .company-card:nth-child(5) { animation-delay: 0.5s; }
.featured-companies-grid .company-card:nth-child(6) { animation-delay: 0.6s; }

.industry-grid .industry-card:nth-child(1) { animation-delay: 0.1s; }
.industry-grid .industry-card:nth-child(2) { animation-delay: 0.2s; }
.industry-grid .industry-card:nth-child(3) { animation-delay: 0.3s; }
.industry-grid .industry-card:nth-child(4) { animation-delay: 0.4s; }
.industry-grid .industry-card:nth-child(5) { animation-delay: 0.5s; }
.industry-grid .industry-card:nth-child(6) { animation-delay: 0.6s; }
.industry-grid .industry-card:nth-child(7) { animation-delay: 0.7s; }
.industry-grid .industry-card:nth-child(8) { animation-delay: 0.8s; }

/* Enhanced focus states for accessibility */
.btn:focus,
.btn-outline:focus {
    outline: 3px solid rgba(72, 45, 112, 0.3);
    outline-offset: 2px;
}

/* Improved mobile touch targets */
@media (max-width: 768px) {
    .btn,
    .btn-outline {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Button spacing and alignment */
.btn,
.btn-outline,
.btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Performance optimization - reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-container::before {
        animation: none;
    }
}
/* Tooltip additions for existing score cards */
.score-header-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.score-item {
    position: relative; /* Make sure this is set */
}

.tooltip-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    font-size: 12px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.tooltip-icon:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.tooltip-content {
    position: absolute;
    top: 35px;
    right: -10px;
    background: #333;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #333;
}

.score-item:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}


.tooltip-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.tooltip-content p {
    margin: 0 0 8px 0;
}

.tooltip-content .formula {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
    margin-top: 8px;
}

/* Mobile responsive tooltips */
@media (max-width: 768px) {
    .tooltip-content {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 320px;
    }
    
    .tooltip-content::before {
        display: none;
    }
    
    .score-item:hover .tooltip-content {
        opacity: 0;
        visibility: hidden;
    }
    
    .tooltip-icon.active + .tooltip-content {
        opacity: 1;
        visibility: visible;
    }
}

