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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #2A2A2A;
    font-weight: 400;
}

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

/* Header */
.header {
    background-color: #1A1A1A;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-section a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00D4FF;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D4FF, #00FFD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #B0B0B0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #00D4FF, #00FFD4);
    color: #1A1A1A;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Image Styles */
.hero-image,
.experience-img,
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.experience-img,
.product-img {
    border-radius: 16px 16px 0 0;
}

/* Sections */
section {
    padding: 80px 0;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #00D4FF;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00FFD4;
}

/* About Section */
.about {
    background-color: #1A1A1A;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    color: #B0B0B0;
    line-height: 1.8;
}

.image-placeholder {
    background: linear-gradient(135deg, #333, #444);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border-radius: 12px;
    border: 2px solid #00D4FF;
}

/* Features Section */
.features {
    background-color: #2A2A2A;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #1A1A1A, #333);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #444;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00D4FF;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(1.5);
}

.feature-card p {
    color: #B0B0B0;
    line-height: 1.6;
}

/* Experiences Section */
.experiences {
    background-color: #1A1A1A;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: linear-gradient(135deg, #2A2A2A, #333);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #444;
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-image {
    height: 200px;
}

.experience-card .image-placeholder {
    height: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #00FFD4;
}

.experience-card h3,
.experience-card p {
    padding: 0 1.5rem;
}

.experience-card h3 {
    padding-top: 1.5rem;
}

.experience-card p {
    padding-bottom: 1.5rem;
    color: #B0B0B0;
}

/* Pricing Section */
.pricing {
    background-color: #2A2A2A;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, #1A1A1A, #333);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #444;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card.featured {
    border-color: #FF7A00;
    position: relative;
}

.pricing-card.featured::before {
    content: "Популярний";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF7A00;
    color: #1A1A1A;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #00D4FF;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #00D4FF;
    margin: 1rem 0;
}

.pricing-button {
    background: linear-gradient(135deg, #00D4FF, #00FFD4);
    color: #1A1A1A;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

.pricing-button:hover {
    transform: translateY(-2px);
}

/* Products Section */
.products {
    background-color: #1A1A1A;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, #2A2A2A, #333);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #444;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
}

.product-card .image-placeholder {
    height: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #FF7A00;
}

.product-card h3,
.product-card p {
    padding: 0 1.5rem;
}

.product-card h3 {
    padding-top: 1.5rem;
}

.product-card p {
    color: #B0B0B0;
    margin-bottom: 1.5rem;
}

.product-button {
    background: linear-gradient(135deg, #FF7A00, #FF9500);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 0 1.5rem 1.5rem;
}

.product-button:hover {
    transform: translateY(-2px);
}

/* Why Choose Section */
.why-choose {
    background-color: #2A2A2A;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-item {
    background: linear-gradient(135deg, #1A1A1A, #333);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #444;
    text-align: center;
}

.why-item p {
    color: #B0B0B0;
    line-height: 1.6;
}

/* Contacts Section */
.contacts {
    background-color: #1A1A1A;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    text-align: left;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #00D4FF;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #B0B0B0;
    font-size: 1.1rem;
}

.contact-button {
    background: linear-gradient(135deg, #00D4FF, #00FFD4);
    color: #1A1A1A;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

.contact-button:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #0F0F0F;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00D4FF;
}

.footer-section h4 {
    color: #00FFD4;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #B0B0B0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00D4FF;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: linear-gradient(135deg, #1A1A1A, #2A2A2A);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #444;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #00D4FF;
}

.modal-content h2 {
    color: #00D4FF;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00FFD4;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #333;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00D4FF;
}

.submit-button {
    background: linear-gradient(135deg, #00D4FF, #00FFD4);
    color: #1A1A1A;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid,
    .experiences-grid,
    .pricing-grid,
    .products-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
}