* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0a0a0f;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}


.nav {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #dc143c;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #dc143c, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: #dc143c;
}

.nav-links a.active {
    background: #dc143c;
}


.hero {
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #dc143c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.pricing-card {
    background: #151520;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px 30px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #dc143c;
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
}

.pricing-card.featured {
    border: 2px solid #dc143c;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "BEST VALUE";
    position: absolute;
    top: 20px;
    right: -35px;
    background: #dc143c;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #dc143c;
    margin: 20px 0;
}

.price small {
    font-size: 1rem;
    color: #888;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
}

.pricing-card li {
    margin: 15px 0;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card li::before {
    content: "✓";
    color: #dc143c;
    font-weight: bold;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b0000, #dc143c);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.4);
}


.features {
    margin: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: #151520;
    border-radius: 15px;
}

.feature-item i {
    font-size: 3rem;
    color: #dc143c;
    margin-bottom: 20px;
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.portfolio-item {
    background: #151520;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    transition: 0.3s;
}

.portfolio-item:hover {
    border-color: #dc143c;
    transform: translateY(-5px);
}

.portfolio-preview {
    height: 200px;
    background: #1e1e2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #dc143c;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #dc143c;
}

.portfolio-info p {
    color: #aaa;
    margin-bottom: 15px;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    background: #2a2a35;
    color: #ccc;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}


.contact-section {
    background: #151520;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 60px 0;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-email {
    font-size: 2rem;
    color: #dc143c;
    text-decoration: none;
    display: inline-block;
    margin: 30px 0;
    padding: 15px 30px;
    background: #202030;
    border-radius: 50px;
}

.contact-email:hover {
    background: #dc143c;
    color: white;
}


.footer {
    text-align: center;
    padding: 40px 0;
    color: #666;
    border-top: 1px solid #333;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links a {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .contact-email {
        font-size: 1.2rem;
    }
.payment-notice {
    background: linear-gradient(135deg, #1a1a25, #151520);
    border: 2px solid #dc143c;
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.2);
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.notice-icon {
    font-size: 4rem;
    background: #202030;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #dc143c;
}

.notice-text h3 {
    color: #dc143c;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.notice-text p {
    color: #ccc;
    font-size: 1.1rem;
}

.notice-small {
    color: #888 !important;
    font-size: 0.9rem !important;
    margin-top: 10px;
    font-style: italic;
}

@media (max-width: 768px) {
    .notice-content {
        flex-direction: column;
        text-align: center;
    }
}
}