* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #95ADC9;
    --accent-dark: #7690ad;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --bg-light: #f8f9fb;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    width: 60px;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    transition: transform 0.3s;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(149, 173, 201, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(149, 173, 201, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(149, 173, 201, 0.3);
}

.btn:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(149, 173, 201, 0.4);
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 2;
    color: var(--text-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(149, 173, 201, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(149, 173, 201, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    width: 48px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.achievements {
    background: var(--bg-light);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.achievement-item {
    text-align: center;
    padding: 30px;
}

.achievement-icon {
    font-size: 56px;
    margin-bottom: 20px;
    width: 56px;
}

.achievement-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 32px;
    color: var(--accent);
    flex-shrink: 0;
    width: 36px;
}

.feature-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-text p {
    color: var(--text-gray);
    line-height: 1.7;
}

.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.gallery-item video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/*.gallery-item::after {
    content: '📸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.3;
}*/

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.price-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(149, 173, 201, 0.05) 0%, var(--white) 100%);
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.price-card .btn {
    width: fit-content;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 25px;
}

.price span {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-features li {
    padding: 12px 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.price-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
    margin-right: 10px;
}

.pricing-note {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    text-align: center;
}

.pricing-note p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contacts {
    background: var(--bg-light);
}

.contacts-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.contacts-info {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(149, 173, 201, 0.2);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(149, 173, 201, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-icon {
    font-size: 32px;
    width: 32px;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent);
}

footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

footer p {
    opacity: 0.7;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}

.blur {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    z-index: 10;
}

@media (max-width: 768px) {
    .nav-links {
        transform: translateX(100%);
        padding: 50px;
        background-color: #F8F9FB;
        width: 50%;
        height: 100vh;
        position: absolute;
        top: 0;
        right: 0;
        flex-direction: column;
    }

    .nav-links.clicked {
        transform: translateX(0);
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1000;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid,
    .features-list,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contacts-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contacts-info,
    .contact-form-wrapper {
        padding: 40px 30px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 100%;
    }

    .hero h1 {
        font-size: 36px;
    }

    .btn {
        padding: 15px 35px;
        font-size: 14px;
    }

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
