:root {
    --primary-color: #000;
    --secondary-color: #333;
    --background-color: #fff;
    --accent-color: #0070f3;
    --translating-color: #5856D6;
}

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

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
    padding-top: 5rem;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 0;
}

/* Translation Container */
.translation-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.translation-status {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--translating-color);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    opacity: 0;
    animation: fade-in-out 9s infinite;
}

.translation-status .status-text {
    color: #FFF !important;
}

.translation-title {
    position: relative;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    padding: 20px 30px;
    border-radius: 10px;
    overflow: hidden;
}

.translation-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--translating-color);
    border-radius: 10px;
    opacity: 0;
    animation: border-pulse 9s infinite;
}

.translation-title span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 30px 30px;
    width: 100%;
    text-align: center;
}

.translation-title span.active {
    position: relative;
    opacity: 1;
}

.text-english {
    animation: show-english 9s infinite;
}

.text-spanish {
    animation: show-spanish 9s infinite;
    position: relative;
    left: 0;
    right: 0;
}

.text-french {
    animation: show-french 9s infinite;
}

@keyframes fade-in-out {
    0%, 100% { opacity: 0; }
    3%, 30% { opacity: 1; }
    33%, 36% { opacity: 1; }
    39%, 66% { opacity: 1; }
    69%, 96% { opacity: 0; }
}

@keyframes border-pulse {
    0%, 100% { opacity: 0; }
    3%, 30% { opacity: 1; }
    33%, 36% { opacity: 1; }
    39%, 66% { opacity: 1; }
    69%, 96% { opacity: 0; }
}

@keyframes show-english {
    0%, 30% { opacity: 1; z-index: 3; }
    33%, 66% { opacity: 0; z-index: 1; }
    69%, 100% { opacity: 1; z-index: 3; }
}

@keyframes show-spanish {
    0%, 30% { opacity: 0; z-index: 1; }
    33%, 66% { opacity: 1; z-index: 3; }
    69%, 100% { opacity: 0; z-index: 1; }
}

@keyframes show-french {
    0%, 30% { opacity: 0; z-index: 1; }
    33%, 66% { opacity: 0; z-index: 1; }
    69%, 100% { opacity: 1; z-index: 3; }
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Hero CTA */
.hero-cta {
    margin: 3rem auto 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.chrome-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.chrome-cta-button:hover::before {
    left: 100%;
}

.chrome-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.chrome-cta-button svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.chrome-cta-button:hover svg {
    transform: rotate(360deg);
}

.cta-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Compatible Section */
.compatible-section {
    margin-top: 2rem;
}

.compatible-section p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.app-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 1.5rem 0;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-item img {
    height: 40px;
    width: auto;
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

.logo-item span {
    font-size: 0.8rem;
    font-weight: 500;
}

.and-more {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        min-height: 85vh;
        padding: 4rem 0;
    }
    
    .translation-title {
        font-size: 4.2rem;
    }

    .hero .subtitle {
        font-size: 1.4rem;
        margin-bottom: 3.5rem;
    }
    
    .hero-cta {
        margin: 2.5rem auto 3.5rem;
        flex-direction: column;
    }
    
    .chrome-cta-button {
        font-size: 1.05rem;
        padding: 0.9rem 1.8rem;
    }

    .app-logos {
        gap: 1.8rem;
    }
    
    .logo-item img {
        height: 38px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 3rem 0;
    }
    
    .translation-title {
        font-size: 3.2rem;
        padding: 18px 25px;
    }

    .hero .subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
        max-width: 600px;
    }
    
    .hero-cta {
        margin: 2rem auto 3rem;
        flex-direction: column;
    }
    
    .chrome-cta-button {
        font-size: 1rem;
        padding: 0.85rem 1.6rem;
        gap: 0.6rem;
    }
    
    .chrome-cta-button svg {
        width: 20px;
        height: 20px;
    }
    
    .cta-badge {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .app-logos {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .logo-item img {
        height: 34px;
    }
    
    .logo-item span {
        font-size: 0.8rem;
    }
    
    .compatible-section p {
        font-size: 0.95rem;
    }
    
    .and-more {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 75vh;
        padding: 2.5rem 0;
    }
    
    .translation-title {
        font-size: 2.6rem;
        padding: 15px 20px;
    }

    .translation-status {
        top: -28px;
        font-size: 11px;
        padding: 4px 10px;
    }

    .hero .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        max-width: 500px;
    }
    
    .hero-cta {
        margin: 1.5rem auto 2.5rem;
        flex-direction: column;
    }
    
    .chrome-cta-button {
        font-size: 0.95rem;
        padding: 0.8rem 1.4rem;
        gap: 0.5rem;
        border-radius: 14px;
    }
    
    .chrome-cta-button svg {
        width: 18px;
        height: 18px;
    }
    
    .cta-badge {
        font-size: 0.75rem;
        padding: 0.15rem 0.5rem;
        border-radius: 10px;
    }

    .app-logos {
        gap: 1.2rem;
        flex-wrap: wrap;
        max-width: 300px;
        margin: 1.5rem auto;
    }
    
    .logo-item img {
        height: 30px;
    }
    
    .logo-item span {
        font-size: 0.75rem;
    }
    
    .compatible-section p {
        font-size: 0.9rem;
    }
    
    .and-more {
        font-size: 0.8rem;
    }
}

/* Features Section */
.features-section {
    padding: 3rem 0 8rem 0;
}

.feature-showcase {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.text-side {
    flex: 1;
    text-align: left;
}

.showcase-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.showcase-description {
    font-size: 1.25rem;
    color: var(--secondary-color);
    line-height: 1.6;
    max-width: 500px;
}

.video-side {
    flex: 1.5;
}

@media (max-width: 768px) {
    .x-video-side {
        display: none;
    }
}

.video-container {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    margin: 20px 0;
    max-width: 100%;
}

.window-header {
    background-color: #252525;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.window-buttons {
    display: flex;
    gap: 8px;
    margin-right: 16px;
}

.window-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff5f56;
}

.window-buttons span:nth-child(2) {
    background-color: #ffbd2e;
}

.window-buttons span:nth-child(3) {
    background-color: #27c93f;
}

.window-title {
    color: #8c8c8c;
    font-size: 0.9rem;
    font-family: monospace;
}

.video-frame {
    overflow: hidden;
    padding-top: 55%; /* 1056/1920 = 0.55 aspect ratio */
    position: relative;
}

.video-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive design for features section */
@media (max-width: 992px) {
    .features-section {
        padding: 6rem 0;
    }
    
    .feature-showcase {
        flex-direction: column-reverse;
        gap: 3rem;
    }
    
    .text-side {
        text-align: center;
    }
    
    .showcase-title {
        font-size: 3.2rem;
    }
    
    .showcase-description {
        margin: 0 auto;
        font-size: 1.2rem;
    }
    
    .video-container {
        transform: scale(1.1);
        max-width: 750px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 5rem 0;
    }
    
    .feature-showcase {
        gap: 2.5rem;
    }
    
    .showcase-title {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }
    
    .showcase-description {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .video-container {
        transform: scale(1.8);
        margin-bottom: 2rem;
        max-width: 650px;
    }
    
    .window-header {
        padding: 10px 14px;
    }
    
    .window-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 4rem 0;
    }
    
    .feature-showcase {
        gap: 2rem;
    }
    
    .showcase-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .showcase-description {
        font-size: 1rem;
        max-width: 400px;
    }
    
    .video-container {
        transform: scale(2.0);
        max-width: 100%;
        margin: 0 auto 2rem auto;
    }
    
    .window-header {
        padding: 8px 12px;
    }
    
    .window-buttons span {
        width: 10px;
        height: 10px;
    }
    
    .window-title {
        font-size: 0.8rem;
    }
}

/* Languages Section */
.languages-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #fff, #f8f9ff);
}

.languages-showcase {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.languages-showcase .text-side {
    flex: 1;
    text-align: left;
}

.languages-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.languages-description {
    font-size: 1.25rem;
    color: var(--secondary-color);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 3rem;
}

.languages-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.03));
    z-index: -1;
    border-radius: 3px;
}

.stat-label {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.languages-dropdown {
    flex: 1;
    display: flex;
    justify-content: center;
}

.dropdown-container {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
}

.dropdown-header {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-title {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.dropdown-content {
    max-height: 400px;
    overflow-y: auto;
}

.language-option {
    padding: 12px 16px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background-color: rgba(0, 112, 243, 0.05);
}

.language-option.selected {
    background-color: #000;
    color: white;
    font-weight: 500;
}

/* Responsive design for languages section */
@media (max-width: 992px) {
    .languages-showcase {
        flex-direction: column;
        gap: 3rem;
    }
    
    .languages-showcase .text-side {
        text-align: center;
        order: -1;
    }
    
    .languages-title {
        font-size: 3rem;
    }
    
    .languages-description {
        margin: 0 auto 3rem;
    }
    
    .languages-stats {
        justify-content: center;
    }
    
    .dropdown-container {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .languages-section {
        padding: 6rem 0;
    }
    
    .languages-title {
        font-size: 2.5rem;
    }
    
    .languages-description {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .languages-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .languages-section {
        padding: 4rem 0;
    }
    
    .languages-title {
        font-size: 2rem;
    }
    
    .languages-description {
        font-size: 1rem;
    }
    
    .languages-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-item {
        align-items: center;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #f8f9ff, #fff);
}

.benefits-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.card-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.04));
    transform: scale(1.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    color: var(--primary-color);
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Responsive design for benefits section */
@media (max-width: 992px) {
    .benefits-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .benefits-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 6rem 0;
    }
    
    .benefits-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 2rem;
    }
    
    .benefits-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .benefit-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 4rem 0;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .card-description {
        font-size: 1rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #fff, #f8f9ff);
}

.stats-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.stats-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 24px;
    z-index: -1;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.stat-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--secondary-color);
}

/* Responsive design for stats section */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .stats-title {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 6rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .stats-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .stats-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .stat-card {
        padding: 2.5rem 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 4rem 0;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    .stats-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #f8f9ff, #fff);
}

.comparison-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.comparison-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison-table-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.comparison-table th {
    padding: 2rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.feature-column {
    text-align: left !important;
    width: 40%;
}

.competitor-column {
    width: 30%;
    color: rgba(255, 255, 255, 0.9);
}

.bridgely-column {
    width: 30%;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.75rem 1.5rem;
    text-align: center;
    vertical-align: middle;
}

.feature-name {
    text-align: left !important;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.4;
}

.feature-detail {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 400;
    font-style: italic;
}

.competitor-value {
    background: rgba(239, 68, 68, 0.05);
}

.bridgely-value {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    position: relative;
}

.bridgely-value::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #10b981, #059669);
    border-radius: 0 2px 2px 0;
}

.status-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    display: inline-block;
}

.status-icon.positive {
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.status-icon.negative {
    filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.3));
}

.status-icon.limited {
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.status-icon.secure {
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.status-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.25rem;
    color: var(--secondary-color);
}

/* Responsive design for comparison table */
@media (max-width: 992px) {
    .comparison-section {
        padding: 6rem 0;
    }
    
    .comparison-title {
        font-size: 3rem;
    }
    
    .comparison-subtitle {
        font-size: 1.2rem;
    }
    
    .comparison-table th {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }
    
    .comparison-table td {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 5rem 0;
    }
    
    .comparison-header {
        margin-bottom: 3rem;
    }
    
    .comparison-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .comparison-subtitle {
        font-size: 1.1rem;
    }
    
    .comparison-table-container {
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .comparison-table th {
        padding: 1.25rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .comparison-table td {
        padding: 1.25rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .feature-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        padding: 4rem 0;
    }
    
    .comparison-title {
        font-size: 2rem;
    }
    
    .comparison-subtitle {
        font-size: 1rem;
    }
    
    .comparison-table-container {
        margin: 0 0.5rem;
        border-radius: 16px;
    }
    
    .comparison-table th {
        padding: 1rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .feature-name {
        font-size: 0.85rem;
    }
    
    .feature-detail {
        font-size: 0.75rem;
    }
    
    .status-icon {
        font-size: 1.2rem;
    }
    
    .status-text {
        font-size: 0.75rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #fff, #f8f9ff);
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Responsive design for FAQ section */
@media (max-width: 768px) {
    .faq-section {
        padding: 6rem 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.15rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
        margin: 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-answer p {
        margin: 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Email Section */
.email-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #f8f9ff, #fff);
}

.email-section .video-container {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.8);
    margin: 20px 0;
    max-width: 100%;
}

.email-section .video-frame {
    padding-top: 102%; /* 610/598 = 1.02 aspect ratio */
    position: relative;
}

.email-section .video-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* Workplace Section */
.workplace-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #fff, #f8f9ff);
}

.workplace-section .video-container {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(1.0);
    margin: 20px 0;
    max-width: 100%;
}

.workplace-section .video-frame {
    padding-top: 55%; /* 1056/1920 = 0.55 aspect ratio */
    position: relative;
}

.workplace-section .video-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* Translate Web Section */
.translate-web-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #f8f9ff, #fff);
}

.translate-web-section .video-container {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(1.0);
    margin: 20px 0;
    max-width: 100%;
}

.translate-web-section .video-frame {
    padding-top: 55%; /* Standard aspect ratio */
    position: relative;
}

.translate-web-section .video-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* Responsive adjustments for email, workplace and translate-web sections */
@media (max-width: 992px) {
    .email-section, .workplace-section, .translate-web-section {
        padding: 6rem 0;
    }
    
    .email-section .feature-showcase,
    .workplace-section .feature-showcase,
    .translate-web-section .feature-showcase {
        flex-direction: column;
        gap: 3rem;
    }
    
    .email-section .text-side,
    .workplace-section .text-side,
    .translate-web-section .text-side {
        text-align: center;
    }
    
    .email-section .video-container {
        transform: scale(0.9);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .workplace-section .video-container {
        transform: scale(1.0);
        max-width: 750px;
        margin: 0 auto;
    }

    .translate-web-section .video-container {
        transform: scale(1.0);
        max-width: 750px;
        margin: 0 auto;
    }

    .slack-showcase {
        flex-direction: column-reverse !important;
    }
}

@media (max-width: 768px) {
    .email-section, .workplace-section, .translate-web-section {
        padding: 5rem 0;
    }
    
    .email-section .feature-showcase,
    .workplace-section .feature-showcase,
    .translate-web-section .feature-showcase {
        gap: 2.5rem;
    }
    
    .email-section .showcase-title,
    .workplace-section .showcase-title,
    .translate-web-section .showcase-title {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }
    
    .email-section .showcase-description,
    .workplace-section .showcase-description,
    .translate-web-section .showcase-description {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .email-section .video-container {
        margin-top: 2rem;
        transform: scale(1.3);
        max-width: 500px;
    }
    
    .workplace-section .video-container {
        transform: scale(1.3);
        max-width: 600px;
        margin: 2rem 0;
    }

    .translate-web-section .video-container {
        transform: scale(1.3);
        max-width: 600px;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .email-section, .workplace-section, .translate-web-section {
        padding: 4rem 0;
    }
    
    .email-section .feature-showcase,
    .workplace-section .feature-showcase,
    .translate-web-section .feature-showcase {
        gap: 2rem;
    }
    
    .email-section .showcase-title,
    .workplace-section .showcase-title,
    .translate-web-section .showcase-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .email-section .showcase-description,
    .workplace-section .showcase-description,
    .translate-web-section .showcase-description {
        font-size: 1rem;
        max-width: 400px;
    }
    
    .email-section .video-container {
        transform: scale(1.3);
        max-width: 100%;
    }
    
    .workplace-section .video-container {
        transform: scale(1.3);
        max-width: 100%;
    }

    .translate-web-section .video-container {
        transform: scale(1.3);
        max-width: 100%;
    }
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #f8f9ff, #fff);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: var(--secondary-color);
}

.cta-button.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.business-contact {
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
}

.business-label {
    font-size: 0.75rem;
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    display: block;
}

.business-email {
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.business-email:hover {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

/* Responsive design for CTA section */
@media (max-width: 768px) {
    .cta-section {
        padding: 6rem 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .business-contact {
        padding: 0.875rem 1.25rem;
    }
    
    .business-email {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        margin-bottom: 2.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .business-contact {
        padding: 0.875rem 1.25rem;
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .business-email {
        font-size: 0.9rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
}

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

.logo-img {
    height: 60px;
    width: auto;
}

.navigation {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-button {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.login-button {
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-navigation {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

.mobile-contact-button {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.mobile-contact-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.mobile-login-button {
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    text-align: center;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-login-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive header */
@media (max-width: 992px) {
    .header {
        width: 95%;
        top: 1rem;
    }
    
    .header-container {
        padding: 0.6rem 1.5rem;
        position: relative;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .navigation {
        gap: 1rem;
        position: static;
        transform: none;
        flex: 1;
        justify-content: center;
        margin: 0 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.7rem;
    }
    
    .language-selector {
        margin: 0 0.5rem;
    }
    
    .language-button {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .flag-icon {
        width: 18px;
        height: 13px;
    }
    
    .contact-button {
        font-size: 0.9rem;
        padding: 0.65rem 1.3rem;
    }
}

@media (max-width: 768px) {
    .header {
        width: 96%;
        top: 0.75rem;
    }
    
    .header-container {
        padding: 0.6rem 1.5rem;
        justify-content: space-between;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .navigation {
        display: none;
    }
    
    .language-selector {
        display: none;
    }
    
    .contact-button {
        display: none;
    }
    
    .login-button {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    body {
        padding-top: 5rem;
    }
}

@media (max-width: 480px) {
    .header {
        width: 96%;
        top: 0.5rem;
    }
    
    .header-container {
        padding: 0.5rem 1.25rem;
    }
    
    .logo-img {
        height: 34px;
    }
    
    body {
        padding-top: 4.5rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #fff, #f8f9ff);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-left {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.footer-description {
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-copyright {
    margin: 0;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.03);
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Responsive footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        gap: 1rem;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* Language Selector */
.language-selector {
    position: relative;
    margin: 0 0.5rem;
}

.language-dropdown {
    position: relative;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.language-button:hover {
    border-color: var(--accent-color);
    background-color: rgba(0, 112, 243, 0.05);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.language-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 140px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-dropdown.active .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 0.9rem;
}

.language-option:hover {
    background-color: rgba(0, 112, 243, 0.05);
}

.language-option.active {
    background-color: rgba(0, 112, 243, 0.1);
    color: var(--accent-color);
    font-weight: 500;
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

/* Mobile Language Selector */
.mobile-language-selector {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-language-dropdown {
    position: relative;
}

.mobile-language-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--primary-color);
}

.mobile-language-button:hover {
    border-color: var(--accent-color);
    background-color: rgba(0, 112, 243, 0.05);
}

.mobile-language-button .flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.mobile-language-text {
    flex: 1;
    text-align: left;
    margin-left: 0.75rem;
    font-weight: 500;
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.mobile-language-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-language-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.mobile-language-dropdown.active .mobile-language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-language-options .language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 1rem;
    border-radius: 0;
    background-color: transparent;
}

.mobile-language-options .language-option:hover {
    background-color: rgba(0, 112, 243, 0.05);
}

.mobile-language-options .language-option.active {
    background-color: rgba(0, 112, 243, 0.1);
    color: var(--accent-color);
    font-weight: 500;
}

.mobile-language-options .language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.mobile-language-options .language-option:last-child {
    border-radius: 0 0 8px 8px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: var(--primary-color);
}

.privacy-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: center;
}

.last-updated {
    background: rgba(0, 112, 243, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 112, 243, 0.1);
}

.last-updated strong {
    color: var(--accent-color);
    font-weight: 600;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
    letter-spacing: -0.01em;
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.privacy-section ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.privacy-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.privacy-section li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.contact-info {
    background: rgba(16, 185, 129, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #10b981;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info strong {
    color: var(--primary-color);
}

.highlight-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.highlight-box p {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}

/* Privacy Policy Responsive Design */
@media (max-width: 768px) {
    .privacy-content {
        padding: 3rem 1.5rem;
    }
    
    .privacy-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .privacy-section h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 1rem;
    }
    
    .last-updated,
    .contact-info,
    .highlight-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 2rem 1rem;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }
    
    .last-updated,
    .contact-info,
    .highlight-box {
        padding: 1.25rem;
    }
}


