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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

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

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #8b5cf6;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
}

.btn-primary {
    background: #8b5cf6;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: #f3f4f6;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.hero {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-cta {
    background: #10b981;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-cta-large {
    background: #10b981;
    color: white;
    padding: 18px 50px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.features {
    padding: 80px 20px;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature .icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.results {
    padding: 80px 20px;
    background: #f9fafb;
}

.results h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.result {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.number {
    font-size: 42px;
    color: #8b5cf6;
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing {
    padding: 80px 20px;
}

.pricing h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: #8b5cf6;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    font-size: 32px;
    color: #8b5cf6;
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.pricing-card li {
    padding: 10px 0;
}

.resources {
    padding: 80px 20px;
    background: #f9fafb;
}

.resources h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.resource-card h3 {
    margin-bottom: 10px;
    color: #1f2937;
}

.cta {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.note {
    margin-top: 15px;
    opacity: 0.9;
}

footer {
    background: #1f2937;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
}

.copyright {
    text-align: center;
    border-top: 1px solid #374151;
    padding-top: 20px;
    color: #9ca3af;
}
