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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0) !important;
    background: rgb(0, 0, 0) !important;
}

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

/* Typography */
h1, h2, h3 {
    color: rgb(244, 136, 71);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: rgb(255, 255, 255);
}

/* Header and Navigation */
header {
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(244, 136, 71, 0.2);
}

nav {
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 53px;
    width: auto;
    object-fit: contain;
}

.logo {
    font-size: 1.8rem !important;
    margin-bottom: 0 !important;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-option {
    display: inline-block;
    padding: 0.5rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border-radius: 0.375rem;
    opacity: 0.7;
}

.lang-option:hover {
    opacity: 1;
    transform: scale(1.1);
    background-color: rgba(244, 136, 71, 0.1);
}

.lang-option.active {
    opacity: 1;
    background-color: rgba(244, 136, 71, 0.2);
    transform: scale(1.05);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: rgb(244, 136, 71);
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgb(244, 136, 71);
}

.cta-button:hover {
    background-color: transparent;
    color: rgb(244, 136, 71);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(244, 136, 71, 0.3);
}

.cta-button.primary {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), url('images/hero.jpg');
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 136, 71, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgb(244, 136, 71), rgb(255, 180, 120));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: rgba(244, 136, 71, 0.05);
}

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

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

.feature {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(244, 136, 71, 0.2);
}

.feature:hover {
    transform: translateY(-5px);
    background-color: rgba(244, 136, 71, 0.1);
}

.feature h3 {
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    text-align: center;
}

.about h2 {
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

.about .cta-button {
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(244, 136, 71, 0.1) 0%, rgba(244, 136, 71, 0.05) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(244, 136, 71, 0.2);
    background-color: rgba(0, 0, 0, 0.8);
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

footer a {
    color: rgb(244, 136, 71);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero {
        padding: 8rem 0 5rem;
    }
    
    .features, .about, .cta-section {
        padding: 4rem 0;
    }
    
    .logo-image{
        height: 30px;
    }
    
    .logo{
        font-size: 1.1rem !important;
    }

    /* .nav-right .cta-button{
        display: none;
    } */
    .nav-right{
        margin-right: -1rem;
    }
}

@media (max-width: 480px) {
    .logo
    .hero h1 {
        font-size: 2rem;
    }
    h2{
        font-size: 1.5rem;
    }
    .cta-button.primary {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    .cta-button.large {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .features, .about, .cta-section, .dimensions, .how-it-works, .results, .why-test, .faq, .results, .why-test {
        padding: 2rem 0 !important;
    }
    .about h2, .features h2, .cta-section h2, .how-it-works h2, .results h2, .why-test h2, .faq h2, .results h2, .why-test h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .feature, .step, .premium-offer, .faq-item{
        padding: 1rem !important;
    }
    .features-grid, .steps{
        margin-top: 0 !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Archetypes Grid */
.archetypes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.archetype {
    background-color: rgba(244, 136, 71, 0.1);
    padding: 1rem;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 600;
    color: rgb(244, 136, 71);
    border: 1px solid rgba(244, 136, 71, 0.3);
    transition: all 0.3s ease;
}

.archetype:hover {
    background-color: rgba(244, 136, 71, 0.2);
    transform: translateY(-2px);
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(244, 136, 71, 0.2);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    background-color: rgba(244, 136, 71, 0.05);
}

.step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight {
    font-style: italic;
    color: rgb(244, 136, 71);
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Results and Lists */
.results ul, .why-test ul {
    list-style: none;
    padding: 0;
}

.results li, .why-test li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(244, 136, 71, 0.2);
    position: relative;
    padding-left: 2rem;
}

.results li:before, .why-test li:before {
    content: "✓";
    color: rgb(244, 136, 71);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.premium-offer {
    background-color: rgba(244, 136, 71, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
    border: 1px solid rgba(244, 136, 71, 0.3);
}

/* FAQ */
.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(244, 136, 71, 0.2);
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Section Spacing */
.dimensions, .how-it-works, .results, .why-test, .faq {
    padding: 4rem 0;
}

.dimensions {
    background-color: rgba(244, 136, 71, 0.02);
}

.results {
    background-color: rgba(244, 136, 71, 0.03);
}

.faq {
    background-color: rgba(244, 136, 71, 0.02);
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature, .about, .cta-section, .dimensions, .how-it-works, .results, .why-test, .faq {
    animation: fadeInUp 0.6s ease-out;
}