
    :root {
        --primary: #00b2ca;
        --primary-light: #1fcbde;
        --primary-dark: #0095a9;
        --secondary: #121212;
        --dark-gray: #1e1e1e;
        --medium-gray: #2a2a2a;
        --light-gray: #3a3a3a;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --text-muted: #999999;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --glow: 0 0 15px rgba(0, 178, 202, 0.5);
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }
    
    body {
        line-height: 1.6;
        color: var(--text-primary);
        background-color: var(--secondary);
        overflow-x: hidden;
    }
    
    h1, h2, h3, h4 {
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    h1 {
        font-size: 3.5rem;
        text-transform: uppercase;
        background: linear-gradient(90deg, var(--text-primary), var(--primary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    h2 {
        font-size: 2.8rem;
        text-transform: uppercase;
        position: relative;
        display: inline-block;
        margin-bottom: 2rem;
    }
    
    h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background-color: var(--primary);
    }
    
    .text-center h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    p {
        margin-bottom: 1rem;
        color: var(--text-secondary);
    }
    
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    section {
        padding: 100px 0;
        position: relative;
    }
    
    .btn {
        display: inline-block;
        padding: 14px 32px;
        background-color: var(--primary);
        color: var(--text-primary);
        text-decoration: none;
        border-radius: 4px;
        font-weight: 600;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        font-size: 1rem;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: var(--transition);
        z-index: -1;
    }
    
    .btn:hover::before {
        left: 100%;
    }
    
    .btn:hover {
        transform: translateY(-5px);
        box-shadow: var(--glow);
    }
    
    .btn-secondary {
        background-color: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
    }
    
    .btn-secondary:hover {
        background-color: rgba(0, 178, 202, 0.1);
    }
    
    .text-center {
        text-align: center;
    }
    
    /* Header / Hero Section */
    .header {
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("/files/agency/background.jpg") center/cover no-repeat;
        color: var(--text-primary);
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    .header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(0, 178, 202, 0.2) 0%, transparent 70%);
        animation: pulse 8s infinite alternate;
    }
    
    @keyframes pulse {
        0% { opacity: 0.5; }
        100% { opacity: 1; }
    }
    
    .header-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    
    .header h1 {
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s ease-out;
    }
    
    .header p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        animation: fadeInUp 1s ease-out 0.3s forwards;
        opacity: 0;
    }
    
    .header .btn {
        animation: fadeInUp 1s ease-out 0.6s forwards;
        opacity: 0;
    }
    
    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px 0;
        background-color: rgba(18, 18, 18, 0.9);
        backdrop-filter: blur(10px);
        z-index: 1000;
        transition: var(--transition);
    }
    
    .navbar.scrolled {
        padding: 12px 0;
        background-color: rgba(18, 18, 18, 0.95);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-primary);
        text-decoration: none;
    }
    
    .logo span {
        color: var(--primary);
    }
    
    .nav-links {
        display: flex;
        list-style: none;
    }
    
    .nav-links li {
        margin-left: 30px;
    }
    
    .nav-links a {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: var(--transition);
    }
    
    .nav-links a:hover {
        color: var(--primary);
    }
    
    .nav-links a:hover::after {
        width: 100%;
    }
    
    .hamburger {
        display: none;
        cursor: pointer;
    }
    
    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--text-primary);
        transition: var(--transition);
    }
    
    /* Problems Section */
    .problems {
        background-color: var(--dark-gray);
        position: relative;
    }
    
    .problems::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23303030' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        opacity: 0.05;
    }
    
    .problems-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 2rem;
    }
    
    .problem-item {
        flex: 0 0 30%;
        text-align: center;
        margin-bottom: 2rem;
        background-color: var(--medium-gray);
        border-radius: 8px;
        padding: 30px 20px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        transform: translateY(0);
    }
    
    .problem-item:hover {
        transform: translateY(-10px);
        box-shadow: var(--glow);
    }
    
    .problem-icon {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }
    
    .problem-icon::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 60px;
        background-color: rgba(0, 178, 202, 0.1);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
    
    /* Services Section */
    .services {
        background-color: var(--secondary);
        position: relative;
        overflow: hidden;
    }
    
    .services::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, var(--primary-dark) 0%, transparent 70%);
        opacity: 0.2;
    }
    
    .services::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, var(--primary-dark) 0%, transparent 70%);
        opacity: 0.2;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 2rem;
        position: relative;
        z-index: 2;
    }
    
    .service-card {
        background-color: var(--medium-gray);
        border-radius: 8px;
        box-shadow: var(--shadow);
        padding: 40px 30px;
        transition: var(--transition);
        border-bottom: 4px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 178, 202, 0.05) 0%, transparent 100%);
        opacity: 0;
        transition: var(--transition);
    }
    
    .service-card:hover {
        transform: translateY(-15px);
        border-bottom: 4px solid var(--primary);
    }
    
    .service-card:hover::before {
        opacity: 1;
    }
    
    .service-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
        display: inline-block;
        position: relative;
    }
    
    .service-icon::after {
        content: '';
        position: absolute;
        width: 70px;
        height: 70px;
        background-color: rgba(0, 178, 202, 0.1);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
    
    /* Process Section */
    .process {
        background-color: var(--dark-gray);
        position: relative;
        overflow: hidden;
    }
    
    .timeline {
        margin-top: 4rem;
        position: relative;
    }
    
       .timeline::before {
    content: '';
    position: absolute;
    height: calc(100% - 25px); /* Уменьшаем высоту */
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    left: 50%;
    transform: translateX(-50%);
    top: 45px; /* Начинаем линию ниже первого кружка */
    }
    
    .timeline-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 80px;
        position: relative;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: row-reverse;
    }
    
    .timeline-content {
        width: 45%;
        background-color: var(--medium-gray);
        padding: 30px;
        border-radius: 8px;
        box-shadow: var(--shadow);
        position: relative;
        transition: var(--transition);
    }
    
    .timeline-content::before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background-color: var(--medium-gray);
        top: 30px;
        transform: rotate(45deg);
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
        left: -10px;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
        right: -10px;
    }
    
    .timeline-content:hover {
        transform: scale(1.03);
        box-shadow: var(--glow);
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        background-color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        font-weight: 700;
        font-size: 1.2rem;
        position: absolute;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        z-index: 2;
        box-shadow: 0 0 15px rgba(0, 178, 202, 0.5);
    }
    
    .timeline-content h3 {
        color: var(--primary);
        margin-bottom: 1rem;
    }
    
    /* Portfolio Section */
    .portfolio {
        background-color: var(--secondary);
        position: relative;
    }
    
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 2rem;
    }
    
    .portfolio-item {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        background-color: var(--medium-gray);
        position: relative;
    }
    
    .portfolio-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 178, 202, 0.2) 0%, transparent 100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 1;
    }
    
    .portfolio-item:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: var(--glow);
    }
    
    .portfolio-item:hover::before {
        opacity: 1;
    }
    
    .portfolio-image {
        height: 220px;
        position: relative;
        overflow: hidden;
    }
    
    .portfolio-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }
    
    .portfolio-item:hover .portfolio-image img {
        transform: scale(1.1);
    }
    
    .portfolio-content {
        padding: 25px;
        position: relative;
    }
    
    .portfolio-content h3 {
        color: var(--primary);
        margin-bottom: 0.5rem;
    }
    
    .portfolio-content p {
        color: var(--text-muted);
        margin-bottom: 0.5rem;
    }
    
    /* Pricing Section */
    .pricing {
        background-color: var(--dark-gray);
        position: relative;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 2rem;
    }
    
    .pricing-card {
        background-color: var(--medium-gray);
        border-radius: 12px;
        box-shadow: var(--shadow);
        padding: 40px 30px;
        transition: var(--transition);
        text-align: center;
        border: 1px solid var(--light-gray);
        position: relative;
        overflow: hidden;
    }
    
    .pricing-card::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
        top: -50%;
        left: -50%;
        opacity: 0;
        transition: var(--transition);
        z-index: 0;
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
        border-color: var(--primary);
        z-index: 2;
    }
    
    .pricing-card.featured::after {
        content: 'POPULAR';
        position: absolute;
        top: 20px;
        right: -35px;
        background-color: var(--primary);
        color: var(--text-primary);
        padding: 5px 40px;
        font-size: 0.8rem;
        font-weight: 600;
        transform: rotate(45deg);
    }
    
    .pricing-card:hover {
        transform: translateY(-15px);
    }
    
    .pricing-card:hover::before {
        opacity: 0.05;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px) scale(1.05);
    }
    
    .pricing-header {
        position: relative;
        z-index: 1;
        margin-bottom: 2rem;
    }
    
    .pricing-title {
        font-size: 1.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }
    
    .pricing-price {
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }
    
    .pricing-features {
       list-style: none;
        padding-left: 0;
        margin: 0;
        text-align: left;
    }
    
    .pricing-feature {
        margin-bottom: 1rem;
        padding-left: 30px;
        position: relative;
        color: var(--text-secondary);
    }
    
    .pricing-feature::before {
        content: '✓';
        color: var(--primary);
        position: absolute;
        left: 0;
        font-weight: bold;
    }
    
    .pricing-card .btn {
        position: relative;
        z-index: 1;
    }
    
    /* FAQ Section */
    .faq {
        background-color: var(--secondary);
        position: relative;
    }
    
    .faq-list {
        margin-top: 3rem;
    }
    
    .faq-item {
        background-color: var(--medium-gray);
        border-radius: 8px;
        margin-bottom: 20px;
        overflow: hidden;
        transition: var(--transition);
    }
    
    .faq-item:hover {
        box-shadow: var(--shadow);
    }
    
    .faq-question {
        padding: 25px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--text-primary);
        transition: var(--transition);
    }
    
    .faq-question:hover {
        color: var(--primary);
    }
    
    .faq-question span {
        transition: var(--transition);
    }
    
    .faq-question.active {
        color: var(--primary);
    }
    
    .faq-question.active span {
        transform: rotate(45deg);
    }
    
    .faq-answer {
        padding: 0 25px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    
    .faq-question.active + .faq-answer {
        max-height: 500px;
        padding-bottom: 25px;
    }
    
    /* Contact Section */
    .contact {
        background-color: var(--primary-dark);
        color: var(--text-primary);
        position: relative;
        overflow: hidden;
    }
    
    .contact::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
        top: -200px;
        right: -200px;
    }
    
    .contact::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
        bottom: -150px;
        left: -150px;
    }
    
    .contact .container {
        position: relative;
        z-index: 2;
    }
    
    .contact h2 {
        color: var(--text-primary);
    }
    
    .contact h2::after {
        background-color: var(--text-primary);
    }
    
    .contact .btn {
        background-color: var(--text-primary);
        color: var(--primary-dark);
        margin-top: 1.5rem;
    }
    
    .contact .btn:hover {
        background-color: var(--text-primary);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
    
    /* Footer */
    .footer {
        background-color: var(--secondary);
        color: var(--text-muted);
        padding: 30px 0;
        text-align: center;
        position: relative;
    }
    
    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--light-gray), transparent);
    }
    
    /* Animations */
    [data-aos] {
        opacity: 0;
        transition-property: transform, opacity;
    }
    
    [data-aos="fade-up"] {
        transform: translateY(50px);
    }
    
    [data-aos="fade-down"] {
        transform: translateY(-50px);
    }
    
    [data-aos="fade-right"] {
        transform: translateX(-50px);
    }
    
    [data-aos="fade-left"] {
        transform: translateX(50px);
    }
    
    [data-aos="zoom-in"] {
        transform: scale(0.9);
    }
    
    [data-aos].aos-animate {
        opacity: 1;
        transform: translate(0) scale(1);
    }
    
    /* Floating Elements Animation */
    .floating {
        animation: floating 3s ease-in-out infinite;
    }
    
    @keyframes floating {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }
    
    /* Media Queries */
    @media (max-width: 992px) {
        h1 {
            font-size: 2.8rem;
        }
        
        h2 {
            font-size: 2.3rem;
        }
        
        .nav-links {
            position: fixed;
            top: 80px;
            right: -100%;
            flex-direction: column;
            background-color: var(--dark-gray);
            width: 100%;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            padding: 20px 0;
        }
        
        .nav-links.active {
            right: 0;
        }
        
        .nav-links li {
            margin: 15px 0;
        }
        
        .hamburger {
            display: block;
        }
        
        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        
        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        
        .timeline::before {
        left: 30px;
        height: calc(100% - 25px);
        top: 45px; /* Начинаем линию ниже первого кружка */
    }
        
        .timeline-item, .timeline-item:nth-child(odd) {
        flex-direction: column;
        margin-left: 60px; /* Увеличено с 30px для создания отступа */
        position: relative;
        padding-top: 30px; /* Добавлен отступ сверху */
    }
    
    .timeline-content {
        width: 100%;
        margin-bottom: 20px;
        margin-top: 20px; /* Добавлен отступ сверху */
    }
    
    .timeline-number {
        left: -30px; /* Изменено с 30px для корректного позиционирования */
        top: 0; /* Изменено с 20px для размещения круга выше контента */
        transform: translateX(0); /* Убрано смещение по X */
    }
    }
    
    @media (max-width: 768px) {
        section {
            padding: 80px 0;
        }
        
        h1 {
            font-size: 2.2rem;
        }
        
        h2 {
            font-size: 2rem;
        }
        
        .problem-item {
            flex: 0 0 100%;
        }
        
        .pricing-card.featured {
            transform: none;
        }
        
        .pricing-card.featured:hover {
            transform: translateY(-15px);
        }
    }
    
    /* Базовый стиль для всех карточек */
    .pricing-card {
    background-color: var(--medium-gray);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 40px 30px;
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
    transform: scale(1); /* Явно указываем начальный масштаб */
    }
    
    /* Специальный стиль для выделенной карточки */
    .pricing-card.featured {
    transform: scale(1);
    border-color: var(--primary);
    z-index: 2;
    }
    
    /* Эффект при наведении для всех карточек включает увеличение */
    .pricing-card:hover {
    transform: translateY(-15px) scale(1.05);
    z-index: 3; /* Приоритет над featured при наведении */
    border-color: var(--primary-light); /* Подсветка границы */
    box-shadow: var(--glow); /* Добавляем светящийся эффект */
    }
    
    /* Специальный эффект для featured остаётся, но с большим значением */
    .pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.08); /* Чуть больше увеличение */
    }
    
    /* Для мобильных устройств сбрасываем эффект масштабирования на исходное значение */
    @media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card:hover {
        transform: translateY(-15px) scale(1.05);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px) scale(1.05);
    }
    }
    
    /* Form Section */
    .audit-form-section {
        background-color: var(--dark-gray);
        padding: 80px 0;
        position: relative;
    }
    
    .audit-form-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23404040' fill-opacity='0.3'%3E%3Cpath d='M20 20h20v20H20V20zm0-20h20v20H20V0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        opacity: 0.05;
    }
    
    .audit-form {
        max-width: 800px;
        margin: 0 auto;
        background-color: var(--medium-gray);
        padding: 50px;
        border-radius: 12px;
        box-shadow: var(--shadow);
        position: relative;
        z-index: 2;
    }
    
    .form-group {
        margin-bottom: 40px;
    }
    
    .form-label {
        display: block;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .form-sublabel {
        display: block;
        font-size: 0.9rem;
        font-weight: 400;
        color: var(--text-muted);
        margin-top: 8px;
        line-height: 1.5;
    }
    
    .form-input,
    .form-textarea {
        width: 100%;
        padding: 16px 20px;
        background-color: var(--light-gray);
        border: 2px solid transparent;
        border-radius: 8px;
        color: var(--text-primary);
        font-size: 1rem;
        transition: var(--transition);
        resize: vertical;
    }
    
    .form-input:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 10px rgba(0, 178, 202, 0.3);
    }
    
    .form-input::placeholder,
    .form-textarea::placeholder {
        color: var(--text-muted);
        opacity: 0.7;
    }
    
    .form-textarea {
        min-height: 120px;
        font-family: inherit;
    }
    
    /* File Upload Styles */
    .file-upload-container {
        position: relative;
    }
    
    .file-input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }
    
    .file-upload-label {
        display: block;
        padding: 40px 20px;
        background-color: var(--light-gray);
        border: 2px dashed var(--text-muted);
        border-radius: 8px;
        text-align: center;
        cursor: pointer;
        transition: var(--transition);
    }
    
    .file-upload-label:hover {
        border-color: var(--primary);
        background-color: rgba(0, 178, 202, 0.1);
    }
    
    .file-upload-icon {
        font-size: 2rem;
        display: block;
        margin-bottom: 10px;
    }
    
    .file-upload-text {
        display: block;
        color: var(--text-primary);
        font-weight: 500;
        margin-bottom: 8px;
    }
    
    .file-upload-hint {
        display: block;
        color: var(--text-muted);
        font-size: 0.9rem;
    }
    
    /* Checkbox Grid */
    .checkbox-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-top: 15px;
    }
    
    .checkbox-item {
        display: flex;
        align-items: center;
    }
    
    .checkbox-item input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 12px;
        accent-color: var(--primary);
        cursor: pointer;
    }
    
    .checkbox-item label {
        color: var(--text-secondary);
        font-weight: 500;
        cursor: pointer;
        user-select: none;
    }
    
    .checkbox-item input[type="checkbox"]:checked + label {
        color: var(--primary);
    }
    
    /* Radio Group */
    .radio-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }
    
    .radio-item {
        display: flex;
        align-items: center;
    }
    
    .radio-item input[type="radio"] {
        width: 18px;
        height: 18px;
        margin-right: 12px;
        accent-color: var(--primary);
        cursor: pointer;
    }
    
    .radio-item label {
        color: var(--text-secondary);
        font-weight: 500;
        cursor: pointer;
        user-select: none;
    }
    
    .radio-item input[type="radio"]:checked + label {
        color: var(--primary);
    }
    
    /* Contact Fields */
    .contact-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 15px;
    }
    
    .form-field {
        display: flex;
        flex-direction: column;
    }
    
    .field-label {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        margin-bottom: 8px;
    }
    
    /* Submit Section */
    .form-submit {
        text-align: center;
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid var(--light-gray);
    }
    
    .submit-note {
        margin-top: 15px;
        color: var(--text-muted);
        font-size: 0.9rem;
        font-style: italic;
    }
    
    /* Form Button Enhancements */
    .audit-form .btn {
        padding: 18px 40px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 1px;
        min-width: 250px;
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .audit-form {
            padding: 30px 20px;
            margin: 0 15px;
    }
    
    .contact-fields {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .form-label {
        font-size: 1.1rem;
    }
    
    .audit-form .btn {
        min-width: 200px;
        padding: 16px 30px;
    }
    }
    
    @media (max-width: 480px) {
    .audit-form {
        padding: 20px 15px;
    }
    
    .file-upload-label {
        padding: 30px 15px;
    }
    
    .audit-form .btn {
        width: 100%;
        min-width: unset;
    }
    }
    
    /* Thank You Page Styles - Add these to your existing styles.css */
    
    /* Thank You Hero Section */
    .thank-you-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("/files/agency/background.jpg") center/cover no-repeat;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    }
    
    .thank-you-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 178, 202, 0.3) 0%, transparent 70%);
    animation: pulse 8s infinite alternate;
    }
    
    .thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 40px 0;
    }
    
    /* Success Icon Styles */
    .success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    }
    
    .checkmark-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--glow);
    animation: scaleIn 0.6s ease-out;
    }
    
    .checkmark {
    width: 50px;
    height: 30px;
    border-left: 5px solid var(--text-primary);
    border-bottom: 5px solid var(--text-primary);
    transform: rotate(-45deg);
    opacity: 0;
    }
    
    @keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
    }
    
    @keyframes checkmark {
    0% {
        opacity: 0;
        transform: rotate(-45deg) scale(0);
    }
    100% {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
    }
    
    /* Thank You Typography */
    .thank-you-page h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    }
    
    .thank-you-message {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 500;
    }
    
    /* Thank You Details */
    .thank-you-details {
    background-color: rgba(42, 42, 42, 0.8);
    border-radius: 12px;
    padding: 40px;
    margin: 3rem 0;
    border-left: 4px solid var(--primary);
    backdrop-filter: blur(10px);
    }
    
    .thank-you-details h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    }
    
    .thank-you-details > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    }
    
    .thank-you-details strong {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 178, 202, 0.5);
    }
    
    /* Next Steps List */
    .next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    }
    
    .next-steps-list li {
    padding: 12px 0;
    padding-left: 40px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(58, 58, 58, 0.5);
    }
    
    .next-steps-list li:last-child {
    border-bottom: none;
    }
    
    .next-steps-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(0, 178, 202, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    /* Thank You Actions */
    .thank-you-actions {
    margin-top: 3rem;
    }
    
    .thank-you-actions .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    min-width: 250px;
    margin-bottom: 2rem;
    }
    
    .contact-note {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 2rem;
    }
    
    .email-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    }
    
    .email-link:hover {
    color: var(--primary-light);
    text-shadow: 0 0 5px rgba(0, 178, 202, 0.5);
    }
    
    /* Animations */
    .thank-you-content h1 {
    animation: fadeInUp 1s ease-out;
    }
    
    .thank-you-message {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    }
    
    .thank-you-details {
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
    }
    
    .thank-you-actions {
    animation: fadeInUp 1s ease-out 0.7s forwards;
    opacity: 0;
    }
    
    @keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 768px) {
    .thank-you-page h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-message {
        font-size: 1.2rem;
    }
    
    .thank-you-details {
        padding: 25px 20px;
        margin: 2rem 0;
    }
    
    .thank-you-details h3 {
        font-size: 1.5rem;
    }
    
    .checkmark-circle {
        width: 100px;
        height: 100px;
    }
    
    .checkmark {
        width: 40px;
        height: 25px;
        border-width: 4px;
    }
    
    .next-steps-list li {
        font-size: 1rem;
        padding-left: 35px;
    }
    
    .thank-you-actions .btn {
        min-width: 200px;
        padding: 16px 30px;
    }
    }
    
    @media (max-width: 480px) {
    .thank-you-page h1 {
        font-size: 2rem;
    }
    
    .thank-you-details {
        padding: 20px 15px;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .checkmark {
        width: 30px;
        height: 20px;
        border-width: 3px;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        min-width: unset;
    }
    }
    
    .uploaded-file-names {
        margin-top: 10px;
        font-size: 0.9rem;
        color: #fff; /* Белый текст */
    }
    
    .uploaded-file-names span {
        display: block;
        margin-top: 5px;
    }
