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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: rgb(255, 234, 223);
    background: rgb(25, 24, 26);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(25, 24, 26);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 234, 223, 0.1);
    backdrop-filter: blur(10px);
}

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

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgb(255, 234, 223);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    display: block;
}

.logo-text {
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: rgb(255, 234, 223);
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.try-button {
    background: rgba(255, 234, 223, 0.05);
    color: rgb(120, 220, 240);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.try-button:hover {
    background: rgba(255, 234, 223, 0.1);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 8rem 2rem 6rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: rgb(255, 234, 223);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgb(255, 234, 223);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle .word {
    display: inline-block;
    opacity: 0;
    animation: fadeInWord 0.5s ease-out forwards;
}

.hero-subtitle .word:nth-child(1) { animation-delay: 0.1s; }
.hero-subtitle .word:nth-child(2) { animation-delay: 0.2s; }
.hero-subtitle .word:nth-child(3) { animation-delay: 0.3s; }
.hero-subtitle .word:nth-child(4) { animation-delay: 0.4s; }
.hero-subtitle .word:nth-child(5) { animation-delay: 0.5s; }
.hero-subtitle .word:nth-child(6) { animation-delay: 0.6s; }
.hero-subtitle .word:nth-child(7) { animation-delay: 0.7s; }
.hero-subtitle .word:nth-child(8) { animation-delay: 0.8s; }
.hero-subtitle .word:nth-child(9) { animation-delay: 0.9s; }
.hero-subtitle .word:nth-child(10) { animation-delay: 1s; }
.hero-subtitle .word:nth-child(11) { animation-delay: 1.1s; }
.hero-subtitle .word:nth-child(12) { animation-delay: 1.2s; }
.hero-subtitle .word:nth-child(13) { animation-delay: 1.3s; }
.hero-subtitle .word:nth-child(14) { animation-delay: 1.4s; }
.hero-subtitle .word:nth-child(15) { animation-delay: 1.5s; }
.hero-subtitle .word:nth-child(16) { animation-delay: 1.6s; }
.hero-subtitle .word:nth-child(17) { animation-delay: 1.7s; }
.hero-subtitle .word:nth-child(18) { animation-delay: 1.8s; }
.hero-subtitle .word:nth-child(19) { animation-delay: 1.9s; }
.hero-subtitle .word:nth-child(20) { animation-delay: 2s; }
.hero-subtitle .word:nth-child(21) { animation-delay: 2.1s; }

.cta-button {
    background: rgba(255, 234, 223, 0.05);
    color: rgb(120, 220, 240);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease-out;
}

.cta-button:hover {
    background: rgba(255, 234, 223, 0.1);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: rgb(25, 24, 26);
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.feature-grid:last-child {
    margin-bottom: 0;
}

.feature-card {
    padding: 0;
}

.feature-card h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: rgb(255, 234, 223);
    line-height: 1.3;
}

.feature-card p {
    font-size: 1.1rem;
    color: rgb(255, 234, 223);
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.9;
}

/* Benefits Section */
.benefits {
    padding: 8rem 2rem;
    background: rgb(25, 24, 26);
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgb(255, 234, 223);
    line-height: 1.1;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.5rem;
    color: rgb(255, 234, 223);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 2rem;
    background: rgb(25, 24, 26);
}

.testimonial-list {
    list-style: none;
}

.testimonial-item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    border: none;
    min-width: 280px;
    scroll-snap-align: start;
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-weight: 400;
    color: rgb(255, 234, 223);
    font-size: 1.1rem;
}

.testimonial-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgb(255, 234, 223);
    opacity: 0.7;
}

.testimonial-date,
.testimonial-author {
    font-weight: 400;
}

.testimonial-text {
    color: rgb(255, 234, 223);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Final CTA */
.final-cta {
    padding: 8rem 2rem;
    background: rgb(25, 24, 26);
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: rgb(255, 234, 223);
    line-height: 1.1;
    letter-spacing: -1px;
}

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

@keyframes fadeInWord {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title,
    .cta-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1.2rem;
    }

    .testimonial-item {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        display: none;
    }
}
