:root {
    /* Colors */
    --color-primary: #262a33;
    --color-secondary: #2d3748;
    --color-accent: #c99b4c;
    --color-accent-dark: #b8894a;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-text-muted: rgba(255, 255, 255, 0.9);
    --color-white: #ffffff;
    --color-gray-light: #e2e8f0;
    --color-gray: #cbd5e0;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
    --transition-animation: 0.8s ease;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 25px;
    --radius-full: 50%;
    
    /* Font sizes */
    --text-xs: 0.9rem;
    --text-sm: 1rem;
    --text-md: 1.1rem;
    --text-lg: 1.2rem;
    --text-xl: 1.4rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 4.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    padding-bottom: 0;
}

/* Utility Classes */
.u-hidden { display: none !important; }
.u-visible { visibility: visible !important; }
.u-invisible { visibility: hidden !important; }
.u-text-center { text-align: center !important; }
.u-text-left { text-align: left !important; }
.u-flex { display: flex !important; }
.u-flex-center { display: flex; align-items: center; justify-content: center; }
.u-transition { transition: var(--transition-normal); }

/* Animation Base Classes */
.animate-base {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow), filter var(--transition-fast);
}

.animate-base.animate-in {
    opacity: 1;
    filter: blur(0px);
}

/* Scroll Animations */
.animate-on-scroll {
    transform: translateY(50px);
    filter: blur(2px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter var(--transition-fast);
}

.animate-on-scroll.animate-in {
    transform: translateY(0);
}

.animate-slide-left {
    transform: translateX(-80px);
    filter: blur(1.5px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter var(--transition-fast);
}

.animate-slide-left.animate-in {
    transform: translateX(0);
}

.animate-slide-right {
    transform: translateX(80px);
    filter: blur(1.5px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter var(--transition-fast);
}

.animate-slide-right.animate-in {
    transform: translateX(0);
}

.animate-scale {
    transform: scale(0.9);
    filter: blur(1.5px);
    transition: opacity var(--transition-slow), transform var(--transition-slow), filter 0.12s ease;
}

.animate-scale.animate-in {
    transform: scale(1);
}

/* Apply base class to all animation classes */
.animate-on-scroll,
.animate-slide-left,
.animate-slide-right,
.animate-scale {
    opacity: 0;
}

.animate-on-scroll.animate-in,
.animate-slide-left.animate-in,
.animate-slide-right.animate-in,
.animate-scale.animate-in {
    opacity: 1;
    filter: blur(0px);
}

/* Mobile breakpoints */
@media (max-width: 1024px) {
    /* Mobile fixes for slide animations */
    .animate-slide-left {
        transform: translateX(-30px);
    }
    
    .animate-slide-right {
        transform: translateX(30px);
    }
    
    .animate-on-scroll {
        transform: translateY(20px);
    }
    
    
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: var(--spacing-3xl) var(--spacing-md);
        min-height: auto;
        gap: var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-content {
        padding: 0;
        margin: 0;
    }
    
    .hero-content h1 {
        margin-top: 0;
    }
    
    .hero-content p {
        margin-top: 0;
    }
    
    .hero-visual {
        height: auto;
        margin-bottom: 0;
        width: 100%;
    }
    
    .hero-image {
        width: 100%;
        max-width: none;
        height: 400px;
    }
    
    .nav {
        position: relative;
        justify-content: space-between;
        padding: var(--spacing-sm);
    }
    
    .header {
        height: 60px;
    }
    
    body {
        padding-top: 60px;
    }
}

/* Scroll offset for anchor links */
#product, #reports, #overview, #pricing, #contact {
    scroll-margin-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--color-primary);
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.8s ease;
}

.header.animate-in {
    transform: translateY(0);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo .placeholder-image {
    height: 50px;
    width: 150px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #262a33;
    font-size: 1rem;
    font-weight: 600;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
}

.logo a:hover .placeholder-image {
    transform: scale(1.05);
}

.logo .placeholder-image.has-image {
    color: transparent;
    background-color: transparent;
    user-select: none;
    pointer-events: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.mobile-menu-toggle {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color var(--transition-normal);
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.language-toggle {
    position: relative;
    display: flex;
    align-items: center;
}

.language-flag {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.language-flag:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #262a33;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    margin-top: 0.5rem;
    display: none !important;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 1000;
    min-width: 120px;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
}

.language-dropdown.show {
    display: flex !important;
    visibility: visible;
    opacity: 1;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option.active {
    background: rgba(199, 155, 76, 0.2);
}

.language-option-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #2d3748;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 1rem;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUp 1s ease 0.5s forwards;
    line-height: 1.1;
    color: #2d3748;
}

.hero-title .bold {
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 1s ease 0.7s forwards;
    color: #4a5568;
    line-height: 1.6;
    max-width: 550px;
}

.hero-subtitle .bold {
    font-weight: 700;
}

.cta-button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    background: #262a33;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    opacity: 0;
    animation: slideUp 1s ease 0.9s forwards;
    font-weight: 600;
    display: inline-block;
}

.cta-button:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: slideUp 1s ease 1.1s forwards;
}

/* Hero Visual */
.hero-visual {
    flex: 1.2;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 550px;
    position: relative;
}

.hero-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 1.1rem;
    font-weight: 500;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
}

/* When image is loaded, hide the text */
.hero-image .placeholder-image.has-image {
    color: transparent;
    background-color: transparent;
    user-select: none;
    pointer-events: none;
}

/* Product Section */
.product {
    padding: 6rem 2rem;
    background: #262a33;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 700;
}

.product-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.product-description strong {
    color: white;
    font-weight: 600;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.product-grid .product-card {
    flex: 0 1 calc(33.333% - 0.7rem);
    max-width: 450px;
    min-width: 350px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 250px;
    position: relative;
}

.product-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.product-image .placeholder-image.has-image {
    color: transparent;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    user-select: none;
    pointer-events: none;
}

.product-content {
    padding: 2rem;
}

.product-content p strong {
    color: #2d3748;
    font-weight: 600;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.product-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Reports Section */
.reports {
    padding: 0.5rem 0;
    background: #ffffff;
    text-align: center;
}

.section-title-dark {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: #2d3748;
    font-weight: 700;
}

.reports-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}


.reports-description strong {
    color: #2d3748;
    font-weight: 600;
}

.reports-content {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    min-height: 300px;
}

.report-image {
    flex: 1.2;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.report-image:hover .placeholder-image {
    transform: scale(1.05);
}

.report-image .placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
    border: 2px solid #e2e8f0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.report-image .placeholder-image.has-image {
    color: transparent;
    background-color: transparent;
    border: none;
    user-select: none;
    pointer-events: none;
}

.report-image-large .report-preview-large {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
    border: 2px solid #e2e8f0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    position: relative;
}

.report-image-large:hover .report-preview-large {
    transform: scale(1.05);
}

.report-button {
    background: #262a33;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.desktop-button {
    position: absolute;
    bottom: 40px;
    right: 10px;
    z-index: 10;
}

.mobile-button {
    display: none;
    margin: 0.2rem auto 0 auto;
    width: auto;
    min-width: 250px;
}

.report-button:hover {
    background: #2d3748;
    transform: translateY(-2px);
}

.report-insights {
    flex: 1;
    text-align: left;
}

.insight-item {
    margin-bottom: 2rem;
}

.insight-item:last-child {
    margin-bottom: 0;
}

.insight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
    font-weight: 600;
}

.insight-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.1rem;
}

.insight-item p strong {
    color: #2d3748;
    font-weight: 600;
}

/* Overview Section */
.overview {
    padding: 1.5rem 0 6rem 0;
    background: #ffffff;
}

.overview-header {
    text-align: center;
    margin-bottom: 4rem;
}

.overview-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-weight: 700;
}

.overview-sections {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-item {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.overview-item.reverse {
    flex-direction: row-reverse;
}

.overview-content {
    flex: 1;
}

.overview-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.overview-image {
    flex: 1;
    height: 300px;
}


.overview-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.overview-item:nth-child(1) .overview-image .placeholder-image {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    border-color: #4299e1;
}

.overview-item:nth-child(2) .overview-image .placeholder-image {
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-color: #48bb78;
}

.overview-item:nth-child(3) .overview-image .placeholder-image {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    border-color: #ed8936;
}

.overview-image .placeholder-image.has-image {
    color: transparent !important;
    background-color: transparent !important;
    border: none !important;
    user-select: none;
    pointer-events: none;
    font-size: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    text-shadow: none !important;
}


.report-preview {
    background: linear-gradient(135deg, #673de6, #8c85ff);
    color: white;
    height: 280px !important;
}

.secondary-button {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #673de6;
    border: 2px solid #673de6;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.secondary-button:hover {
    background: #673de6;
    color: white;
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing {
    padding: 3rem 0 6rem 0;
    background: #262a33;
    color: white;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-subtitle strong {
    color: white;
    font-weight: 600;
}

.pricing-cards-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card-new:first-child {
    flex: 0 0 35%;
}

.pricing-card-new:last-child {
    flex: 0 0 60%;
}

.pricing-card-new:hover {
    transform: translateY(-5px);
}

.pricing-card-image {
    height: 200px;
    position: relative;
}

.pricing-card-image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-card-image .placeholder-image.has-image {
    color: transparent;
    background-color: transparent;
    user-select: none;
    pointer-events: none;
}

.pricing-free {
    background: linear-gradient(135deg, #b8894a, #c99b4c);
}

.pricing-paid {
    background: linear-gradient(135deg, #4a5568, #2d3748);
}

.pricing-card-content {
    padding: 1.5rem;
    color: #262a33;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pricing-card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #262a33;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
}

.price-new {
    font-size: 2.2rem;
    font-weight: 700;
    color: #262a33;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.1;
}

.pricing-details .price-new {
    margin-bottom: 0.3rem;
}

.pricing-details {
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-details .price-new:last-of-type {
    margin-top: 1rem;
}

.price-subtitle {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.price-subtitle:last-child {
    margin-bottom: 0;
}

.pricing-description {
    color: #262a33;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.pricing-benefits {
    color: #262a33;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.pricing-features-new {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
    flex: 1;
}

.pricing-features-new li {
    padding: 0.3rem 0;
    color: #262a33;
    position: relative;
    padding-left: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-features-new li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #262a33;
    font-weight: 600;
}

.pricing-features-new li strong {
    color: #262a33;
    font-weight: 600;
}

.pricing-button-new {
    width: 100%;
    padding: 1.2rem;
    background: #262a33;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    margin-top: auto;
}

.pricing-button-new:hover {
    background: #262a33;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #ffffff;
}

.contact-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    flex: 1;
    text-align: left;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 2.5rem;
    color: #2d3748;
    font-weight: 700;
}

.contact-image {
    flex: 1;
    height: 400px;
}

.contact-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
    border: 2px solid #e2e8f0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-image .placeholder-image.has-image {
    color: transparent;
    background-color: transparent;
    border: none;
    user-select: none;
    pointer-events: none;
}

.contact-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-description strong {
    color: #2d3748;
    font-weight: 600;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.email-input-container {
    margin-bottom: 2rem;
    text-align: left;
}

.email-input-container label {
    display: block;
    font-size: 1rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.email-input-container input {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.email-input-container input:focus {
    outline: none;
    border-color: #2d3748;
}

.submit-button {
    background: #2d3748;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 1rem 3rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.submit-button:hover {
    background: #262a33;
    transform: translateY(-2px);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #262a33;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #2d3748;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #262a33;
    color: white;
    padding: 1.5rem 0 0.75rem 0;
    margin-bottom: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    max-height: 80px;
    width: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.footer-logo .placeholder-image {
    width: 200px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3748;
    font-size: 1rem;
    font-weight: 600;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-logo .placeholder-image.has-image {
    color: transparent;
    background-color: transparent;
    user-select: none;
    pointer-events: none;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-social a {
    color: white;
    transition: all var(--transition-normal);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Flag Styles */
.flag-us { background-image: url('images/us-flag.png'); }
.flag-pl { background-image: url('images/pl-flag.png'); }

/* Hide mobile language section on desktop */
.mobile-language-section {
    display: none;
}

@media (max-width: 1024px) {
    .reports {
        padding: 1.5rem 0 !important;
    }
    
    .section-title-dark {
        margin-bottom: 0.8rem !important;
    }
    
    .reports-description {
        margin: 0 auto 0.3rem auto !important;
    }
    
    .reports-content {
        gap: 0 !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .report-image {
        width: 100% !important;
        max-width: 450px !important;
        margin: 0 !important;
        order: 1 !important;
    }
    
    .report-image .placeholder-image {
        height: 280px !important;
        margin: 0 !important;
    }
    
    .desktop-button {
        display: none !important;
    }
    
    .mobile-button {
        display: block !important;
        order: 2 !important;
        margin: 0.2rem auto 0.2rem auto !important;
    }
    
    
    .report-insights {
        margin: 0.5rem 0 0 0 !important;
        max-width: 450px !important;
        padding-top: 0 !important;
        order: 3 !important;
    }
    
    .overview-item,
    .overview-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .overview-item .overview-content {
        order: 2;
    }
    
    .overview-item .overview-image {
        order: 1;
    }
    
    .overview-item.reverse .overview-content {
        order: 2;
    }
    
    .overview-item.reverse .overview-image {
        order: 1;
    }
    
    .overview-item .overview-image {
        height: 270px !important;
        min-height: 270px !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        flex: none !important;
    }
    
    .overview-sections .overview-item .overview-image .placeholder-image.has-image {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        font-size: 0 !important;
        color: transparent !important;
    }
    
    .mobile-language-section {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        background: transparent;
        border: none;
        gap: 4px;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all var(--transition-normal);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #262a33;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 1000;
        gap: 0;
        border-top: 3px solid #c99b4c;
        margin-top: -3px;
    }
    
    .nav-links.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        transition: background 0.2s ease;
    }
    
    .nav-links a:hover {
        background: rgba(199, 155, 76, 0.1);
        color: var(--color-accent);
    }
    
    .nav .language-toggle {
        display: none;
    }
    
    .mobile-language-section {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0 0 0;
        margin-top: 1rem;
    }
    
    .mobile-language-title {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        padding: 0 2rem;
        font-weight: 500;
    }
    
    .mobile-language-options {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .mobile-language-option {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.8rem 2rem;
        cursor: pointer;
        transition: background 0.2s ease;
        color: white;
        font-size: 1rem;
        border: none;
        background: transparent;
        width: 100%;
        text-align: left;
    }
    
    .mobile-language-option:hover {
        background: rgba(199, 155, 76, 0.1);
    }
    
    .mobile-language-option.active {
        background: rgba(199, 155, 76, 0.2);
        color: var(--color-accent);
    }
    
    .mobile-language-flag {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex-shrink: 0;
    }
    
    #reports {
        padding: 4rem 0 !important;
        margin: 0 !important;
    }
    
    #reports .container {
        padding: 0 2rem !important;
    }
    
    #reports .section-title-dark {
        margin-bottom: 0.3rem !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    #reports .reports-description {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }
    
    #reports .reports-content {
        flex-direction: column !important;
        gap: 0 !important;
        align-items: center !important;
        margin: 0 !important;
    }
    
    #reports .report-image {
        width: 100% !important;
        max-width: 500px !important;
        order: 1 !important;
        margin: 0 !important;
    }
    
    #reports .report-image .placeholder-image {
        height: 280px !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    #reports .desktop-button {
        display: none !important;
    }
    
    #reports .mobile-button {
        display: block !important;
        order: 2 !important;
        margin: 0.2rem auto 0.2rem auto !important;
    }
    
    #reports .report-insights {
        text-align: center !important;
        order: 3 !important;
        max-width: 500px !important;
        margin: 0.5rem 0 0 0 !important;
        padding: 0 !important;
    }
    
    #reports .insight-item {
        margin-bottom: 0.8rem !important;
    }
    
    #reports .insight-item:last-child {
        margin-bottom: 0 !important;
    }
    
    
    #product .container {
        padding: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }
    
    .product-grid {
        flex-direction: column;
        align-items: center;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .product-grid .product-card:nth-child(1),
    .product-grid .product-card:nth-child(2),
    .product-grid .product-card:nth-child(3) {
        flex: none;
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
    }
    
    .pricing-cards-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .pricing-card-content {
        padding: 1.5rem;
    }
    
    .overview-item,
    .overview-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .overview-item .overview-content {
        order: 2;
    }
    
    .overview-item .overview-image {
        order: 1;
    }
    
    .overview-item.reverse .overview-content {
        order: 2;
    }
    
    .overview-item.reverse .overview-image {
        order: 1;
    }
    
    .overview-item .overview-image {
        height: 270px !important;
        min-height: 270px !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        flex: none !important;
    }
    
    .overview-sections .overview-item .overview-image .placeholder-image.has-image {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        font-size: 0 !important;
        color: transparent !important;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-image {
        display: none;
    }
    
    .contact-content {
        text-align: center;
    }
    
    .contact-form {
        padding: 0 1rem;
    }
    
    .contact-description {
        padding: 0 1rem;
    }
    
    .footer-logo .placeholder-image {
        width: 150px;
        height: 75px;
        font-size: 0.9rem;
    }
    
    .footer-social {
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .report-image {
        margin: 0 0 1rem 0 !important;
        padding: 0 !important;
        height: auto !important;
        min-height: 310px !important;
        max-height: 350px !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .report-image .placeholder-image {
        margin: 0 !important;
        padding: 0 !important;
        height: 280px !important;
        width: 100% !important;
        background-size: contain !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        flex-shrink: 0 !important;
    }
    
    html body section#reports div.container div.reports-content div.report-image div.placeholder-image {
        margin: 0 !important;
        padding: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        height: 280px !important;
    }
    
    html body section.reports div.container div.reports-content div.report-image {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Contact page header styles - FINAL */
    .contact-page-content h1 {
        margin-top: 1.5rem !important;
        padding-top: 1rem !important;
    }
    
    .contact-page-main {
        padding-top: 1rem !important;
    }
    
    html body section.contact div.contact-container div.contact-content h2 {
        margin-top: 4rem !important;
        padding-top: 1.5rem !important;
    }
    .container {
        padding: 0 0.5rem !important;
    }
    
    .reports .reports-content .report-image .placeholder-image {
        margin: 0 !important;
        padding: 0 !important;
        height: 280px !important;
    }
    
    .reports .container .reports-content .report-image {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    section.reports .report-image .placeholder-image {
        margin: 0 !important;
        padding: 0 !important;
        height: 280px !important;
    }
    
    .mobile-button {
        margin: 0.1rem auto !important;
    }
    
    .reports-content .mobile-button {
        margin: 0.1rem auto !important;
    }
    
    .report-insights {
        margin-top: 0.5rem !important;
    }
    
    #reports .report-image .placeholder-image {
        margin: 0 !important;
    }
    
    #reports .mobile-button {
        margin: 0.1rem auto !important;
    }
    
    #reports .report-insights {
        margin-top: 0.5rem !important;
    }
    
    #reports .container {
        padding: 0 0.5rem !important;
    }
    
    .contact .contact-container .contact-content h2,
    .contact .contact-content h2,
    section.contact h2 {
        margin-top: 3.5rem !important;
        padding-top: 1rem !important;
    }
    
    /* Mobile styles confirmed working */
    
    .reports-content {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Fix product cards min-width for mobile */
    .product-grid .product-card {
        min-width: unset;
        width: 100%;
        max-width: 100%;
    }
    
    /* Hero optimizations - duplicate for safety */
    .hero {
        flex-direction: column-reverse !important;
        text-align: center !important;
        padding: var(--spacing-3xl) var(--spacing-md) !important;
        min-height: auto !important;
        gap: var(--spacing-sm) !important;
    }
    
    .hero-title {
        font-size: 2.8rem !important;
        margin-bottom: var(--spacing-lg) !important;
    }
    
    .hero-subtitle {
        font-size: 1.3rem !important;
        margin-bottom: var(--spacing-xl) !important;
    }
    
    .hero-content {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .hero-content h1 {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Homepage section headers - mobile - FINAL */
    .contact-content h2 {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .overview-header h2 {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0.8rem !important;
    }
    
    /* Adjust section spacing */
    .overview {
        padding: 0.5rem 0 !important;
    }
    
    .overview-header {
        margin-bottom: 1rem !important;
    }
    
    .overview-sections {
        margin-top: 1rem !important;
    }
    
    .contact {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact .container {
        padding: 0.5rem 1rem !important;
    }
    
    .contact-container {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .contact-content {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Fix section spacing - minimize white space - WITH COLORS */
    .pricing {
        margin-bottom: 0 !important;
        padding-bottom: 2rem !important;
    }
    
    .contact {
        margin: 0 !important;
        padding: 1rem 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 300px !important;
    }
    
    .contact .container {
        margin: 0 !important;
        padding: 0.2rem 1rem !important;
    }
    
    .contact-container {
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        width: 100% !important;
    }
    
    html body section.contact div.container div.contact-container div.contact-content {
        margin: 0 !important;
        padding: 0.5rem !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        min-height: 200px !important;
    }
    
    html body section.contact div.container div.contact-container div.contact-content h2 {
        margin: 0 !important;
        padding: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        width: 100% !important;
        transform: translateY(0) !important;
        position: relative !important;
        top: 0 !important;
    }
    
    .contact-description {
        margin: 0 !important;
        padding: 0.5rem !important;
        margin-bottom: 0.8rem !important;
        width: 100% !important;
    }
    
    .contact-form {
        padding: 0.5rem !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .email-input-container {
        margin-bottom: 0.5rem !important;
    }
    
    .submit-button {
        /* No additional mobile styles needed */
    }
    
    .contact-content h2 {
        margin: 0 !important;
        padding: 0 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .contact-description {
        margin: 0 !important;
        padding: 0 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero-content p {
        margin-top: 0 !important;
    }
    
    .hero-visual {
        height: auto !important;
        margin-bottom: 0 !important;
        width: 100% !important;
    }
    
    .hero-image {
        width: 100% !important;
        max-width: none !important;
        height: 400px !important;
    }
}

