/* Reset and Variables */
:root {
    --primary-color: #1F6B93;
    --secondary-color: #1CAFB6;
    --white: #FFFFFF;
    --light-bg: #F6F9F9;
    --text-color: #333333;
    --text-light: #666666;
    --border-radius: 8px;
    --container-width: 1100px;
    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: -1rem auto 3rem;
    line-height: 1.6; /* Increased line spacing */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #159a9f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(28, 175, 182, 0.3);
}

.btn-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Top Bar */
.top-bar {
    background-color: #d32f2f; /* Red color for urgency */
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-color);
}

nav ul li a:hover {
    color: var(--secondary-color);
}

.mobile-menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-icon span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Hero Section */
.tag {
    display: inline-block;
    background-color: rgba(31, 107, 147, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px; /* Increased margin */
    letter-spacing: 0.5px;
}

.hero-headline {
    font-family: 'Boldonse', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align the flex items */
    gap: 40px; /* Increased line spacing */
    text-transform: uppercase;
    font-weight: 900;
}

.hero-headline span {
    display: block;
    width: 100%; /* Ensure full width */
    white-space: nowrap; /* Prevent wrapping */
}

.mobile-break {
    display: none;
}

.hero-headline .highlight {
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 4rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.05);
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3s steps(30, end) 0.5s forwards;
    position: relative;
}



.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero-chart-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 80vh;
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0 40px;
}

.hero-content.centered {
    max-width: 100%;
    margin: 0 auto;
    z-index: 2;
    text-align: center;
}

.scroll-down {
    position: absolute;
    bottom: 30px; /* Moved slightly up but still at bottom */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.scroll-down:hover {
    opacity: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
    margin-bottom: 5px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--text-light);
    border-right: 2px solid var(--text-light);
    transform: rotate(45deg);
    margin: -5px auto 0;
    animation: arrow 1.5s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

@keyframes typing {
    from {
        width: 0;
        opacity: 1;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes blink {
    0%, 49% {
        border-right-color: var(--secondary-color);
    }
    50%, 100% {
        border-right-color: transparent;
    }
}

@keyframes slideArrowLeft {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
        transform: translateX(-15px);
    }
    100% {
        opacity: 0;
        transform: translateX(-15px);
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description-secondary {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-footer {
    margin-top: 4px;
    margin-bottom: 120px;
}

.hero-trust-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: #666666;
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
}

.hero-trust-tag i {
    font-size: 0.75rem;
    color: #999999;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.how-it-works .content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.how-it-works .text-content {
    flex: 1;
}

.how-it-works .text-content h2 {
    text-align: left;
}

.how-it-works .image-content {
    flex: 1;
}

/* Steps Section */
.steps {
    padding: 80px 0;
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Evidence Section */
.evidence {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.evidence h2 {
    color: var(--white);
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.evidence-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
}

.evidence-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.evidence-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-card .author strong {
    display: block;
    color: var(--primary-color);
}

.testimonial-card .author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.section-tag {
    display: inline-block;
    background-color: rgba(31, 107, 147, 0.1); /* Added background */
    color: var(--secondary-color); /* Kept secondary color as requested/implied context */
    padding: 8px 16px; /* Added padding */
    border-radius: 50px; /* Pill shape */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem; /* Adjusted font size slightly */
    margin-bottom: 25px; /* Increased margin */
}

.problem-section h2 {
    font-family: 'Boldonse', sans-serif;
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 40px; /* Increased margin */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.4; /* Increased line spacing */
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.problem-card {
    background-color: transparent;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.problem-card::before {
    display: none; /* Removed the side bar effect for minimalism */
}

.problem-card .icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-flex;
    padding: 0;
    background-color: transparent;
    color: var(--secondary-color);
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
}

.problem-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.problem-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.how-it-works-section .section-header {
    margin-bottom: 60px;
    text-align: center; /* Center content */
}

.how-it-works-section .section-tag {
    display: inline-block;
    background-color: rgba(31, 107, 147, 0.1);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.how-it-works-section h2 {
    font-family: 'Boldonse', sans-serif;
    font-size: 3.5rem; /* Increased to match hero */
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1; /* Adjusted line height */
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center; /* Center text */
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.step-card::after {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(31, 107, 147, 0.05); /* Very light primary color */
    font-family: 'Boldonse', sans-serif;
    z-index: -1;
    line-height: 1;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    display: block;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.step-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 900;
}

.step-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Report Details Section */
.report-details-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow-x: clip;
}

.report-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.report-info .section-tag {
    display: inline-block;
    background-color: rgba(31, 107, 147, 0.1);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.report-info h2 {
    font-family: 'Boldonse', sans-serif;
    font-size: 30px; /* Set font size to 30px */
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.4;
    text-align: left; /* Ensure left alignment */
}

.report-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.report-list li {
    font-size: 0.95rem;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    gap: 14px;
    font-weight: 500;
}

.report-list li i {
    color: var(--secondary-color);
    margin-top: 3px;
    font-size: 1.05rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Zeeng Score Card (Dark Theme) */
.report-card-wrapper {
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
}

.report-macbook-img {
    display: block;
    width: 160%;
    max-width: none;
    height: auto;
    transform: translateX(15%);
    flex-shrink: 0;
}

.zeeng-score-card {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.zeeng-score-card .card-header {
    text-align: center;
    margin-bottom: 30px;
}

.zeeng-score-card .card-subtitle {
    color: #aaa;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.score-comparison {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}

.score-comparison .candidate {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-comparison .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.8rem;
}

.score-comparison .candidate.a .avatar {
    background: linear-gradient(135deg, rgba(224, 176, 107, 0.2), rgba(224, 176, 107, 0.1));
    color: #e0b06b;
    border: 2px solid #e0b06b;
}

.score-comparison .candidate.b .avatar {
    background: linear-gradient(135deg, rgba(79, 189, 255, 0.2), rgba(79, 189, 255, 0.1));
    color: #4fbdff;
    border: 2px solid #4fbdff;
}


.score-comparison .name {
    font-size: 0.9rem;
    color: #b0b5c1;
    margin-bottom: 8px;
    font-weight: 500;
}

.score-comparison .score {
    font-family: 'Boldonse', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.score-comparison .candidate.a .score {
    color: #e0b06b;
}

.score-comparison .candidate.b .score {
    color: #666;
}

.score-comparison .vs {
    font-family: 'Boldonse', sans-serif;
    font-size: 1.5rem;
    color: #444;
    font-weight: 900;
}

.metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric .metric-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.metric .metric-header span:first-child {
    color: #aaa;
}

.metric .metric-header .highlight {
    color: #e0b06b;
    font-weight: 700;
}

.metric .progress-bar {
    height: 6px;
    background-color: #333;
    border-radius: 3px;
    overflow: hidden;
}

.metric .progress {
    height: 100%;
    background-color: #e0b06b;
    border-radius: 3px;
}

.card-footer {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.card-footer small {
    color: #555;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .report-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .report-macbook-img {
        width: 100%;
        max-width: 520px;
        transform: none;
        margin: 0 auto;
    }

    .report-card-wrapper {
        justify-content: center;
        overflow: hidden;
    }
    
    .report-info {
        text-align: center;
    }
    
    .report-list {
        text-align: left;
        display: inline-block;
    }
}

/* Win Dispute Section */
.win-dispute-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.win-dispute-section .section-header {
    margin-bottom: 60px;
    text-align: center;
}

.win-dispute-section .section-tag {
    display: inline-block;
    background-color: rgba(31, 107, 147, 0.1);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.win-dispute-section h2 {
    font-family: 'Boldonse', sans-serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.3; /* Increased line spacing */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 18px;
    text-align: left;
    border: 1px solid rgba(31, 107, 147, 0.10);
    border-top: 3px solid var(--secondary-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 4px 18px rgba(31, 107, 147, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.highlight-border {
    display: inline-block;
    position: relative;
    padding: 4px 12px;
    white-space: nowrap;
    background:
        linear-gradient(currentColor, currentColor) 0 0 / 6px 6px no-repeat,
        linear-gradient(currentColor, currentColor) 100% 0 / 6px 6px no-repeat,
        linear-gradient(currentColor, currentColor) 0 100% / 6px 6px no-repeat,
        linear-gradient(currentColor, currentColor) 100% 100% / 6px 6px no-repeat,
        linear-gradient(currentColor, currentColor) 6px 0 / calc(100% - 12px) 1px no-repeat,
        linear-gradient(currentColor, currentColor) 6px 100% / calc(100% - 12px) 1px no-repeat,
        linear-gradient(currentColor, currentColor) 0 6px / 1px calc(100% - 12px) no-repeat,
        linear-gradient(currentColor, currentColor) 100% 6px / 1px calc(100% - 12px) no-repeat;
}

.benefit-bg-word {
    position: absolute;
    bottom: -10px;
    right: -8px;
    font-size: 5.5rem;
    font-weight: 900;
    color: #ececec;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    font-family: var(--font-heading);
    letter-spacing: -2px;
    z-index: 0;
}

.benefit-icon,
.benefit-card h3,
.benefit-card p {
    position: relative;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(31, 107, 147, 0.12);
    border-color: var(--secondary-color);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(31,107,147,0.10), rgba(28,175,182,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.97rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Media Mentions Section */
.media-mentions-section {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.media-mentions-section h2 {
    font-family: 'Boldonse', sans-serif;
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.3;
}

.media-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.media-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    width: 180px; /* Fixed width for consistency */
    height: 100px; /* Fixed height for alignment */
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(31, 107, 147, 0.2);
}

.media-logo-img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.media-card:hover .media-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links span {
    cursor: pointer;
    color: #aaa;
}

.social-links span:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    :root {
        --container-width: 960px;
    }

    .hero-content.centered {
        max-width: 800px;
        margin: 0 auto;
        z-index: 2;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-headline .highlight {
        font-size: 2.6rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .how-it-works .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .how-it-works .text-content h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 100%;
    }

    .mobile-menu-icon {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
    }

    nav ul.show {
        display: flex;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ========================================
   Design Refresh 2026 (layout + responsive)
   ======================================== */

:root {
    --section-space: clamp(40px, 5vw, 70px);
    --radius-lg: 18px;
    --radius-md: 14px;
    --shadow-soft: 0 10px 35px rgba(16, 24, 40, 0.08);
    --font-heading: 'Poppins', sans-serif;
}

body {
    font-size: 16px;
}

section {
    padding: var(--section-space) 0;
}

.container {
    width: min(1100px, 100% - 2rem);
    padding: 0;
}

h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    line-height: 1.28;
    letter-spacing: -0.01em;
}

h1,
h2,
h3,
.hero-headline,
.problem-section h2,
.how-it-works-section h2,
.report-info h2,
.win-dispute-section h2,
.media-mentions-section h2,
.score-comparison .score,
.score-comparison .vs {
    font-family: var(--font-heading);
}

.subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    margin: 0 auto 2.4rem;
    color: #5f6b72;
}

.tag,
.section-tag {
    padding: 9px 16px;
    letter-spacing: 0.06em;
    margin-bottom: 1.3rem;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 14px 24px;
    min-height: 48px;
}

/* Top bar */
.top-bar {
    padding: 11px 0;
    font-size: clamp(0.82rem, 1.8vw, 0.95rem);
}

/* Hero */
.hero {
    padding: clamp(70px, 10vw, 120px) 0 clamp(52px, 9vw, 88px);
    background: radial-gradient(circle at 50% -20%, rgba(28, 175, 182, 0.16), transparent 55%),
                linear-gradient(180deg, #f8fbfc 0%, #ffffff 72%);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1200'%3E%3Ctext x='50%25' y='58%25' text-anchor='middle' dominant-baseline='middle' font-family='Arial,sans-serif' font-size='980' font-weight='700' fill='none' stroke='rgba(31,107,147,0.28)' stroke-width='16' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='2 22'%3E%3F%3C/text%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: min(96vh, 980px) auto;
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    min-height: auto;
    z-index: 1;
    max-width: 100%;
}

.hero-content.centered {
    max-width: 100%;
}

.hero-headline {
    font-size: clamp(1.95rem, 5.3vw, 4rem);
    line-height: 1.18;
    margin-bottom: 0.9rem;
    gap: clamp(8px, 1.8vw, 14px);
}

.hero-headline span {
    width: auto;
    white-space: normal;
}

.hero-headline .highlight {
    font-size: clamp(2.1rem, 6vw, 4.4rem);
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.55;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description-secondary {
    font-size: clamp(0.98rem, 1.8vw, 1.1rem);
    line-height: 1.65;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    gap: 14px;
    margin-bottom: 20px;
}

.hero-footer {
    margin-bottom: 96px;
}

.scroll-down {
    bottom: 8px;
}

/* Shared cards */
.problem-card,
.step-card,
.benefit-card,
.media-card,
.zeeng-score-card {
    border-radius: var(--radius-lg);
}

.problem-card,
.step-card,
.benefit-card,
.media-card {
    box-shadow: var(--shadow-soft);
    border-color: rgba(31, 107, 147, 0.1);
    background-clip: padding-box;
}

.problem-card:hover,
.step-card:hover,
.benefit-card:hover,
.media-card:hover {
    transform: translateY(-4px);
}

/* Problem */
.problem-section,
.how-it-works-section,
.report-details-section,
.win-dispute-section,
.media-mentions-section {
    padding: var(--section-space) 0;
}

.win-dispute-section {
    background: radial-gradient(circle at 10% 0%, rgba(31, 107, 147, 0.08), transparent 45%),
                radial-gradient(circle at 100% 100%, rgba(28, 175, 182, 0.1), transparent 42%),
                var(--light-bg);
}

.problem-section h2,
.how-it-works-section h2,
.win-dispute-section h2,
.media-mentions-section h2 {
    font-size: clamp(1.7rem, 4.2vw, 3.1rem);
    line-height: 1.26;
}

.problem-section h2,
.win-dispute-section h2,
.media-mentions-section h2 {
    margin-bottom: 1.2rem;
}

.problem-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 2.2rem;
}

.problem-card {
    padding: 28px 22px;
}

/* Steps */
.how-it-works-section .section-header,
.win-dispute-section .section-header {
    margin-bottom: 2.4rem;
}

.win-dispute-section .section-header {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.win-dispute-section .section-tag {
    background-color: rgba(31, 107, 147, 0.12);
}

.win-dispute-section h2 {
    line-height: 1.18;
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.step-card {
    padding: 32px 24px;
}

.step-card::after {
    font-size: clamp(5rem, 9vw, 7.2rem);
    top: -14px;
    right: -8px;
}

/* Report */
.report-details-grid {
    gap: clamp(24px, 4.5vw, 56px);
    align-items: stretch;
}

.report-info h2 {
    font-size: clamp(1.6rem, 3.1vw, 2.15rem);
    line-height: 1.3;
    margin-bottom: 1.3rem;
}

.report-list li {
    font-size: clamp(0.97rem, 1.55vw, 1.06rem);
    margin-bottom: 12px;
}

.zeeng-score-card {
    max-width: 500px;
    padding: clamp(24px, 3.5vw, 34px);
}

/* Benefits */
.benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1020px;
    margin: 0 auto;
}

.benefit-card {
    padding: 32px 28px;
    border-radius: 18px;
    border: 1px solid rgba(31, 107, 147, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
    box-shadow: 0 14px 28px rgba(16, 24, 40, 0.08);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
    opacity: 0.9;
}

.benefit-card h3 {
    font-size: clamp(1.15rem, 2.1vw, 1.35rem);
    margin-bottom: 10px;
    line-height: 1.35;
}

.benefit-card p {
    font-size: clamp(0.97rem, 1.55vw, 1.03rem);
    line-height: 1.68;
    margin-bottom: 0;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 34px rgba(16, 24, 40, 0.12);
}

/* Media */
.media-mentions-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
    position: relative;
}

.media-mentions-section h2 {
    margin-bottom: 2.2rem;
    text-align: center;
    line-height: 1.28;
    max-width: 760px;
    font-size: clamp(1.25rem, 4.6vw, 2.7rem);
    margin-left: auto;
    margin-right: auto;
}

.media-headline-line {
    display: block;
    white-space: nowrap;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.media-card {
    width: 100%;
    min-height: 118px;
    height: 118px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(31, 107, 147, 0.16);
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
    box-shadow: 0 10px 24px rgba(31, 107, 147, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.media-logo-wrap {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-logo-img {
    width: auto;
    max-width: 170px;
    max-height: 68px;
    min-width: 40px;
    min-height: 40px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.media-title {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.01em;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(31, 107, 147, 0.14);
    border-color: rgba(28, 175, 182, 0.5);
}

/* Footer */
footer {
    padding: 44px 0 20px;
}

.footer-content {
    gap: 14px;
    margin-bottom: 24px;
}

/* Responsive refinements */
@media (max-width: 1024px) {
    .problem-cards,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-card {
        height: 112px;
        min-height: 112px;
    }

    .report-details-grid {
        grid-template-columns: 1fr;
    }

    .report-info {
        text-align: center;
    }

    .report-info h2 {
        text-align: center;
    }

    .report-list {
        max-width: 780px;
        margin: 0 auto;
    }

    .report-card-wrapper {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(1100px, 100% - 1.5rem);
    }

    .problem-section,
    .how-it-works-section,
    .report-details-section,
    .win-dispute-section,
    .media-mentions-section,
    .benchmarking-section,
    .timing-section,
    .faq-section,
    .start-now-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero {
        padding: 0;
        min-height: 100svh;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero .container {
        min-height: 100svh;
        min-height: 100dvh;
        justify-content: center;
        padding-top: 0;
        padding-bottom: 24px;
    }

    .hero-content.centered {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }

    .hero-headline {
        align-items: center;
        gap: 0;
        font-size: 1.45rem;
        line-height: 1.3;
        max-width: 100%;
        margin: 0 auto 0.75rem;
        white-space: normal;
        word-break: normal;
    }

    .hero-headline span {
        white-space: normal;
        width: auto;
    }

    .hero-headline .highlight {
        white-space: normal;
        font-size: 1.55rem;
        animation: none;
        overflow: visible;
    }

    .hero-headline span:nth-child(2) {
        display: inline;
        margin: 0 5px;
    }

    .hero-headline span:nth-child(3) {
        display: inline;
    }

    .hero-description {
        font-size: 0.92rem;
        line-height: 1.45;
        margin-bottom: 0.65rem;
    }

    .hero-description br {
        display: none;
    }

    .hero-description-secondary {
        display: block;
        font-size: 0.85rem;
        line-height: 1.55;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 11px 20px;
        font-size: 0.9rem;
    }

    .tag {
        font-size: 0.62rem;
        padding: 5px 11px;
        margin-bottom: 14px;
    }

    .hero-footer {
        margin-bottom: 70px;
    }

    .hero-trust-tags {
        gap: 7px;
    }

    .hero-trust-tag {
        font-size: 0.75rem;
        padding: 5px 11px;
    }

    .scroll-down {
        display: flex;
        bottom: 16px;
    }

    .mouse {
        width: 24px;
        height: 40px;
    }

    .arrow span {
        width: 8px;
        height: 8px;
    }

    .problem-section,
    .how-it-works-section,
    .report-details-section,
    .win-dispute-section,
    .media-mentions-section,
    .benchmarking-section,
    .timing-section,
    .faq-section,
    .start-now-section {
        text-align: center;
    }

    h1, h2, h3 {
        text-align: center !important;
    }

    .problem-section h2,
    .how-it-works-section h2,
    .win-dispute-section h2,
    .media-mentions-section h2,
    .benchmarking-section h2,
    .faq-section h2,
    .start-now-section h2,
    .subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .win-dispute-section .section-header,
    .how-it-works-section .section-header {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .media-mentions-section,
    .media-mentions-section h2 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .start-now-content {
        text-align: center;
    }

    .hero-buttons,
    .benchmarking-actions {
        justify-content: center;
    }

    .btn {
        margin: 0 auto;
    }

    .problem-cards,
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        gap: 16px;
    }

    .benefit-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .media-card {
        height: 104px;
        min-height: 104px;
        justify-content: center;
    }

    .media-logo-img {
        max-width: 160px;
        max-height: 62px;
    }

    .media-title {
        font-size: 0.8rem;
    }

    .step-card,
    .problem-card,
    .benefit-card {
        text-align: center;
    }

    .section-tag {
        justify-content: center;
        margin: 0 auto 16px;
    }

    .step-card::after {
        right: 8px;
    }

    .score-comparison {
        gap: 14px;
    }

    .score-comparison .score {
        font-size: 2.2rem;
    }

    .start-now-btn {
        font-size: 0.75rem;
    }

    .footer-content,
    .footer-links,
    .social-links {
        align-items: flex-start;
        text-align: left;
    }

    .footer-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .top-bar .container {
        line-height: 1.35;
    }

    .tag,
    .section-tag {
        font-size: 0.74rem;
    }

    .hero-description br {
        display: none;
    }

    .problem-card,
    .step-card,
    .benefit-card,
    .zeeng-score-card {
        border-radius: var(--radius-md);
    }

    .zeeng-score-card .card-subtitle {
        letter-spacing: 1.3px;
    }

    .score-comparison .avatar {
        width: 52px;
        height: 52px;
    }

    .score-comparison .score {
        font-size: 1.9rem;
    }

    .metric .metric-header {
        font-size: 0.84rem;
    }

    .copyright {
        text-align: left;
        font-size: 0.82rem;
    }
}

.zeeng-score-card {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% -20%, rgba(224, 176, 107, 0.2), transparent 42%),
                radial-gradient(circle at 100% 100%, rgba(0, 123, 255, 0.18), transparent 38%),
                linear-gradient(160deg, #0f1116 0%, #121823 65%, #0f131c 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 45px rgba(8, 10, 14, 0.45);
}

.zeeng-score-card::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -20%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(224, 176, 107, 0.22), transparent 68%);
    pointer-events: none;
}

.zeeng-score-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 60%;
    height: 100%;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.16) 48%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 1.2s ease;
    pointer-events: none;
}

.zeeng-score-card.animated::after {
    left: 160%;
}

.zeeng-score-card .card-subtitle {
    color: #d5dae2;
    letter-spacing: 2.6px;
    font-weight: 700;
}

.score-comparison .avatar {
    background: #1b2230;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 20px rgba(0, 0, 0, 0.35);
}

.score-comparison .candidate.a .avatar {
    border-color: rgba(224, 176, 107, 0.85);
    color: #efc180;
}

.score-comparison .candidate.b .avatar {
    border-color: rgba(84, 166, 255, 0.85);
    color: #54a6ff;
}

.score-comparison .name {
    color: #c2c8d3;
    margin-bottom: 8px;
}

.score-comparison .score {
    font-size: clamp(2.3rem, 4.6vw, 3.2rem);
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

.score-comparison .candidate.a .score {
    color: #efc180;
}

.score-comparison .candidate.b .score {
    color: #7aa5cc;
}

.score-comparison .vs {
    color: #7b8597;
    letter-spacing: 0.04em;
}

.metrics {
    gap: 14px;
}

.metric {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric .metric-header span:first-child {
    color: #d0d6df;
    font-weight: 500;
}

.metric .metric-header .highlight {
    color: #efc180;
}

.metric .progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.metric .progress {
    width: 0;
    background: linear-gradient(90deg, #efc180 0%, #64b7ff 100%);
    border-radius: 999px;
    box-shadow: 0 0 14px rgba(100, 183, 255, 0.35);
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-footer {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.card-footer small {
    color: #9ba5b5;
}

@media (prefers-reduced-motion: no-preference) {
    .zeeng-score-card {
        animation: zeeng-card-in 0.8s ease both;
    }

    .score-comparison .candidate {
        animation: zeeng-float 2.8s ease-in-out infinite;
    }

    .score-comparison .candidate.b {
        animation-delay: 0.25s;
    }

    .score-comparison .vs {
        animation: zeeng-pulse 1.8s ease-in-out infinite;
    }
}

@keyframes zeeng-card-in {
    from {
        transform: translateY(10px);
        opacity: 0.4;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zeeng-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes zeeng-pulse {
    0%,
    100% {
        opacity: 0.65;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

@media (max-width: 768px) {
    .zeeng-score-card {
        padding: 24px 20px;
    }

    .score-comparison {
        margin-bottom: 24px;
    }

    .metric {
        padding: 9px 10px;
    }
}

/* Benchmarking Section */
.benchmarking-section {
    padding: var(--section-space) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.benchmarking-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}

.benchmarking-content h2 {
    margin-bottom: 14px;
    text-align: left;
    line-height: 1.2;
}

.benchmarking-content p {
    margin-bottom: 18px;
    max-width: 760px;
}

.benchmarking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benchmarking-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-color);
    line-height: 1.5;
}

.benchmarking-list li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.benchmarking-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 8px;
    align-self: stretch;
}

.benchmarking-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    border: 1px solid transparent;
    box-shadow: 0 12px 22px rgba(31, 107, 147, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.benchmarking-btn i {
    font-size: 1.05rem;
}

.benchmarking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(31, 107, 147, 0.3);
}

.benchmarking-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: rgba(31, 107, 147, 0.25);
    box-shadow: 0 8px 16px rgba(31, 107, 147, 0.08);
}

.benchmarking-btn.secondary:hover {
    background: rgba(31, 107, 147, 0.06);
}

@media (max-width: 992px) {
    .benchmarking-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benchmarking-content h2 {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .benchmarking-actions {
        justify-content: center;
        align-self: auto;
        padding: 0;
    }

    .benchmarking-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    .benchmarking-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        text-align: center;
        justify-content: center;
    }

    .benchmarking-btn {
        padding: 14px 16px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Timing Section */
.timing-section {
    padding: var(--section-space) 0;
    background: linear-gradient(180deg, #f7fbfc 0%, #ffffff 100%);
}

.timing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(22px, 4vw, 52px);
    align-items: stretch;
}

.timing-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timing-content .section-tag {
    width: fit-content;
    display: inline-flex;
}

.timing-content p {
    font-size: clamp(1.02rem, 1.8vw, 1.18rem);
    line-height: 1.7;
    color: #4f5c63;
    margin-bottom: 0;
    max-width: 660px;
}

.timing-quote-wrap {
    display: flex;
    align-items: center;
}

.timing-quote {
    margin: 0;
    width: 100%;
    padding: clamp(24px, 3.2vw, 34px);
    border-radius: 18px;
    background: linear-gradient(160deg, #0f1622 0%, #152338 100%);
    border: 1px solid rgba(100, 183, 255, 0.25);
    box-shadow: 0 18px 36px rgba(17, 29, 46, 0.26);
    color: #e6edf7;
    font-size: clamp(1.1rem, 2.2vw, 1.42rem);
    font-weight: 600;
    line-height: 1.55;
    position: relative;
}

.timing-quote::before {
    content: "“";
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 2rem;
    color: rgba(100, 183, 255, 0.55);
    line-height: 1;
}

@media (max-width: 992px) {
    .timing-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .timing-content,
    .timing-quote-wrap {
        align-items: flex-start;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-space) 0;
    background: #ffffff;
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.faq-section > .container {
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    margin-bottom: 0.4rem;
    font-size: clamp(1.8rem, 4.2vw, 3rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.faq-header .section-tag {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(28, 175, 182, 0.12));
    color: #1e3a8a;
    border: 1px solid rgba(79, 70, 229, 0.25);
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: transparent;
    border: 1px solid rgba(79, 70, 229, 0.18);
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.faq-item.scroll-reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.320, 1), transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.faq-item.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.faq-item.scroll-reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.faq-item.scroll-reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.faq-item.scroll-reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.faq-item.scroll-reveal:nth-child(5) {
    transition-delay: 0.32s;
}

.faq-item.scroll-reveal:nth-child(n+6) {
    transition-delay: 0.4s;
}

.faq-item::before {
    display: none;
}

.faq-item:hover {
    border-color: rgba(79, 70, 229, 0.18);
}

.faq-item[open] {
    border-color: rgba(79, 70, 229, 0.18);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 52px 22px 26px;
    color: #1a2847;
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    display: flex;
    align-items: center;
    user-select: none;
    transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item:hover summary {
    color: #4338ca;
}

.faq-item[open] summary {
    color: #4338ca;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #1a2847;
    background-color: transparent;
    background: transparent;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    font-weight: 300;
    box-shadow: none;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%);
    background: none;
    box-shadow: none;
}

.faq-content {
    padding: 0 26px 24px;
    animation: faq-reveal 0.35s cubic-bezier(0.23, 1, 0.320, 1);
    margin-top: 0;
}

.faq-item p {
    margin-bottom: 0;
    color: #4f5c68;
    line-height: 1.72;
    font-size: 1.02rem;
}

@keyframes faq-reveal {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: clamp(50px, 8vw, 80px) 0;
    }

    .faq-header {
        margin-bottom: 1.2rem;
    }

    .faq-header h2 {
        margin-bottom: 0.6rem;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-item {
        border-radius: 14px;
    }

    .faq-item summary {
        padding: 16px 20px 16px 48px;
        font-size: 0.9rem;
        text-align: left;
    }

    .faq-item summary::after {
        width: 28px;
        height: 28px;
        left: 16px;
        right: auto;
        font-size: 1.1rem;
    }

    .faq-content {
        padding: 0 20px 18px;
        margin-left: 0;
    }

    .faq-item p {
        font-size: 0.98rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-item.scroll-reveal,
    .faq-item.scroll-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Scroll Animation System for All Sections */
section {
    --scroll-parallax-y: 0px;
    position: relative;
}

/* Problem Section Animations */
.problem-section .section-tag,
.problem-section h2,
.problem-section .subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.320, 1), transform 0.7s cubic-bezier(0.23, 1, 0.320, 1);
}

.problem-section.in-view .section-tag {
    transition-delay: 0.05s;
    opacity: 1;
    transform: translateY(0);
}

.problem-section.in-view h2 {
    transition-delay: 0.12s;
    opacity: 1;
    transform: translateY(0);
}

.problem-section.in-view .subtitle {
    transition-delay: 0.18s;
    opacity: 1;
    transform: translateY(0);
}

.problem-section .problem-card {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.320, 1), transform 0.7s cubic-bezier(0.23, 1, 0.320, 1);
}

.problem-section.in-view .problem-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.problem-section.in-view .problem-card:nth-child(1) { transition-delay: 0.2s; }
.problem-section.in-view .problem-card:nth-child(2) { transition-delay: 0.28s; }
.problem-section.in-view .problem-card:nth-child(3) { transition-delay: 0.36s; }

/* How It Works Section Animations */
.how-it-works-section .section-header {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.320, 1), transform 0.7s cubic-bezier(0.23, 1, 0.320, 1);
}

.how-it-works-section.in-view .section-header {
    opacity: 1;
    transform: translateY(0);
    --scroll-parallax-y: 0px;
}

.how-it-works-section .step-card {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.320, 1), transform 0.7s cubic-bezier(0.23, 1, 0.320, 1);
}

.how-it-works-section.in-view .step-card {
    opacity: 1;
    transform: translateY(0);
}

.how-it-works-section.in-view .step-card:nth-child(1) { transition-delay: 0.15s; }
.how-it-works-section.in-view .step-card:nth-child(2) { transition-delay: 0.22s; }
.how-it-works-section.in-view .step-card:nth-child(3) { transition-delay: 0.29s; }

/* Report Details Section Animations */
.report-details-section {
    --report-parallax-y: 0px;
}

.report-details-section .report-info {
    opacity: 0;
    transform: translateX(-24px) translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.320, 1), transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.report-details-section.in-view .report-info {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.report-details-section .report-card-wrapper {
    opacity: 0;
    transform: translateX(24px) translateY(20px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.320, 1), transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.report-details-section.in-view .report-card-wrapper {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    transition-delay: 0.15s;
}

/* Win Dispute Section Animations */
.win-dispute-section .section-header {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.320, 1), transform 0.7s cubic-bezier(0.23, 1, 0.320, 1);
}

.win-dispute-section.in-view .section-header {
    opacity: 1;
    transform: translateY(0);
}

.win-dispute-section .benefit-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.320, 1), transform 0.7s cubic-bezier(0.23, 1, 0.320, 1);
}

.win-dispute-section.in-view .benefit-card {
    opacity: 1;
    transform: translateY(0);
}

.win-dispute-section.in-view .benefit-card:nth-child(1) { transition-delay: 0.12s; }
.win-dispute-section.in-view .benefit-card:nth-child(2) { transition-delay: 0.19s; }
.win-dispute-section.in-view .benefit-card:nth-child(3) { transition-delay: 0.26s; }
.win-dispute-section.in-view .benefit-card:nth-child(4) { transition-delay: 0.33s; }

/* Media Mentions Section Animations */
.media-mentions-section h2 {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.320, 1), transform 0.7s cubic-bezier(0.23, 1, 0.320, 1);
}

.media-mentions-section.in-view h2 {
    opacity: 1;
    transform: translateY(0);
}

.media-mentions-section .media-card {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.320, 1), transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.media-mentions-section.in-view .media-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.media-mentions-section.in-view .media-card:nth-child(1) { transition-delay: 0.08s; }
.media-mentions-section.in-view .media-card:nth-child(2) { transition-delay: 0.12s; }
.media-mentions-section.in-view .media-card:nth-child(3) { transition-delay: 0.16s; }
.media-mentions-section.in-view .media-card:nth-child(4) { transition-delay: 0.2s; }
.media-mentions-section.in-view .media-card:nth-child(5) { transition-delay: 0.24s; }
.media-mentions-section.in-view .media-card:nth-child(6) { transition-delay: 0.28s; }

/* Benchmarking Section Animations */
.benchmarking-content {
    opacity: 0;
    transform: translateX(-20px) translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.320, 1), transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.benchmarking-section.in-view .benchmarking-content {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.benchmarking-actions {
    opacity: 0;
    transform: translateX(20px) translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.320, 1), transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.benchmarking-section.in-view .benchmarking-actions {
    opacity: 1;
    transform: translateX(0) translateY(0);
    transition-delay: 0.15s;
}

/* Timing Section Animations */
.timing-content,
.timing-quote-wrap {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.320, 1), transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.timing-section.in-view .timing-content {
    opacity: 1;
    transform: translateY(0);
}

.timing-section.in-view .timing-quote-wrap {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.18s;
}

/* Start Now Section Animations */
.start-now-content {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.320, 1), transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.start-now-section.in-view .start-now-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Parallax Effect on Scroll */
.problem-section.parallax-active {
    --scroll-parallax-y: var(--parallax-offset);
    transform: translate3d(0, calc(var(--parallax-offset) * 0.12), 0);
}

.how-it-works-section.parallax-active .steps-grid {
    transform: translate3d(0, calc(var(--parallax-offset) * -0.15), 0);
}

.report-details-section.parallax-active {
    transform: translate3d(0, calc(var(--parallax-offset) * 0.08), 0);
}

.media-mentions-section.parallax-active {
    transform: translate3d(0, calc(var(--parallax-offset) * -0.12), 0);
}

.timing-section.parallax-active .timing-content {
    transform: translate3d(0, calc(var(--parallax-offset) * 0.1), 0);
}

.timing-section.parallax-active .timing-quote-wrap {
    transform: translate3d(0, calc(var(--parallax-offset) * -0.1), 0);
}

@media (prefers-reduced-motion: reduce) {
    section [class*="in-view"],
    .problem-section .section-tag,
    .problem-section h2,
    .problem-section .subtitle,
    .how-it-works-section .section-header,
    .how-it-works-section .step-card,
    .report-details-section .report-info,
    .report-details-section .report-card-wrapper,
    .win-dispute-section .section-header,
    .win-dispute-section .benefit-card,
    .media-mentions-section h2,
    .media-mentions-section .media-card,
    .benchmarking-content,
    .benchmarking-actions,
    .timing-content,
    .timing-quote-wrap,
    .start-now-content {
        opacity: 1;
        transform: none;
        transition: none;
    }

    section.parallax-active,
    section.parallax-active * {
        transform: none;
    }
}

/* Start Now Section */
.start-now-section {
    padding: var(--section-space) 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

#start-chart-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.start-now-section .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0 40px;
}

.start-now-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: clamp(42px, 6vw, 56px) clamp(32px, 5vw, 52px);
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.start-now-content h2 {
    margin-bottom: 16px;
    line-height: 1.18;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #2A3843;
    font-size: clamp(1.8rem, 4.2vw, 3rem);
}

.start-now-headline-cta {
    display: inline-block;
    text-transform: uppercase;
    font-size: 1.5em;
    letter-spacing: 0.04em;
    color: #000000;
    line-height: 1.1;
    margin-top: 8px;
}

.start-now-content .section-tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 18px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid #000000;
    border-radius: 50px;
    color: #000000;
}

.start-now-content p {
    max-width: 800px;
    margin: 0 auto 28px;
    font-size: clamp(1.02rem, 1.8vw, 1.18rem);
    line-height: 1.7;
    color: #4f5c68;
}

.start-now-content small {
    display: block;
    margin-top: 16px;
    color: #6b7989;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .start-now-section .container {
        padding: 0 12px;
    }

    .start-now-content {
        text-align: center;
        border-radius: 18px;
        padding: 32px 16px;
    }

    .start-now-content h2 {
        text-align: center;
        margin-bottom: 12px;
        font-size: 1.55rem;
        line-height: 1.2;
    }

    .start-now-headline-cta {
        font-size: 1.2em;
    }

    .start-now-content p {
        text-align: center;
        margin-bottom: 24px;
        font-size: 0.88rem;
    }

    .start-now-btn {
        width: 100%;
        min-width: 0;
        font-size: 0.88rem;
        padding: 13px 20px;
    }

    .start-now-content small {
        text-align: center;
    }
}

/* Problem Cards Refresh + Scroll Animation */
.problem-section .subtitle {
    max-width: 760px;
    margin-bottom: 2.2rem;
}

.problem-cards {
    gap: 22px;
}

.problem-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fcfd 100%);
    border: 1px solid rgba(28, 175, 182, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 40px 30px;
    text-align: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
}

.problem-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(28, 175, 182, 0.15), rgba(28, 175, 182, 0.08));
    color: #404040 !important;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.problem-card h3 {
    font-size: clamp(1.12rem, 2vw, 1.35rem);
    margin-bottom: 14px;
    line-height: 1.4;
    font-weight: 900 !important;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.problem-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

.problem-card:hover {
    border-color: rgba(28, 175, 182, 0.5);
    box-shadow: 0 20px 40px rgba(28, 175, 182, 0.15);
    transform: translateY(-8px);
}

.problem-card:hover .icon {
    background: linear-gradient(135deg, rgba(28, 175, 182, 0.25), rgba(28, 175, 182, 0.15));
    transform: scale(1.1);
}

.problem-card.reveal-card {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.problem-card.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.problem-card.reveal-card:nth-child(2) {
    transition-delay: 0.1s;
}

.problem-card.reveal-card:nth-child(3) {
    transition-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
    .problem-card.reveal-card,
    .problem-card.reveal-card.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 768px) {
    .problem-card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .problem-card .icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
}

/* Report List Refresh */
.report-info .report-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0;
}

.report-info .report-list li {
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    box-shadow: none;
    align-items: flex-start;
    line-height: 1.4;
}

.report-info .report-list li i {
    width: auto;
    height: auto;
    min-width: 20px;
    border-radius: 0;
    margin-right: 0;
    margin-top: 2px;
    display: inline;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1rem;
    color: var(--secondary-color);
    background: none;
}

@media (max-width: 768px) {
    .report-info .report-list {
        gap: 16px;
    }

    .report-info .report-list li {
        padding: 0;
        border-radius: 0;
        align-items: flex-start;
    }

    .report-info .report-list li i {
        width: auto;
        height: auto;
        min-width: 20px;
        font-size: 1rem;
        margin-top: 2px;
    }
}

/* Win Dispute Professional Refresh */
.win-dispute-section {
    background: radial-gradient(circle at 0% 0%, rgba(31, 107, 147, 0.08), transparent 42%),
                radial-gradient(circle at 100% 100%, rgba(28, 175, 182, 0.1), transparent 42%),
                linear-gradient(180deg, #f8fbfc 0%, #eef6f8 100%);
}

.win-dispute-section .section-header {
    max-width: 900px;
    margin-bottom: 2.8rem;
}

.win-dispute-section h2 {
    font-size: clamp(1.85rem, 4vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.benefits-grid {
    gap: 22px;
    max-width: 1060px;
}

.benefit-card {
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(31, 107, 147, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
    box-shadow: 0 10px 24px rgba(14, 24, 40, 0.07);
}

.benefit-card::before {
    width: 100%;
    height: 3px;
    inset: 0 0 auto 0;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    opacity: 0.9;
}

.benefit-card h3 {
    padding-right: 0;
    margin-bottom: 10px;
    line-height: 1.33;
    color: #1b4f6a;
}

.benefit-card p {
    color: #51616b;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(28, 175, 182, 0.45);
    box-shadow: 0 16px 32px rgba(14, 24, 40, 0.11);
}

@media (max-width: 768px) {
    .win-dispute-section .section-header {
        margin-bottom: 1.8rem;
    }

    .benefits-grid {
        gap: 14px;
    }

    .benefit-card {
        padding: 20px 16px;
        border-radius: 14px;
    }
}

/* ==================================
   StaffViz-inspired global theme
   ================================== */

:root {
    --primary-color: #14213d;
    --secondary-color: #4f46e5;
    --light-bg: #ffffff;
    --text-color: #1f2a44;
    --text-light: #5f6b85;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Manrope', sans-serif;
}

body {
    background: #ffffff;
    color: var(--text-color);
    font-family: var(--font-main);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.top-bar {
    background: linear-gradient(90deg, #111a2f, #1a2750);
}

.tag,
.section-tag {
    background: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.hero {
    background:
        radial-gradient(circle at 0% 0%, rgba(79, 70, 229, 0.14), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(20, 33, 61, 0.1), transparent 44%),
        linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
}

.hero-headline .highlight {
    color: #4338ca;
    text-shadow: 0 3px 0 rgba(67, 56, 202, 0.08);
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4338ca, #2563eb);
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.28);
}

.btn-secondary {
    border-color: #1CB5B9;
    color: #ffffff;
    background: #1CB5B9;
}

.btn-secondary:hover {
    background: #169396;
    color: #ffffff;
}

.btn i {
    font-size: 1.05rem;
}

.btn span {
    display: inline;
}

.start-now-btn {
    padding: 16px 32px;
    min-width: 300px;
    font-size: 1.05rem;
    font-weight: 700;
    display: inline-flex;
    gap: 10px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .start-now-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }
}

.problem-card,
.step-card,
.benefit-card,
.media-card,
.faq-item,
.start-now-content,
.zeeng-score-card,
.timing-quote {
    border-radius: 16px;
}

.problem-card,
.step-card,
.benefit-card,
.faq-item,
.media-card,
.start-now-content {
    border: 1px solid rgba(20, 33, 61, 0.1);
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

.problem-section,
.how-it-works-section,
.report-details-section,
.media-mentions-section,
.benchmarking-section,
.faq-section,
.start-now-section,
.timing-section,
.win-dispute-section {
    background-color: #ffffff;
}

.benefit-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-color: rgba(67, 56, 202, 0.18);
}

.benefit-card::before {
    background: linear-gradient(90deg, #4f46e5, #3b82f6);
}

.benefit-card h3 {
    color: #1e3a8a;
}

.benefit-card p {
    color: #4f5f78;
}

.report-info .report-list li {
    background: none !important;
    border-color: transparent !important;
}

.report-info .report-list li i {
    color: var(--secondary-color) !important;
    background: none !important;
}

.benchmarking-btn {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    box-shadow: 0 14px 26px rgba(59, 130, 246, 0.25);
}

.benchmarking-btn.secondary {
    color: #ffffff;
    border-color: #1CB5B9;
    background: #1CB5B9;
}

.benchmarking-btn.secondary:hover {
    background: #169396;
    color: #ffffff;
}

.timing-quote {
    background: linear-gradient(160deg, #131c36 0%, #1d2c52 100%);
    border-color: rgba(79, 70, 229, 0.38);
}

.faq-item summary {
    color: #1e3a8a;
}

.faq-item summary::after {
    color: #4338ca;
    background: transparent;
}

.start-now-content {
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border-color: rgba(67, 56, 202, 0.2);
}

footer {
    background: linear-gradient(180deg, #10182b 0%, #0b1323 100%);
}

.footer-links a,
.social-links span,
.copyright {
    color: #9da9c2;
}

.footer-links a:hover,
.social-links span:hover {
    color: #c8d2ff;
}

/* Hero: fundo branco + headline peso 900 */
.hero {
    background: #ffffff;
}

.hero::before {
    display: none;
}

.hero-headline {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: -0.04em;
    gap: 0px;
    color: #2A3843;
}

.hero-headline .highlight {
    font-weight: 900;
    color: #1CB5B9;
    text-shadow: none;
}

/* Top bar: fundo vermelho */
.top-bar {
    background: #e53e3e;
}

/* Forçar todas as headlines (h2) a usar a mesma fonte, peso e cor da hero-headline */
h2,
.problem-section h2,
.how-it-works-section h2,
.report-info h2,
.win-dispute-section h2,
.media-mentions-section h2,
.benchmarking-content h2,
.faq-header h2,
.start-now-content h2 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    color: #2A3843 !important;
}

/* Fix tags style to transparent with black border across all sections */
.tag,
.section-tag,
.how-it-works-section .section-tag,
.report-info .section-tag,
.win-dispute-section .section-tag,
.benchmarking-content .section-tag,

.timing-content .section-tag,
.faq-header .section-tag,
.start-now-content .section-tag,
.problem-section .section-tag {
    background: transparent !important;
    background-color: transparent !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
}

/* Media Mentions Section overrides */
.media-mentions-section {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.media-card, .media-card:hover {
    box-shadow: none !important;
}

/* Remover bordas dos cart�es de Passo */
.step-card {
    border: none !important;
}

/* Remover bordas das tags de passo ('Passo 01', etc) dentro dos cart�es */
.step-tag {
    border: none !important;
    background: transparent !important;
    color: #1CB5B9 !important; /* Retornando cor de destaque que foi perdida para n�o ficar so preto sem borda*/
}

.report-info .report-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.report-info .report-list li {
    position: relative;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    background: none !important;
    border: none !important;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
    transition: none;
}

.report-info .report-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    border-radius: 0;
    background: none;
}

.report-info .report-list li:hover {
    transform: none;
    border-color: transparent !important;
    box-shadow: none;
}

.report-info .report-list li i {
    width: auto;
    height: auto;
    min-width: 20px;
    border-radius: 0;
    margin-right: 12px;
    margin-top: 2px;
    display: inline;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1rem;
    color: var(--secondary-color) !important;
    background: none !important;
    box-shadow: none;
}

@media (max-width: 768px) {
    .report-info .report-list {
        gap: 12px;
    }

    .report-info .report-list li {
        padding: 0;
        border-radius: 0;
    }

    .report-info .report-list li::before {
        width: 0;
        border-radius: 0;
    }

    .report-info .report-list li i {
        width: auto;
        height: auto;
        min-width: 20px;
        font-size: 1rem;
        margin-top: 2px;
    }
}

.win-dispute-section {
    background: none !important;
    background-color: transparent !important;
    position: relative;
    overflow: hidden;
    --win-parallax-y: 0px;
}

.win-dispute-section::after {
    content: none;
}

.win-dispute-section .container {
    position: relative;
    z-index: 1;
}

.win-dispute-section .section-header {
    transform: translate3d(0, calc(var(--win-parallax-y) * 0.2), 0);
    will-change: transform;
}

.win-dispute-section .benefits-grid {
    gap: 20px;
    transform: translate3d(0, calc(var(--win-parallax-y) * -0.25), 0);
    will-change: transform;
}

.win-dispute-section .benefit-card {
    position: relative;
    overflow: hidden;
    padding: 30px 26px;
    border-radius: 18px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-align: center;
}

.win-dispute-section .benefit-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: #9ca3af;
    opacity: 0.95;
}

.win-dispute-section .benefit-card h3 {
    margin-bottom: 12px;
    line-height: 1.32;
    color: #1f2a44;
    font-weight: 700;
}

.win-dispute-section .benefit-card p {
    color: #5f6b85;
    line-height: 1.62;
}

.win-dispute-section .benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(28, 181, 185, 0.45);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.14);
}

@media (max-width: 768px) {
    .win-dispute-section .section-header,
    .win-dispute-section .benefits-grid {
        transform: none;
    }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #0d1b2a;
    color: #b0bec5;
    padding: 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 56px;
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.footer-tagline {
    font-size: 0.93rem;
    color: #78909c;
    line-height: 1.55;
    margin: 0;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: #90a4ae;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Nav columns */
.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav-col h4 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #ffffff;
    margin: 0 0 18px;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-col ul li a {
    font-size: 0.9rem;
    color: #78909c;
    text-decoration: none;
    transition: color 0.18s;
}

.footer-nav-col ul li a:hover {
    color: #ffffff;
}

/* Contact column */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #ffffff;
    margin: 0 0 4px;
}

.footer-email,
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.18s;
}

.footer-email {
    color: #78909c;
}

.footer-email:hover {
    color: #ffffff;
}

.footer-whatsapp {
    color: #4caf7d;
}

.footer-whatsapp:hover {
    color: #81c995;
}

.footer-whatsapp i {
    font-size: 1.05rem;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 28px 0;
    flex-wrap: wrap;
    text-align: center;
}

.footer-bottom-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.82rem;
    color: #546e7a;
    text-decoration: none;
    transition: color 0.18s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links-sep {
    color: #37474f;
    font-size: 0.82rem;
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #169396;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(22, 147, 150, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    z-index: 1;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

.footer-bottom p {
    font-size: 0.82rem;
    color: #546e7a;
    margin: 0;
    line-height: 1.5;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Responsive footer */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        padding: 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0 36px;
        text-align: center;
    }

    .footer-brand {
        grid-column: auto;
        align-items: center;
    }

    .footer-tagline {
        text-align: center;
    }

    .footer-nav {
        gap: 32px;
        justify-content: center;
    }

    .footer-nav-col {
        text-align: center;
    }

    .footer-nav-col ul {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
