* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background: #EAE7DC; 
    color: #3a3a3a; 
    line-height: 1.6; 
    overflow-x: hidden; 
}

/* Animated Gradient Background */
.gradient-bg { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
    background: linear-gradient(135deg, #EAE7DC 0%, #D8C3A5 50%, #EAE7DC 100%);
    background-size: 400% 400%; 
    animation: gradientShift 15s ease infinite; 
}

@keyframes gradientShift { 
    0%, 100% { background-position: 0% 50%; } 
    50% { background-position: 100% 50%; } 
}

/* Floating subtle shapes */
.orb { 
    position: fixed; 
    border-radius: 50%; 
    filter: blur(100px); 
    opacity: 0.15; 
    z-index: -1; 
    animation: float 25s ease-in-out infinite; 
}

.orb1 { 
    width: 600px; 
    height: 600px; 
    background: radial-gradient(circle, #E98074, transparent); 
    top: -250px; 
    left: -250px; 
}

.orb2 { 
    width: 500px; 
    height: 500px; 
    background: radial-gradient(circle, #8E808A, transparent); 
    bottom: -200px; 
    right: -200px; 
    animation-delay: 10s; 
}

.orb3 { 
    width: 450px; 
    height: 450px; 
    background: radial-gradient(circle, #D8C3A5, transparent); 
    top: 40%; 
    right: 5%; 
    animation-delay: 18s; 
}

@keyframes float { 
    0%, 100% { transform: translate(0, 0); } 
    33% { transform: translate(40px, -40px); } 
    66% { transform: translate(-30px, 30px); } 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    position: relative; 
    z-index: 1; 
}

/* Glassmorphism Header */
header { 
    padding: 20px 0; 
    position: sticky; 
    top: 0; 
    background: rgba(234, 231, 220, 0.7); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    border-bottom: 1px solid rgba(142, 128, 138, 0.2); 
    z-index: 100; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    font-size: 32px; 
    font-weight: 700; 
    font-family: 'Martian Mono', monospace; 
    color: #E85A4F; 
    text-decoration: none; 
    letter-spacing: -1px; 
    transition: all 0.3s; 
}

.logo:hover { 
    color: #E98074; 
}

.nav-links { 
    display: flex; 
    gap: 40px; 
    list-style: none; 
}

.nav-links a { 
    color: #8E808A; 
    text-decoration: none; 
    transition: all 0.3s; 
    font-size: 14px; 
    font-weight: 500; 
    letter-spacing: 0.5px; 
    position: relative; 
    padding: 8px 0; 
}

.nav-links a::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: #E85A4F; 
    transition: width 0.3s; 
}

.nav-links a:hover::after { 
    width: 100%; 
}

.nav-links a:hover { 
    color: #E85A4F; 
}

/* Hero Section */
.hero { 
    min-height: 85vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 80px 0; 
}

.hero h1 { 
    font-size: 68px; 
    font-weight: 700; 
    margin-bottom: 25px; 
    color: #3a3a3a; 
    line-height: 1.1; 
    letter-spacing: -2px; 
}

.hero .highlight { 
    color: #E85A4F; 
    font-family: 'Martian Mono', monospace; 
    font-weight: 700; 
}

.hero p { 
    font-size: 18px; 
    color: #8E808A; 
    margin-bottom: 40px; 
    max-width: 650px; 
    margin-left: auto; 
    margin-right: auto; 
    font-weight: 400; 
}

/* Glassmorphic Button */
.cta-button { 
    display: inline-block; 
    padding: 18px 45px; 
    background: rgba(232, 90, 79, 0.1); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    color: #E85A4F; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 600; 
    transition: all 0.4s; 
    letter-spacing: 0.5px; 
    font-size: 14px; 
    border: 2px solid rgba(232, 90, 79, 0.3); 
    box-shadow: 0 8px 24px rgba(232, 90, 79, 0.15); 
    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 { 
    background: rgba(232, 90, 79, 0.2); 
    transform: translateY(-3px); 
    box-shadow: 0 12px 32px rgba(232, 90, 79, 0.25); 
    border-color: #E85A4F; 
}

/* Services Section */
.services { 
    padding: 120px 0; 
}

.section-title { 
    font-size: 52px; 
    font-weight: 700; 
    margin-bottom: 70px; 
    text-align: center; 
    color: #3a3a3a; 
    letter-spacing: -1px; 
    font-family: 'Martian Mono', monospace; 
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

/* Glassmorphic Service Cards */
.service-card { 
    background: rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    padding: 45px 35px; 
    border-radius: 24px; 
    border: 1px solid rgba(142, 128, 138, 0.2); 
    transition: all 0.4s; 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); 
    position: relative; 
    overflow: hidden; 
}

.service-card::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(135deg, rgba(233, 128, 116, 0.1), rgba(216, 195, 165, 0.1)); 
    opacity: 0; 
    transition: opacity 0.4s; 
}

.service-card:hover::before { 
    opacity: 1; 
}

.service-card:hover { 
    border-color: rgba(232, 90, 79, 0.4); 
    transform: translateY(-8px); 
    box-shadow: 0 16px 48px rgba(232, 90, 79, 0.2); 
}

.service-icon { 
    font-size: 42px; 
    margin-bottom: 25px; 
    position: relative; 
    z-index: 1; 
}

.service-card h3 { 
    font-size: 24px; 
    margin-bottom: 18px; 
    color: #3a3a3a; 
    font-weight: 600; 
    position: relative; 
    z-index: 1; 
}

.service-card p { 
    color: #8E808A; 
    font-size: 14px; 
    line-height: 1.8; 
    font-weight: 400; 
    position: relative; 
    z-index: 1; 
}

/* Footer */
footer { 
    background: rgba(216, 195, 165, 0.5); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    padding: 60px 0 35px; 
    margin-top: 100px; 
    border-top: 1px solid rgba(142, 128, 138, 0.2); 
}

.footer-content { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 50px; 
    margin-bottom: 50px; 
}

.footer-section h4 { 
    color: #E85A4F; 
    margin-bottom: 20px; 
    font-size: 14px; 
    font-weight: 700; 
    letter-spacing: 1px; 
    font-family: 'Martian Mono', monospace; 
}

.footer-section p, 
.footer-section a { 
    color: #8E808A; 
    font-size: 13px; 
    line-height: 2; 
    text-decoration: none; 
    display: block; 
    margin-bottom: 10px; 
    font-weight: 400; 
    transition: all 0.3s; 
}

.footer-section a:hover { 
    color: #E85A4F; 
    transform: translateX(5px); 
}

.footer-bottom { 
    text-align: center; 
    padding-top: 35px; 
    border-top: 1px solid rgba(142, 128, 138, 0.2); 
    color: #8E808A; 
    font-size: 12px; 
    font-weight: 400; 
}

/* Price Page */
.price-page, 
.contacts-page, 
.terms-page { 
    padding: 120px 0; 
    min-height: 70vh; 
}

.price-category { 
    margin-bottom: 60px; 
    background: rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    padding: 40px; 
    border-radius: 24px; 
    border: 1px solid rgba(142, 128, 138, 0.2); 
}

.price-category h3 { 
    font-size: 32px; 
    color: #E85A4F; 
    margin-bottom: 30px; 
    font-weight: 600; 
    font-family: 'Martian Mono', monospace; 
}

.price-item { 
    display: flex; 
    justify-content: space-between; 
    padding: 22px 0; 
    border-bottom: 1px solid rgba(142, 128, 138, 0.15); 
    transition: all 0.3s; 
}

.price-item:hover { 
    padding-left: 15px; 
    background: rgba(233, 128, 116, 0.05); 
}

.price-item:last-child { 
    border-bottom: none; 
}

.price-item-name { 
    flex: 1; 
    color: #3a3a3a; 
    font-weight: 400; 
    font-size: 15px; 
}

.price-item-cost { 
    color: #E85A4F; 
    font-weight: 700; 
    white-space: nowrap; 
    margin-left: 20px; 
    font-size: 16px; 
    font-family: 'Martian Mono', monospace; 
}

/* Contact Page */
.contact-info { 
    background: rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    padding: 50px; 
    border-radius: 24px; 
    border: 1px solid rgba(142, 128, 138, 0.2); 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); 
}

.contact-item { 
    margin-bottom: 30px; 
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label { 
    color: #E85A4F; 
    font-weight: 700; 
    margin-bottom: 10px; 
    font-size: 12px; 
    letter-spacing: 1px; 
    font-family: 'Martian Mono', monospace; 
}

.contact-value { 
    color: #3a3a3a; 
    font-size: 16px; 
    font-weight: 400; 
}

/* Terms Page */
.terms-content { 
    max-width: 850px; 
    margin: 0 auto; 
    background: rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    padding: 50px; 
    border-radius: 24px; 
    border: 1px solid rgba(142, 128, 138, 0.2); 
}

.terms-content h3 { 
    color: #E85A4F; 
    margin-top: 40px; 
    margin-bottom: 20px; 
    font-size: 26px; 
    font-weight: 600; 
    font-family: 'Martian Mono', monospace; 
}

.terms-content h3:first-of-type {
    margin-top: 0;
}

.terms-content p { 
    color: #8E808A; 
    margin-bottom: 18px; 
    line-height: 1.9; 
    font-weight: 400; 
    font-size: 14px; 
}

/* Mobile Menu */
.mobile-menu-btn { 
    display: none; 
    background: none; 
    border: none; 
    color: #E85A4F; 
    font-size: 28px; 
    cursor: pointer; 
    transition: all 0.3s; 
}

.mobile-menu-btn:hover { 
    color: #E98074; 
}

/* Page System */
.page { 
    display: none; 
}

.page.active { 
    display: block; 
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { 
        font-size: 42px; 
    }
    
    .hero p { 
        font-size: 15px; 
    }
    
    .section-title { 
        font-size: 36px; 
    }
    
    .services-grid { 
        grid-template-columns: 1fr; 
    }
    
    .nav-links { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: rgba(234, 231, 220, 0.95); 
        backdrop-filter: blur(20px); 
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column; 
        padding: 30px; 
        border-top: 1px solid rgba(142, 128, 138, 0.2); 
    }
    
    .nav-links.active { 
        display: flex; 
    }
    
    .mobile-menu-btn { 
        display: block; 
    }
    
    .footer-content { 
        grid-template-columns: 1fr; 
    }
    
    .price-item { 
        flex-direction: column; 
        gap: 12px; 
    }
    
    .price-item-cost { 
        margin-left: 0; 
    }
    
    .contact-info, 
    .terms-content, 
    .price-category { 
        padding: 30px 20px; 
    }
}