/* Global Styles */
:root {
    --primary-color: #4355db;
    --primary-dark: #3544b0;
    --secondary-color: #6c63ff;
    --accent-color: #00c2ff;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.button.primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.button.primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button.secondary:hover {
    background-color: rgba(67, 85, 219, 0.05);
}

.button.large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    background-color: var(--background-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo img {
    height: 2.5rem;
    margin-right: 0.75rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.language-selector a {
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
}

.language-selector a.active {
    background-color: var(--primary-color);
    color: white;
}

.language-selector a:not(.active):hover {
    background-color: var(--background-alt);
}

.language-selector-footer {
    display: flex;
    gap: 1rem;
}

.language-selector-footer a {
    color: var(--text-light);
    font-size: 0.875rem;
}

.language-selector-footer a.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.compatibility {
    margin-top: 2rem;
}

.compatibility p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.partner-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.partner-logos img {
    height: 2rem;
    opacity: 0.8;
    transition: var(--transition);
}

.partner-logos img:hover {
    opacity: 1;
}

/* Features Section */
.features {
    background-color: var(--background-alt);
    padding: 6rem 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature-icon {
    background-color: rgba(67, 85, 219, 0.1);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 2rem;
    height: 2rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background-color: var(--border-color);
}

.step-number {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.demo-image {
    width: 100%;
    display: block;
}

/* Compatibility Section */
.compatibility-section {
    background-color: var(--background-alt);
    padding: 6rem 1.5rem;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    flex: 1;
    max-width: 350px;
    transition: var(--transition);
}

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

.service-card img {
    height: 4rem;
    margin-bottom: 1.5rem;
}

/* Privacy Section */
.privacy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.privacy-content {
    flex: 1;
}

.privacy-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.privacy-features {
    list-style: none;
    margin: 2rem 0;
}

.privacy-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.privacy-features i {
    color: var(--success-color);
    font-size: 1.25rem;
    margin-right: 1rem;
}

.text-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.text-link:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-alt);
    padding: 6rem 1.5rem;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    min-width: 350px;
    flex: 1;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-info .name {
    font-weight: 600;
}

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

/* FAQ Section */
.faq {
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.faq-item {
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--box-shadow);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 6rem 1.5rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
}

.cta-section .button.primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-section .button.primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: var(--background-alt);
    padding: 4rem 1.5rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 2.5rem;
    margin-right: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.link-group a {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.link-group a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 2rem auto 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.mobile-menu-toggle:focus {
    outline: none;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero, .privacy {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-content, .privacy-content {
        max-width: 100%;
    }
    
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    nav {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .language-selector {
        order: 2;
        margin-left: 0;
    }
    
    .cta-button {
        order: 1;
    }
    
    .steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .language-selector {
        margin: 0.5rem 0;
    }
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    nav {
        padding: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--background-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 0.8rem 0;
        font-size: 1.2rem;
    }
    
    .language-selector {
        margin-left: 0;
        margin-top: 1.5rem;
    }
    
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .overlay.active {
        display: block;
    }
    
    /* Adjust the layout of the navigation items */
    nav {
        flex-wrap: wrap;
    }
    
    .logo {
        flex: 1;
    }
    
    .cta-button {
        margin-left: auto;
        margin-right: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 3rem 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .button {
        width: 100%;
        text-align: center;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .logo img {
        height: 2rem;
    }
}

/* Legal Pages */
.legal-page {
    padding: 4rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.legal-content h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.legal-content .contact-list {
    list-style: none;
    margin-left: 0;
    padding: 1.5rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
}

.legal-content .contact-list li {
    margin-bottom: 0.25rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Report Preview Section */
.report-preview {
    padding: 80px 20px;
    background: var(--background-light);
}

.report-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.highlight-item {
    text-align: center;
    min-width: 200px;
}

.highlight-number {
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.highlight-text {
    font-size: 1.1em;
    color: var(--text-color);
}

.report-samples {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.report-carousel {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.report-slide {
    display: none;
    animation: fade 0.5s ease-in-out;
}

.report-slide.active {
    display: block;
}

.report-slide img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slide-caption {
    text-align: center;
    margin-top: 20px;
}

.slide-caption h4 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.slide-caption p {
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-controls button {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.carousel-controls button:hover {
    background: var(--primary-color-dark);
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .report-highlights {
        gap: 20px;
    }
    
    .highlight-item {
        min-width: 150px;
    }
    
    .highlight-number {
        font-size: 2.5em;
    }
} 