/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Hero Section - Block 1 */
.hero-section {
    min-height: 430px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #e94560 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #ffffff, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    max-width: 600px;
    font-weight: 300;
}

.hero-benefits {
    margin-bottom: 3rem;
}

.hero-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.hero-benefits li {
    font-size: 1.1rem;
    color: #f0f0f0;
    padding: 0.5rem 0;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #ff6b6b, #ffd700);
    color: #000;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.6);
    background: linear-gradient(45deg, #ff6b6b, #ffd700, #e94560);
}

/* Reviews Section - Block 5 */
.reviews-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    border-top: 3px solid #e94560;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #ecf0f1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.review-card {
    background: rgba(52, 73, 94, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #34495e;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.review-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #e94560, #ffd700, #3498db);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.review-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
    font-style: italic;
}

.review-author strong {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-author span {
    display: block;
    color: #bdc3c7;
    margin-top: 0.5rem;
}

.review-rating {
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Products Section - Block 3 */
.products-section {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    padding: 80px 0;
    border-top: 3px solid #ffd700;
}

.products-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid #333;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card.featured {
    transform: scale(1.05);
    border-color: #e94560;
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #e94560, #ff6b6b);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(15deg);
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #e94560;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #333;
    color: #ccc;
    position: relative;
    padding-left: 25px;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.product-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-btn:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

/* Article Section */
.article-section {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 3px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.article-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.02) 10px,
        rgba(255,255,255,0.02) 20px
    );
    pointer-events: none;
}

.article-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-align: center;
    position: relative;
    z-index: 2;
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f8f9fa;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Specialists Section - Block 4 */
.specialists-section {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
    padding: 80px 0;
    border-top: 3px solid #27ae60;
}

.specialists-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #ecf0f1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.specialist-card {
    background: rgba(46, 64, 83, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #27ae60;
    transition: all 0.3s ease;
    position: relative;
}

.specialist-card:hover {
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(0,0,0,0.3);
    border-left-color: #ffd700;
}

.specialist-card h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.specialist-title {
    color: #27ae60;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

.specialist-card p {
    color: #ecf0f1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.specialist-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.specialist-stats span {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Subscribe Section - Block 2 */
.subscribe-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid #ffffff;
}

.subscribe-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subscribe-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #f8f9fa;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.subscribe-form input[type="email"] {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 3px solid #ffffff;
    border-radius: 50px;
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    background: #ffffff;
}

.subscribe-btn {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    border: 3px solid #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, #34495e, #2c3e50);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: #ffd700;
}

.privacy-note {
    color: #f8f9fa;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section - Block 6 */
.contact-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    border-top: 3px solid #3498db;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #ecf0f1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.address h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.address p {
    color: #ecf0f1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid #3498db;
}

.map-container iframe {
    display: block;
    filter: grayscale(20%) contrast(1.2);
}

/* Footer - Block 7 */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 40px 0;
    text-align: center;
    border-top: 3px solid #e94560;
}

.footer p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        min-height: 500px;
        padding: 2rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-benefits ul {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .products-grid,
    .reviews-grid,
    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card.featured {
        transform: none;
    }

    .subscribe-form {
        padding: 0 1rem;
    }

    .subscribe-form input[type="email"] {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .subscribe-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .article-section {
        padding: 2rem;
        margin-top: 2rem;
    }

    .article-section h3 {
        font-size: 1.5rem;
    }

    .specialist-card:hover {
        transform: translateY(-5px) translateX(0);
    }

    section {
        padding: 60px 0 !important;
    }

    h2 {
        font-size: 2.2rem !important;
    }

    .map-container {
        margin: 0 -15px;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 450px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .subscribe-form input[type="email"],
    .subscribe-btn {
        width: 100%;
    }

    .product-card,
    .review-card,
    .specialist-card {
        padding: 1.5rem;
    }

    .article-section {
        padding: 1.5rem;
    }
}
