/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0056b3;
    --primary-dark: #003d80;
    --primary-light: #4d8ac7;
    --accent-color: #ff9800;
    --text-color: #333333;
    --light-gray: #f5f7fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
}

/* Header Styles */
header {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 50px;
    transition: var(--transition);
}

header .logo img:hover {
    transform: scale(1.05);
}

header nav ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

header nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

/* Login button specific styles */
header nav ul li a.btn-login {
    font-size: 0.85rem;
    padding: 0.4rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    min-width: max-content;
}

header nav ul li a.btn-login i {
    font-size: 0.9rem;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

header nav ul li a:hover::after {
    width: 80%;
}

header nav ul li a:hover {
    color: var(--primary-dark);
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

/* Remove this duplicate rule that's causing the white text color */
/* header nav ul li a {
    color: #fff;
    text-decoration: none;
} */

/* Language Selector Styles */
.user-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: var(--white) !important;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-login:hover {
    background-color: var(--primary-dark);
}

.btn-login i {
    font-size: 0.9em;
}

nav {
    display: flex;
    align-items: center;
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
}

.current-lang:hover {
    background: rgba(0, 86, 179, 0.05);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 150px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow);
    display: none;
    list-style: none;
    padding: 5px 0;
    margin: 5px 0 0;
    z-index: 10000 !important;
    overflow: hidden;
    pointer-events: auto !important;
}

.language-selector .current-lang {
    min-width: 80px;
    justify-content: center;
}

.lang-dropdown.show {
    display: block;
}

.lang-dropdown li {
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
    border: none;
    outline: none;
    pointer-events: auto !important;
}

.lang-dropdown li::before,
.lang-dropdown li::after,
.lang-dropdown li *::before,
.lang-dropdown li *::after {
    display: none !important;
    content: none !important;
}

.lang-dropdown li span {
    display: block;
    padding: 10px 15px;
    margin: 2px 6px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.lang-dropdown li:hover span {
    color: var(--white);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    font-weight: 500;
    transform: translateX(5px);
}

/* Hamburger menu styles - completely revised */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 101;
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
        position: relative;
    }

    .hamburger {
        display: block;
    }

    .user-actions {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        padding: 1rem;
        background: var(--light-gray);
        margin-top: 0.5rem;
    }

    .language-selector .current-lang {
        min-width: 70px;
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .lang-dropdown {
        position: absolute;
        top: calc(100% + 5px);
        right: 50%;
        transform: translateX(50%);
    }

    .btn-login {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    header nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        width: 100%;
        z-index: 100;
        flex-direction: column;
        align-items: stretch;
    }

    header nav.active {
        height: auto;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    header nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
        gap: 0;
        width: 100%;
    }

    header nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }

    header nav ul li:last-child {
        border-bottom: none;
    }

    header nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
    }

    header nav ul li a::after {
        display: none;
    }

    header nav ul li a.btn-login {
        margin: 1rem auto;
        width: auto;
        min-width: 120px;
        max-width: 200px;
        font-size: 0.9rem;
        justify-content: center;
        background-color: var(--primary-color);
        color: var(--white);
    }
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
}

/* Hero Section */
#hero {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-logo-img {
    max-width: 350px;
    height: auto;
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

#hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-buttons .btn:first-child {
    background: var(--white);
    color: var(--primary-color);
}

.cta-buttons .btn:last-child {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn:first-child:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn:last-child:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* How It Works Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Features Section */
#features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

#features ul li {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 3px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

#features ul li i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#features ul li h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

#features ul li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Early Adopters Section */
#early-adopters {
    background: linear-gradient(135deg, #ff9800 0%, #ff6b00 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 900px;
}

.early-adopters-badge {
    margin-bottom: 1.5rem;
}

.early-adopters-badge .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.early-adopters-badge .badge-mobile {
    display: none;
}

.early-adopters-badge .badge-full {
    display: inline;
}

#early-adopters h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

#early-adopters h2::after {
    background-color: var(--white);
}

#early-adopters .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.early-adopters-benefits ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    padding: 0;
}

.early-adopters-benefits ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.early-adopters-benefits ul li i {
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.early-adopters-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.early-adopters-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.early-adopters-cta .btn-primary {
    background: var(--white);
    color: #ff6b00;
    border: 2px solid var(--white);
}

.early-adopters-cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.early-adopters-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.early-adopters-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.early-adopters-terms {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2rem;
    font-style: italic;
}

/* Responsive for Early Adopters */
@media (max-width: 768px) {
    .early-adopters-badge .badge-full {
        display: none;
    }

    .early-adopters-badge .badge-mobile {
        display: inline;
    }

    #early-adopters h2 {
        font-size: 1.8rem;
    }

    #early-adopters .section-subtitle {
        font-size: 1rem;
    }

    .early-adopters-cta {
        flex-direction: column;
        align-items: center;
    }

    .early-adopters-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Pricing Table */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

#pricing table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

#pricing table th, #pricing table td {
    padding: 1rem;
    text-align: left;
}

#pricing table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

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

#pricing table tr:hover {
    background-color: rgba(0, 86, 179, 0.05);
}

.pricing-note {
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-color);
    opacity: 0.8;
}

/* FAQ Section */
#faq ul {
    list-style: none;
}

#faq ul li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

#faq ul li strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}


/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

footer a {
    color: var(--white);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: var(--transition);
}

footer a:hover {
    color: var(--accent-color);
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.footer-logo-img {
    max-width: 120px;
    width: 100%;
    height: auto;
    object-fit: contain;
    background-color: white;
    padding: 0.6rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-separator {
    margin: 0 0.5rem;
}

.social-links {
    margin: 1.5rem 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin: 0 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.social-links a i {
    color: var(--white);
}

.social-links a:hover i {
    color: var(--white);
}

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Login Button */
/* Responsive Adjustments */
@media (max-width: 768px) {
    /* Remove conflicting header styles that were overriding hamburger menu */

    #hero h1 {
        font-size: 2rem;
    }

    .steps-container, #features ul {
        grid-template-columns: 1fr;
    }

    /* Additional responsive improvements */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    #hero {
        padding: 2rem 1rem;
    }

    .hero-logo-img {
        max-width: 250px;
        padding: 0.8rem;
    }

    #pricing table {
        font-size: 0.9rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links a {
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Hide footer separators on small screens */
    .footer-separator {
        display: none;
    }
}

/* Add smaller screen sizes support */
@media (max-width: 480px) {
    header .logo img {
        height: 40px;
    }

    header nav ul li a {
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }

    #hero h1 {
        font-size: 1.6rem;
    }

    #hero p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.4rem;
    }

    .step {
        padding: 1rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    #features ul li {
        padding: 1rem;
    }
}

/* Report Table Styles */
.report-section .table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.report-section .table-container table {
    width: 100%;
    border-collapse: collapse;
}

.report-section .table-container th,
.report-section .table-container td {
    padding: 0.8rem;
    text-align: left;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .report-section .table-container table {
        table-layout: fixed;
    }

    /* Hide specified columns */
    .report-section .table-container .hide-mobile {
        display: none !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        position: absolute !important;
        left: -9999px !important;
    }

    /* Adjust remaining columns */
    .report-section .table-container td,
    .report-section .table-container th {
        display: table-cell;
        padding: 8px;
        font-size: 0.9rem;
    }

    /* Uniform table styles for all sections */
    .table-container table {
        table-layout: fixed;
    }

    .table-container td,
    .table-container th {
        padding: 8px;
    }

    /* Hide specified columns on mobile */
    .hide-mobile {
        display: none !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
    }

    /* Show remaining columns with consistent widths */
    .table-container td:not(.hide-mobile),
    .table-container th:not(.hide-mobile) {
        display: table-cell;
        font-size: 0.9rem;
    }
}

/* Report Actions */
.report-actions {
    display: flex;
    justify-content: flex-end;
    padding: 2rem;
    margin-top: 2rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .report-actions {
        padding: 1rem;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Report Styles */
.report-intro {
    font-size: 1.2rem;
    margin: 1.5rem 0;
}

.competition-group {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.competition-group h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.competition-group h3 i {
    color: var(--primary-color);
}

.summary-note {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--primary-light);
    color: var(--white);
    border-radius: 8px;
    font-style: italic;
}

.insight-group {
    margin-bottom: 3rem;
}

.calculation-example {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.calc-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.calc-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.note {
    font-style: italic;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 0.5rem;
}

.methodology-explanation, .competitive-set, .area-explanation {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.methodology-explanation ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.future-note {
    font-style: italic;
    color: var(--primary-color);
    margin-top: 1.5rem;
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    background: var(--light-gray);
}

.not-available {
    opacity: 0.5;
    background: var(--light-gray);
}

/* Table enhancements */
.table-container th {
    white-space: nowrap;
    position: sticky;
    top: 0;
    background: var(--primary-color);
    z-index: 10;
}

.table-container td {
    padding: 0.8rem;
    border-bottom: 1px solid var(--light-gray);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .calculation-example {
        grid-template-columns: 1fr;
    }

    .competition-group {
        padding: 1rem;
    }

    .table-container {
        margin: 1rem -1rem;
        width: calc(100% + 2rem);
    }

    .table-container td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .report-intro {
        font-size: 1rem;
    }
}

/* Sample Report Section */
#sample-report {
    text-align: center;
}

.report-preview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.preview-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.preview-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.preview-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.report-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 8px;
    margin: 2rem 0;
}

.report-sample {
    flex: 1;
    text-align: left;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.sample-content {
    margin-top: 1rem;
}

.price-change {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0.5rem 0 1rem 0;
}

.report-testimonial {
    background: var(--primary-light);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.report-testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.report-testimonial cite {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Report Example Page Styles */
.report-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.report-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.report-meta {
    color: var(--text-color);
    opacity: 0.8;
    margin: 1rem 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
}

.download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.report-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.report-section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.report-section h3 {
    margin: 2rem 0 1rem 0;
    color: var(--primary-dark);
}

.period-list {
    list-style: none;
    margin: 1rem 0;
}

.period-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: var(--light-gray);
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.period-list li i {
    color: var(--primary-color);
}

.table-container {
    overflow-x: auto;
    margin: 1rem 0;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.table-container th,
.table-container td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.table-container th {
    background: var(--primary-color);
    color: var(--white);
}

.table-container tr:hover {
    background: var(--light-gray);
}

.negative {
    color: #dc3545;
}

.positive {
    color: #28a745;
}

.methodology-content {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Responsive adjustments for report pages */
@media (max-width: 768px) {
    .report-showcase {
        flex-direction: column;
        text-align: center;
    }

    .report-sample {
        width: 100%;
    }

    .table-container {
        font-size: 0.9rem;
    }

    .period-list li {
        flex-direction: column;
        text-align: center;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.cookie-consent-banner.show {
    display: block;
}

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

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.cookie-consent-text p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: var(--primary-dark);
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid #ddd;
}

.cookie-btn-decline:hover {
    background: var(--light-gray);
    border-color: #bbb;
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cookie-btn-settings:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 1rem;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: var(--white);
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.cookie-settings-header h2 {
    color: var(--text-color);
    font-size: 1.5rem;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-close:hover {
    color: var(--text-color);
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-header h3 {
    font-size: 1.1rem;
    color: var(--text-color);
}

.cookie-category p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.cookie-category.required {
    opacity: 0.7;
}

.cookie-category.required .cookie-category-header h3::after {
    content: " (Required)";
    font-size: 0.85rem;
    font-weight: normal;
    color: #999;
}

.cookie-settings-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--light-gray);
}

.cookie-settings-actions .cookie-btn {
    flex: 1;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.75rem;
    }

    .cookie-settings-content {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .cookie-settings-header h2 {
        font-size: 1.25rem;
    }

    .cookie-settings-actions {
        flex-direction: column;
    }
}
