@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --accent-orange: #ffa552;
    --light-orange: #ffb872;
    --pale-orange: #ffd4a3;
    --dark-bg: #0a0a0f;
    --darker-bg: #050507;
    --card-bg: rgba(255, 107, 53, 0.03);
    --card-hover: rgba(255, 107, 53, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a8a8b8;
    --border-color: rgba(255, 107, 53, 0.15);
    --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --secondary-gradient: linear-gradient(135deg, #ff8c42 0%, #ffa552 100%);
    --glow-orange: 0 0 40px rgba(255, 107, 53, 0.4);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.bg-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(255, 140, 66, 0.03) 0%, transparent 50%),
                var(--dark-bg);
}

.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
}

.orb1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.orb3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-100px, 100px) scale(0.9); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

nav.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 15, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links-hide-mobile {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-generate-btn {
    padding: 0.6rem 1.5rem;
    background: var(--primary-gradient);
    color: white !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.nav-generate-btn::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--light-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-orange);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--card-bg);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 2rem;
    background: rgba(255, 107, 53, 0.02);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    background: var(--card-hover);
    border-color: var(--primary-orange);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    color: white;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    padding: 5rem 2rem;
    background: rgba(255, 107, 53, 0.02);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    aspect-ratio: 1;
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-orange);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

/* Use Cases Section */
.use-cases {
    padding: 5rem 2rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 66, 0.03));
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.use-case-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.use-case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.use-case-card ul {
    list-style: none;
    color: var(--text-secondary);
}

.use-case-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.use-case-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

/* Models Section */
.models {
    padding: 5rem 2rem;
    background: rgba(255, 107, 53, 0.02);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.model-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.model-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    transition: all 0.5s;
    transform: translate(-50%, -50%);
}

.model-card:hover::after {
    width: 300px;
    height: 300px;
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.model-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    background: var(--primary-gradient);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.model-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.model-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.model-features {
    list-style: none;
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.model-features li {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.model-features li::before {
    content: '✓';
    color: var(--primary-orange);
    font-weight: bold;
}

/* FAQ Section */
.faq {
    padding: 5rem 2rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-orange);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--card-hover);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-arrow {
    color: var(--primary-orange);
    transition: transform 0.3s;
    font-size: 1.2rem;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Stats Section */
.stats {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1), transparent);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links-hide-mobile {
        display: none !important;
    }
    
    .nav-links {
        gap: 0;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .gallery-grid,
    .use-cases-grid,
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    margin-right: 15px; 
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.flag-icon {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.current-lang {
    font-size: 14px;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: #333333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #f0f0f0;
    color: #000000;
}

.dropdown-item .flag-icon {
    flex-shrink: 0;
}

.dropdown-item .lang-name {
    flex: 1;
}

/* Scrollbar styles for dropdown menu */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .language-switcher {
        margin-right: 12px;
    }
}

@media (max-width: 768px) {
    .language-switcher {
        margin-right: 8px;
    }
    
    .dropdown-toggle {
        padding: 6px 10px;
        gap: 6px;
    }
    
    .flag-icon {
        width: 20px;
        height: 15px;
    }
    
    .current-lang {
        display: none;
    }
    
    .dropdown-arrow {
        font-size: 8px;
    }
    
    .dropdown-menu {
        right: -20px; 
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        margin-right: 6px;
    }
    
    .dropdown-toggle {
        padding: 5px 8px;
    }
    
    .dropdown-arrow {
        display: none;
    }
    
    .dropdown-menu {
        right: -10px;
        min-width: 140px;
        padding: 6px;
    }
    
    .dropdown-item {
        padding: 8px 10px;
        font-size: 13px;
    }
}

/* About Page Styles - Dark Theme with Orange Accent */

/* Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.1) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 1;
}

.about-subtitle {
    font-size: 20px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
    color: #ccc;
    position: relative;
    z-index: 1;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #0a0a0a;
    color: #fff;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #ff6f00;
    background: linear-gradient(135deg, #ff6f00 0%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 20px;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 20px 40px rgba(255, 111, 0, 0.2));
}

/* Story/Timeline Section */
.story-section {
    padding: 80px 0;
    background: #111111;
    color: #fff;
    overflow: hidden;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6f00 0%, #ff9500 100%);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ff6f00 0%, #ff9500 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) {
    flex-direction: row;
}

.timeline-content {
    width: calc(50% - 60px);
    padding: 20px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 111, 0, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    text-align: left;
}

.timeline-content:hover {
    border-color: #ff6f00;
    box-shadow: 0 5px 20px rgba(255, 111, 0, 0.2);
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6f00 0%, #ff9500 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
    z-index: 2;
    white-space: nowrap;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.timeline-content p {
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #0a0a0a;
    color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2a2a2a;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.2);
    border-color: #ff6f00;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: grayscale(0.3);
}

.value-card:hover .value-icon {
    filter: grayscale(0);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff6f00;
}

.value-card p {
    color: #aaa;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #111111;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 18px;
    margin-bottom: 50px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6f00 0%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
    background: #0a0a0a;
    color: #fff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tech-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6f00 0%, #ff9500 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 111, 0, 0.2);
    border-color: #ff6f00;
}

.tech-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.tech-card:hover img {
    filter: brightness(1);
}

.tech-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff6f00;
}

.tech-card p {
    color: #aaa;
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.1) 0%, transparent 60%);
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
    color: #ccc;
    position: relative;
    z-index: 1;
}

.contact-cta .btn {
    padding: 15px 40px;
    font-size: 16px;
    background: linear-gradient(135deg, #ff6f00 0%, #ff9500 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Additional Dark Theme Styles */
body {
    background: #0a0a0a;
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6f00 0%, #ff9500 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff9500 0%, #ff6f00 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-title {
        font-size: 36px;
    }
    
    .about-subtitle {
        font-size: 18px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-content {
        width: 100%;
        text-align: left !important;
        margin: 0 !important;
    }
    
    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Emoji Placeholder Styles */

/* Mission Section Emoji */
.mission-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoji-placeholder {
    font-size: 200px;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(255, 111, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Technology Section Emoji */
.tech-emoji {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-emoji {
    transform: scale(1.2) rotate(10deg);
}

/* Additional styling for better emoji display */
.value-icon,
.tech-emoji,
.emoji-placeholder {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Make emojis more prominent in dark theme */
.tech-card .tech-emoji {
    filter: contrast(1.2) brightness(1.1);
}

.mission-section .emoji-placeholder {
    filter: contrast(1.2) brightness(1.1) drop-shadow(0 20px 40px rgba(255, 111, 0, 0.3));
}

/* Responsive adjustments for emojis */
@media (max-width: 768px) {
    .emoji-placeholder {
        font-size: 150px;
    }
    
    .tech-emoji {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .emoji-placeholder {
        font-size: 120px;
    }
    
    .tech-emoji {
        font-size: 50px;
    }
}

/* Privacy Policy Page Styles - Dark Theme with Orange Accent */

/* Hero Section */
.privacy-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 111, 0, 0.08) 0%, transparent 70%);
}

.privacy-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.privacy-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.last-updated {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 111, 0, 0.2);
    border: 1px solid #ff6f00;
    border-radius: 20px;
    font-size: 14px;
    color: #ff9500;
    position: relative;
    z-index: 1;
}

/* Introduction Section */
.privacy-intro {
    padding: 60px 0;
    background: #0a0a0a;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-icon {
    font-size: 80px;
    filter: drop-shadow(0 10px 20px rgba(255, 111, 0, 0.3));
}

.intro-text {
    flex: 1;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #bbb;
    margin: 0;
}

/* Privacy Sections */
.privacy-section {
    padding: 60px 0;
    background: #111111;
}

.privacy-section.alt-bg {
    background: #0a0a0a;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6f00 0%, #ff9500 100%);
}

/* Privacy Grid */
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.privacy-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    border-color: #ff6f00;
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.2);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.privacy-card h3 {
    color: #ff6f00;
    font-size: 20px;
    margin-bottom: 20px;
}

.privacy-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-card li {
    color: #aaa;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.privacy-card li::before {
    content: '•';
    color: #ff6f00;
    position: absolute;
    left: 0;
}

/* Use Grid */
.use-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.use-item {
    text-align: center;
    padding: 20px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.use-item:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
}

.use-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.use-item h3 {
    color: #ff6f00;
    font-size: 18px;
    margin-bottom: 10px;
}

.use-item p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

/* Protection Content */
.protection-content {
    max-width: 800px;
    margin: 0 auto;
}

.protection-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.protection-item:hover {
    background: rgba(26, 26, 26, 0.8);
    box-shadow: 0 5px 20px rgba(255, 111, 0, 0.1);
}

.protection-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.protection-text h3 {
    color: #ff6f00;
    font-size: 20px;
    margin-bottom: 10px;
}

.protection-text p {
    color: #aaa;
    line-height: 1.6;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.right-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    border-left: 3px solid #ff6f00;
    transition: all 0.3s ease;
}

.right-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 111, 0, 0.2);
}

.right-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.right-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

/* Cookies Section */
.cookies-content {
    max-width: 900px;
    margin: 0 auto;
}

.cookies-intro {
    text-align: center;
    margin-bottom: 40px;
}

.cookie-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.cookies-intro p {
    color: #bbb;
    font-size: 16px;
    line-height: 1.6;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cookie-type {
    background: rgba(26, 26, 26, 0.6);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.cookie-type:hover {
    border-color: #ff6f00;
    background: rgba(26, 26, 26, 0.9);
}

.cookie-type h3 {
    color: #ff6f00;
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-type p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

/* Third Party Grid */
.third-party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.third-party-item {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.third-party-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6f00 0%, #ff9500 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.third-party-item:hover::before {
    transform: scaleX(1);
}

.third-party-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.2);
}

.tp-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.third-party-item h3 {
    color: #ff6f00;
    font-size: 20px;
    margin-bottom: 15px;
}

.third-party-item p {
    color: #aaa;
    line-height: 1.6;
}

/* Contact Section */
.privacy-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    color: #bbb;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 111, 0, 0.1);
    border: 1px solid #ff6f00;
    border-radius: 30px;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 111, 0, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 24px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* General Body Styles */
body {
    background: #0a0a0a;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-title {
        font-size: 36px;
    }
    
    .privacy-subtitle {
        font-size: 18px;
    }
    
    .intro-content {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-icon {
        font-size: 60px;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .use-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .protection-item {
        flex-direction: column;
        text-align: center;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 100px 0 40px;
    }
    
    .privacy-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .privacy-section {
        padding: 40px 0;
    }
}