:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --text: #1f2937;
    --bg-light: #f9fafb;
    --success: #22c55e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.5;
    color: var(--text);
    background-color: var(--bg-light);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('pattern.svg') repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Timer Section */
.timer {
    background: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.countdown-item {
    background: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    min-width: 100px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: bold;
}

.countdown-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Features */
.features {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background: white;
}

.price-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: 'En Popüler';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 2rem 0;
}

.price-features {
    text-align: left;
    max-width: 400px;
    margin: 2rem auto;
}

.price-features li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Guarantee */
.guarantee {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .price-card {
        margin: 0 1rem;
        padding: 2rem;
    }
}
/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 30px 20px;
    color: #4b5563;
    line-height: 1.8;
    border-top: 1px solid #e5e7eb;
    margin-top: -1px;
    animation: fadeIn 0.5s ease;
}
