body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #fef5e7 0%, #fdebd0 20%, #fadbd8 40%, #f5b7b1 60%, #d7bde2 80%, #aed6f1 100%);
    color: #5a5a5a;
    overflow-x: hidden;
    min-height: 100vh;
}

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

header {
    text-align: center;
    padding: 60px 20px 40px 20px;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-container {
    display: inline-block;
    background: linear-gradient(135deg, #f5b7b1, #ec407a, #af7ac5, #9575cd);
    padding: 40px 80px;
    border-radius: 60px;
    box-shadow: 0 20px 60px rgba(236, 64, 122, 0.6), 0 0 80px rgba(175, 122, 197, 0.4);
    margin-bottom: 25px;
    border: 4px solid rgba(255, 255, 255, 0.9);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(236, 64, 122, 0.6), 0 0 80px rgba(175, 122, 197, 0.4);
    }
    50% {
        box-shadow: 0 20px 70px rgba(236, 64, 122, 0.8), 0 0 100px rgba(175, 122, 197, 0.6);
    }
}

.logo {
    font-size: 4em;
    font-weight: 700;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #fff, #ffe8f0, #fff, #fce4ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.8));
}

.subtitle {
    font-size: 1.5em;
    color: #af7ac5;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-top: 20px;
    line-height: 1.6;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #af7ac5, #d7bde2);
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 1.15em;
    font-weight: 500;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(175, 122, 197, 0.4);
    letter-spacing: 0.5px;
}

.about {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 60px;
    margin: 60px 0;
    box-shadow: 0 20px 60px rgba(175, 122, 197, 0.15);
    border: 1px solid rgba(253, 235, 208, 0.5);
}

.about-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #fdebd0;
    background: linear-gradient(135deg, #fadbd8, #f5b7b1);
    box-shadow: 0 15px 45px rgba(245, 183, 177, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6em;
    flex-shrink: 0;
}

.about-title h2 {
    color: #af7ac5;
    font-size: 3em;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.about-subtitle {
    color: #f5b7b1;
    font-size: 1.5em;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-content {
    line-height: 2;
    color: #6b6b6b;
    font-size: 1.15em;
    font-weight: 300;
}

.about-content p {
    margin-bottom: 25px;
}

.highlight {
    background: linear-gradient(120deg, #fdebd0 0%, #fadbd8 100%);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
    color: #af7ac5;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: linear-gradient(135deg, #fdebd0, #fadbd8);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(253, 235, 208, 0.3);
}

.stat-number {
    font-size: 3em;
    font-weight: 300;
    color: #af7ac5;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: #6b6b6b;
    font-weight: 300;
}

.products-section {
    margin: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3em;
    color: #af7ac5;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: #f5b7b1;
    font-size: 1.3em;
    margin-bottom: 60px;
    font-weight: 300;
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(253, 235, 208, 0.6);
    border-radius: 25px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(175, 122, 197, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 235, 208, 0.3), transparent);
    transition: left 0.6s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:nth-child(2) {
    transform: scale(1.08);
    border-color: #f5b7b1;
    border-width: 3px;
    box-shadow: 0 20px 60px rgba(245, 183, 177, 0.25);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(175, 122, 197, 0.2);
}

.product-card:nth-child(2):hover {
    transform: translateY(-15px) scale(1.12);
}

.popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f5b7b1, #fadbd8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(245, 183, 177, 0.4);
    letter-spacing: 0.5px;
}

.duration {
    font-size: 2.8em;
    color: #af7ac5;
    font-weight: 300;
    margin: 25px 0 15px 0;
}

.price {
    font-size: 2.5em;
    color: #f5b7b1;
    margin: 20px 0;
    font-weight: 400;
}

.features {
    list-style: none;
    margin: 30px 0;
    color: #6b6b6b;
    text-align: left;
}

.features li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(253, 235, 208, 0.4);
    font-size: 1.05em;
    font-weight: 300;
}

.features li:last-child {
    border-bottom: none;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f5b7b1, #fadbd8, #fdebd0);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(245, 183, 177, 0.4);
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 45px rgba(245, 183, 177, 0.6);
}

.testimonials {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 60px;
    margin: 80px 0;
    box-shadow: 0 20px 60px rgba(215, 189, 226, 0.15);
}

.testimonials h2 {
    text-align: center;
    color: #af7ac5;
    font-size: 3em;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 2px;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #fef5e7, #fdebd0);
    padding: 35px;
    border-radius: 20px;
    border-left: 5px solid #f5b7b1;
    box-shadow: 0 8px 25px rgba(253, 235, 208, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(253, 235, 208, 0.4);
}

.testimonial-stars {
    color: #f5b7b1;
    font-size: 1.6em;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #6b6b6b;
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 300;
}

.testimonial-author {
    color: #af7ac5;
    font-weight: 500;
    text-align: right;
}

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin: 80px 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(253, 235, 208, 0.6);
    border-radius: 25px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(175, 122, 197, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(175, 122, 197, 0.2);
}

.info-card h3 {
    color: #af7ac5;
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 1px;
}

.info-card p {
    color: #6b6b6b;
    font-size: 1.15em;
    line-height: 1.9;
    font-weight: 300;
}

.icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.phone-section {
    text-align: center;
    padding: 70px 50px;
    background: linear-gradient(135deg, rgba(253, 235, 208, 0.3), rgba(250, 219, 216, 0.3), rgba(245, 183, 177, 0.3));
    border-radius: 30px;
    margin: 80px 0;
    border: 2px solid rgba(245, 183, 177, 0.3);
    box-shadow: 0 20px 60px rgba(245, 183, 177, 0.2);
}

.phone-section h2 {
    color: #af7ac5;
    font-size: 2.8em;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 2px;
}

.phone-number {
    font-size: 4em;
    color: #f5b7b1;
    font-weight: 300;
    margin: 30px 0;
    text-shadow: 0 5px 20px rgba(245, 183, 177, 0.2);
    letter-spacing: 3px;
}

.phone-section p {
    color: #af7ac5;
    font-size: 1.4em;
    margin-top: 30px;
    line-height: 1.9;
    font-weight: 300;
}

footer {
    text-align: center;
    padding: 50px 20px;
    color: #af7ac5;
    border-top: 2px solid rgba(253, 235, 208, 0.5);
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
}

footer p {
    font-weight: 300;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-card:nth-child(2) {
        transform: scale(1);
    }
    
    .about-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5em;
    }
    
    .phone-number {
        font-size: 2.5em;
    }
    
    .about, .testimonials {
        padding: 35px 25px;
    }
    
    .section-title, .testimonials h2 {
        font-size: 2.2em;
    }

    .logo-container { 
        width: 100%;
        padding: 40px 30px;
    }

    .popular {
        top: -2px;
        right: -2px;
        border-top-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 10px;
    }
}

@media (max-width: 500px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
    .logo {
        font-size: 1.6em;
    }
}