* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #0a0a0a;
    background: #ffffff;
}

/* HEADLINES - TOATE CENTRATE */
h1, h2, h3, h4, h5, h6 {
    text-align: center;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Header */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo span {
    color: #dc2626;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #dc2626;
}

.cta-button {
    background: #dc2626;
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
    white-space: nowrap;
}

.cta-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0a0a0a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background: #dc2626;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.primary-btn:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.secondary-btn {
    background: transparent;
    color: #0a0a0a;
    padding: 1rem 2.5rem;
    border: 2px solid #0a0a0a;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.secondary-btn:hover {
    background: #0a0a0a;
    color: white;
    transform: translateY(-3px);
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: #0a0a0a;
    color: white;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #e5e7eb;
}

/* Packages Section */
.packages {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.section-title {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title h2 {
    color: #0a0a0a;
}

.section-title p {
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
}

.packages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #dc2626;
}

.package-card.recommended {
    border: 2px solid #dc2626;
    position: relative;
}

.recommended-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
    text-align: center;
}

.price-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 2rem;
    text-align: center;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.7rem 0;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features li:before {
    content: "✓";
    color: #dc2626;
    font-weight: 700;
    font-size: 1.2rem;
}

.package-btn {
    width: 100%;
    padding: 1rem;
    background: #0a0a0a;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.package-btn:hover {
    background: #dc2626;
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    padding: 5rem 2rem;
    background: white;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #dc2626;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #9ca3af;
    line-height: 2;
    text-decoration: none;
    display: block;
}

.footer-section a:hover {
    color: #dc2626;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .cta-button {
        order: 2;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        order: 4;
        margin-top: 1rem;
        background: white;
        padding: 1rem 0;
        border-top: 1px solid #e5e7eb;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #f3f4f6;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    .packages-grid,
    .features-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }
}