/* Landing Page Styles for Xcompras */
/* Inspired by DoorDash's modern design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    height: auto;
    line-height: 1.2;
    box-sizing: border-box;
}

.btn-primary {
    background: linear-gradient(135deg, #671a24 0%, #8B2635 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 26, 36, 0.3);
}

.btn-outline {
    background: transparent;
    color: #671a24;
    border: 2px solid #671a24;
    height: auto;
    line-height: 1.2;
    padding: 12px 24px;
}

.btn-outline:hover {
    background: #671a24;
    color: white;
}

.btn-secondary {
    background: #FF8C42;
    color: white;
}

.btn-secondary:hover {
    background: #e67e3a;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.nav-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    text-align: center;
    min-height: 40px;
    background-color: transparent;
    width: auto;
    height: auto;
    position: relative;
    flex-shrink: 0;
}

.nav-logo::before,
.nav-logo::after {
    display: none !important;
    content: none !important;
}

.nav-logo * {
    font-size: 0 !important;
    color: transparent !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
}

.logo-img {
    max-width: 150px !important;
    height: auto !important;
    transition: all 0.3s ease;
    display: block !important;
    object-fit: contain;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #671a24;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    margin: 0 1rem;
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #671a24;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
    margin-left: auto;
    margin-right: 0;
}

.nav-actions .btn {
    padding: 8px 16px;
    font-size: 14px;
    min-height: 36px;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(103, 26, 36, 0.1);
    color: #671a24;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
    position: relative;
}

.nav-icon:hover {
    background: rgba(103, 26, 36, 0.2);
    transform: scale(1.1);
}

.nav-icon i {
    font-size: 16px;
    color: #671a24;
}

.lang-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #671a24;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 8px;
    min-width: 16px;
    text-align: center;
    line-height: 1;
}

/* Language Selector (match main site) */
.language-selector {
    position: fixed;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-selector::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    z-index: 1;
}

.language-selector::after {
    content: '';
    position: absolute;
    top: -9px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #e0e0e0;
    z-index: 0;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 8px;
    margin: 0 8px;
}

.language-option:hover {
    background-color: #f8f9fa;
}

.language-option .flag {
    font-size: 20px;
}

.language-option .lang-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #F9ECEC 0%, #FFF5F5 100%);
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #671a24;
    margin-bottom: 2rem;
    font-size: 14px;
}

.hero-badge i {
    color: #FF8C42;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: #671a24;
    background: linear-gradient(135deg, #671a24 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #671a24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-actions .app-store-btn,
.hero-actions .google-play-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-actions .app-store-btn img,
.hero-actions .google-play-btn img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.hero-actions .app-store-btn:hover,
.hero-actions .google-play-btn:hover {
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.feature-item i {
    color: #4CAF50;
    font-size: 16px;
}

.hero-image {
    position: relative;
    text-align: center;
}

.phone-mockup {
    position: relative;
    display: inline-block;
}

.app-screenshot {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #671a24;
}

.card-1 {
    top: 20px;
    left: -60px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -80px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20px;
    left: -40px;
    animation-delay: 2s;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #671a24;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F9ECEC 0%, #FFF5F5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 36px;
    color: #671a24;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #671a24;
    z-index: 1;
}

.step-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #671a24;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content {
    text-align: left;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-icon i {
    font-size: 36px;
    color: #671a24;
}

.step-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    max-width: 400px;
}

/* App Screenshots */
.app-screenshots {
    padding: 80px 0;
    background: white;
}

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

.screenshot-item {
    text-align: center;
}

.screenshot-img {
    width: 100%;
    max-width: 250px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.screenshot-caption h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.screenshot-caption p {
    color: #666;
    font-size: 0.9rem;
}

/* Categories Section */
.categories { padding: 80px 0; background: #f8f9fa; }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.category-card {
    background: white; padding: 2rem; border-radius: 16px; text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1); transition: all 0.3s ease; border: 2px solid transparent;
}
.category-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: #671a24; }
.category-icon { 
    width: 80px; 
    height: 80px; 
    background: linear-gradient(135deg, #F9ECEC 0%, #FFF5F5 100%); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 1.5rem; 
}

.category-icon i {
    font-size: 36px;
    color: #671a24;
}
.category-card h3 { color: #333; margin-bottom: 0.5rem; }
.category-card p { color: #666; font-size: 0.9rem; }

/* Featured Products */
.featured-products { padding: 80px 0; background: white; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.product-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.08); transition: all 0.3s ease; border: 1px solid #f0f0f0; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.product-image { height: 220px; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.product-card:hover .product-image img { transform: scale(1.1); }
.product-info { padding: 1rem 1.25rem; }
.product-title { font-weight: 600; color: #333; margin-bottom: 0.25rem; }
.product-price { color: #671a24; font-weight: 700; }

/* Markets Section */
.markets { padding: 80px 0; background: white; }
.markets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 1.5rem; }
.market-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.08); transition: all 0.3s ease; border: 1px solid #f0f0f0; }
.market-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.market-image img { width: 100%; height: 220px; object-fit: cover; }
.market-info { padding: 1rem 1.25rem; }
.market-info h3 { color: #333; margin-bottom: 0.25rem; }
.market-rating { color: #FF8C42; font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* Product Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.product-modal { max-width: 900px; width: 95%; }

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    z-index: 2001;
    background: none;
    border: none;
    padding: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #333;
    background: none;
}

/* Download Modal Styles */
.download-modal {
    max-width: 500px;
    width: 90%;
    padding: 2rem;
}

.download-modal-content h2 {
    text-align: center;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.download-modal-content > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.platform-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.app-store-badge,
.google-play-badge {
    display: inline-block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.app-store-badge img,
.google-play-badge img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.app-store-badge:hover,
.google-play-badge:hover {
    transform: translateY(-2px);
}

.app-store-badge:focus,
.google-play-badge:focus {
    outline: 2px solid #671a24;
    outline-offset: 4px;
    border-radius: 8px;
}

.modal-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e1e5e9;
}

.system-requirements {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.system-requirements i {
    color: #671a24;
}

/* Responsive Design for Download Modal */
@media (max-width: 768px) {
    .download-modal {
        max-width: 95%;
        padding: 1.5rem;
    }
    
    .app-store-badge img,
    .google-play-badge img {
        height: 50px;
    }
    
    .platform-options {
        gap: 1rem;
    }
}
.product-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.product-image-large { width: 100%; height: 320px; overflow: hidden; background-color: #f8f9fa; display: flex; align-items: center; justify-content: center; position: relative; border-radius: 12px; }
.product-image-large img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; border-radius: 12px; }
.product-image-placeholder-large { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: white; text-align: center; padding: 40px; }
.product-image-placeholder-large i { font-size: 72px; margin-bottom: 24px; opacity: 0.9; }
.product-image-placeholder-large span { font-size: 18px; font-weight: 600; line-height: 1.3; opacity: 0.9; }
.product-info-large h2 { font-size: 1.8rem; font-weight: 700; color: #333; margin-bottom: 1rem; }
.product-price-large { font-size: 1.8rem; font-weight: 700; color: #FF8C42; margin-bottom: 0.5rem; }
.product-category-large { display: inline-block; background: #f8f9fa; color: #666; padding: 4px 12px; border-radius: 20px; font-size: 0.9rem; margin-bottom: 0.5rem; }
.product-shop-large { color: #671a24; font-weight: 600; margin-bottom: 1rem; }
.product-description { color: #666; line-height: 1.6; margin-bottom: 2rem; }
.product-actions { display: flex; gap: 1rem; }
@media (max-width: 768px) { .product-details { grid-template-columns: 1fr; gap: 1rem; } .product-modal { max-width: 95%; } }

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #FF8C42;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #671a24;
    font-size: 20px;
}

.author-info h4 {
    color: #333;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #671a24 0%, #8B2635 100%);
    color: white;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.download-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.download-features {
    margin-bottom: 2rem;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.download-feature i {
    color: #4CAF50;
}

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

.download-buttons .app-store-btn,
.download-buttons .google-play-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.download-buttons .app-store-btn img,
.download-buttons .google-play-btn img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.download-buttons .app-store-btn:hover,
.download-buttons .google-play-btn:hover {
    transform: translateY(-2px);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 12px;
    font-weight: 400;
}

.btn-store {
    font-size: 18px;
    font-weight: 600;
}

.download-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.download-info i {
    margin-right: 8px;
}

.download-image {
    text-align: center;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #333;
    overflow: hidden;
}

.qr-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.qr-placeholder i {
    font-size: 64px;
    color: #671a24;
    margin-bottom: 1rem;
}

.qr-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin-bottom: 0;
    color: #333;
}

.faq-question i {
    color: #671a24;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    color: #333;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #671a24;
    margin-bottom: 0.5rem;
}

.cta-stat-label {
    color: #666;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

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

.footer-logo .logo-text {
    color: white;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF8C42;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #FF8C42;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF8C42;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
}

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

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #FF8C42;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        gap: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        margin: 0 0.5rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
        margin-right: 0;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .nav-icon {
        margin-left: 0.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        padding: 0 1rem;
    }
    
    .step-line {
        display: none;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
