/* Variabel Warna dan Font */
:root {
    --primary-color: #7c4dff;
    --primary-light: #9a7cfb;
    --primary-dark: #5e35b1;
    --accent-color: #00e676;
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --dark-card: #252525;
    --dark-card-hover: #2d2d2d;
    --dark-border: #333333;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-disabled: rgba(255, 255, 255, 0.5);
    --shadow-color: rgba(0, 0, 0, 0.5);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-lg {
    padding: 14px 30px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(94, 53, 177, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(94, 53, 177, 0.3);
}

.btn-full {
    width: 100%;
    display: block;
}

/* Header / Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    bottom: 5px;
    right: -12px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
    background: none;
    border: none;
    padding: 5px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

.menu-active .menu-toggle i {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(124, 77, 255, 0.1), transparent 60%);
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--text-primary), var(--primary-light));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Brands Section */
.brands {
    padding: 60px 0;
    background-color: var(--dark-surface);
    text-align: center;
}

.brands p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.brand-logos img {
    height: 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(1000%);
}

.brand-logos img:hover {
    opacity: 1;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-border);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: var(--dark-card-hover);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(124, 77, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--dark-surface);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50px;
    width: 70px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
    color: white;
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-card);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.save-badge {
    font-size: 0.7rem;
    background-color: var(--accent-color);
    color: black;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
    font-weight: 600;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--dark-border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.price span:last-child {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-secondary);
}

.yearly {
    display: none;
}

input:checked ~ .pricing-cards .yearly {
    display: inline;
}

input:checked ~ .pricing-cards .monthly {
    display: none;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features ul {
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features i {
    margin-right: 10px;
    color: var(--accent-color);
}

.pricing-features li.disabled {
    color: var(--text-disabled);
}

.pricing-features li.disabled i {
    color: var(--text-disabled);
}

.enterprise-plan {
    margin-top: 60px;
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--dark-border);
}

.enterprise-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.enterprise-content p {
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--dark-surface);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
}

.testimonial-card {
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 30px;
    flex: 0 0 100%;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    position: absolute;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-content p::before {
    top: -20px;
    left: -10px;
}

.testimonial-content p::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.prev-btn, .next-btn {
    background-color: var(--dark-card);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--dark-card);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

/* Discord Section */
.discord-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.discord-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(88, 101, 242, 0.1), transparent 60%);
    z-index: 0;
}

.discord-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.discord-info {
    flex: 1;
}

.discord-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #5865F2, #7289DA);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discord-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.discord-benefits {
    margin-bottom: 30px;
}

.discord-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.discord-benefits i {
    color: #5865F2;
}

.discord-badge {
    margin-top: 30px;
}

.discord-preview {
    flex: 1;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.discord-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.discord-feature {
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-border);
    text-align: center;
}

.discord-feature:hover {
    transform: translateY(-10px);
    background-color: var(--dark-card-hover);
    border-color: #5865F2;
}

.discord-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(88, 101, 242, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #5865F2;
    margin: 0 auto 20px;
}

.discord-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.discord-feature p {
    color: var(--text-secondary);
}

.discord-cta {
    text-align: center;
}

.discord-integration-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    background-color: #5865F2;
    border: none;
}

.discord-integration-btn:hover {
    background-color: #4752C4;
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.discord-integration-btn i {
    font-size: 1.2rem;
    margin-right: 10px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    background-color: var(--dark-card);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--dark-card-hover);
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 1000px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--dark-bg));
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
footer {
    background-color: var(--dark-surface);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr) 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icons i {
    color: var(--text-primary);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-newsletter h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 6px;
    border: none;
    background-color: var(--dark-card);
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.language-selector select {
    background-color: var(--dark-card);
    color: var(--text-primary);
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .step:not(:last-child)::after {
        width: 2px;
        height: 50px;
        top: calc(100% - 25px);
        right: 50%;
        background: linear-gradient(to bottom, var(--primary-color), transparent);
    }
}

@media screen and (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .enterprise-plan {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .nav-menu, .nav-buttons {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(30, 30, 30, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px;
        border-top: 1px solid var(--dark-border);
        border-bottom: 1px solid var(--dark-border);
        z-index: 100;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        animation: slideDown 0.3s ease-out forwards;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu.active li {
        margin-bottom: 15px;
        width: 100%;
        opacity: 0;
        animation: fadeIn 0.3s ease-out forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-menu.active a {
        display: block;
        padding: 10px 0;
        width: 100%;
        font-size: 1.1rem;
        text-align: center;
    }
    
    .nav-buttons.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(80px + 200px);
        left: 0;
        width: 100%;
        background-color: rgba(30, 30, 30, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px;
        border-bottom: 1px solid var(--dark-border);
        z-index: 100;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        animation: slideDown 0.3s ease-out forwards;
    }
    
    .nav-buttons.active a {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
        opacity: 0;
        animation: fadeIn 0.3s ease-out forwards;
        animation-delay: 0.4s;
    }
    
    .nav-buttons.active a:last-child {
        animation-delay: 0.5s;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    
    .stat {
        text-align: center;
        flex: 1;
    }
    
    .stat h3 {
        font-size: 1.2rem;
    }
    
    .stat p {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 10px 24px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    .step p {
        font-size: 0.8rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 6px !important;
        font-size: 0.8rem;
        padding: 10px;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 6px !important;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-links h3, .footer-newsletter h3, .footer-brand h2 {
        font-size: 1.1rem;
    }
    
    .footer-brand p, .footer-newsletter p {
        font-size: 0.8rem;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .cta p {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .faq-container {
        padding: 0 10px;
    }
}

@media screen and (max-width: 400px) {
    .hero h1 {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .btn-lg {
        font-size: 0.9rem;
        padding: 9px 20px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Fix for touch devices */
@media (hover: none) {
    .btn:hover, .btn-primary:hover, .btn-outline:hover {
        transform: translateY(0);
        box-shadow: none;
    }
    
    .feature-card:hover {
        transform: translateY(0);
        box-shadow: none;
    }
    
    .pricing-card:hover {
        transform: translateY(0);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1.05);
    }
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
} 