/* Web Styles */
:root {
    --primary-color: #4a6bff;
    --primary-dark: #3a56cc;
    --secondary-color: #00c9a7;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --danger-color: #ff4d4d;
    --warning-color: #ffc107;
    --success-color: #28a745;
    
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--primary-color);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--primary-color);
    color: white;
}

.btn--primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn--outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn--outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn--link {
    color: var(--primary-color);
    padding: 0;
    background-color: transparent;
    border: none;
    position: relative;
}

.btn--link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.btn--link:hover::after {
    width: 100%;
}

.btn--large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn--block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: var(--dark-color);
}

.logo__icon {
    margin-right: 8px;
    font-size: 28px;
    color: var(--primary-color);
}

.nav__list {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-weight: 600;
    position: relative;
    padding: 8px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    gap: 16px;
}

.burger {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero__content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__title span {
    color: var(--primary-color);
}

.hero__subtitle {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 32px;
}

.hero__cta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.hero__badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.hero__visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 600px;
}

.server-rack {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(145deg, #2b2d42 0%, #1a1a2e 100%);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.server-rack__panel {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.server-rack__lights {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 10px;
}

.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.light--blue {
    background-color: #4a6bff;
    animation-delay: 0.2s;
}

.light--green {
    background-color: #00c9a7;
    animation-delay: 0.4s;
}

.light--red {
    background-color: #ff4d4d;
    animation-delay: 0.6s;
}

.light--yellow {
    background-color: #ffc107;
    animation-delay: 0.8s;
}

@keyframes blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

.particle--1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(74, 107, 255, 0) 70%);
}

.particle--2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(0, 201, 167, 0) 70%);
}

.particle--3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    background: radial-gradient(circle, #ffc107 0%, rgba(255, 193, 7, 0) 70%);
}

/* Section Common Styles */
.section-title {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-color);
    text-align: center;
    margin-bottom: 60px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: white;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card--highlight {
    border-top: 4px solid var(--primary-color);
}

.service-card__badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.service-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card__title {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-card__description {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.service-card__features {
    margin-bottom: 30px;
}

.service-card__features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.advantage-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.advantage-card__title {
    font-size: 20px;
    margin-bottom: 12px;
}

.advantage-card__description {
    color: var(--gray-color);
    font-size: 15px;
}

/* Test Drive Section */
.test-drive {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.test-drive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 107, 255, 0.05) 0%, rgba(0, 201, 167, 0.05) 100%);
    z-index: 0;
}

.test-drive .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.test-drive__content {
    max-width: 500px;
}

.test-drive__description {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.test-drive__visual {
    position: relative;
}

.terminal {
    background-color: var(--dark-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.terminal__header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: #2b2d42;
}

.terminal__button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.terminal__button--red {
    background-color: #ff5f56;
}

.terminal__button--yellow {
    background-color: #ffbd2e;
}

.terminal__button--green {
    background-color: #27c93f;
}

.terminal__body {
    padding: 20px;
    font-family: 'Courier New', monospace;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
}

.terminal__line {
    margin-bottom: 8px;
}

.terminal__line--blink {
    animation: blink-caret 1s step-end infinite;
}

@keyframes blink-caret {
    from, to { opacity: 0; }
    50% { opacity: 1; }
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
}

.stat-card__number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-card__label {
    font-size: 16px;
    opacity: 0.9;
}

/* Contacts Section */
.contacts {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    margin-right: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item__title {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-item__text {
    color: var(--gray-color);
}

.form {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.form__group {
    margin-bottom: 20px;
}

.form__input, .form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 16px;
    transition: var(--transition);
}

.form__input:focus, .form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer__col {
    margin-bottom: 30px;
}

.footer__title {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__list a:hover {
    color: white;
    padding-left: 5px;
}

.logo--footer .logo__icon {
    color: var(--secondary-color);
}

.footer__about {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    line-height: 1.6;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer__social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Badge */
.badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 42px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .test-drive .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .test-drive__content {
        max-width: 100%;
        text-align: center;
    }
    
    .test-drive__visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contacts__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 1000;
        padding: 100px 30px 30px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 20px;
    }
    
    .burger {
        display: flex;
    }
    
    .header__actions {
        display: none;
    }
    
    .hero {
        padding: 140px 0 80px;
        text-align: center;
    }
    
    .hero__content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero__visual {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 40px auto 0;
        transform: none;
        top: auto;
        right: auto;
    }
    
    .hero__cta {
        justify-content: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 36px;
    }
    
    .hero__cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .service-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    
    .advantages__grid {
        grid-template-columns: 1fr;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Модальные окна */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.modal__content {
    position: relative;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    padding: 40px;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal.active .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.modal__close:hover {
    color: var(--dark-color);
}

.modal__title {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

/* Формы авторизации */
.auth-form .form__group {
    margin-bottom: 20px;
}

.auth-form .form__input {
    width: 100%;
    padding: 12px 16px;
}

.form__group--flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox__custom {
    position: relative;
    height: 18px;
    width: 18px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    transition: var(--transition);
}

.checkbox input:checked ~ .checkbox__custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox__custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox input:checked ~ .checkbox__custom:after {
    display: block;
}

.form__link {
    color: var(--primary-color);
    font-size: 14px;
    transition: var(--transition);
}

.form__link:hover {
    color: var(--primary-dark);
}

.auth-form__footer {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    color: var(--gray-color);
}

/* Service Page Styles */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.service-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero__content {
    max-width: 600px;
}

.service-hero__title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark-color);
}

.service-hero__subtitle {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 32px;
}

.service-hero__cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.service-hero__visual {
    position: relative;
}

.service-hero__image {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.feature-card__title {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card__description {
    color: var(--gray-color);
    font-size: 15px;
}

/* Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 30px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.plan-card--popular {
    border-top: 4px solid var(--primary-color);
    transform: translateY(-10px);
}

.plan-card--popular:hover {
    transform: translateY(-15px);
}

.plan-card__badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.plan-card__header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-card__title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.plan-card__price {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
}

.plan-card__amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
}

.plan-card__period {
    font-size: 16px;
    color: var(--gray-color);
    margin-left: 5px;
    margin-bottom: 5px;
}

.plan-card__features {
    margin-bottom: 30px;
}

.plan-card__features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--gray-color);
}

.plan-card__features li strong {
    color: var(--dark-color);
}

.plan-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Tech Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.tech-card__title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-card__list {
    list-style-type: none;
}

.tech-card__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.tech-card__list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
}

/* Test Section */
.service-test {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.service-test::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 107, 255, 0.05) 0%, rgba(0, 201, 167, 0.05) 100%);
    z-index: 0;
}

.service-test .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-test__content {
    max-width: 500px;
}

.service-test__description {
    margin-bottom: 30px;
    color: var(--gray-color);
}

/* FAQ Section */
.faq-grid {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    padding: 20px;
    background-color: white;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item__question:hover {
    background-color: #f8f9fa;
}

.faq-item__icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
}

.faq-item.active .faq-item__answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-item__answer p {
    margin-bottom: 0;
    color: var(--gray-color);
    line-height: 1.6;
}
/* Cloud Storage Specific Styles */
.cloud-interface {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.cloud-interface__header {
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cloud-interface__path {
    font-size: 14px;
    color: var(--gray-color);
}

.cloud-interface__actions {
    display: flex;
    gap: 10px;
}

.cloud-interface__button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.cloud-interface__button:hover {
    background-color: var(--primary-dark);
}

.cloud-interface__files {
    padding: 10px;
}

.cloud-file {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    transition: var(--transition);
}

.cloud-file:hover {
    background-color: #f8f9fa;
}

.cloud-file__icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: var(--primary-color);
}

.cloud-file__name {
    flex-grow: 1;
    font-size: 14px;
}

.cloud-file__size {
    font-size: 12px;
    color: var(--gray-color);
    min-width: 60px;
    text-align: right;
}

/* About Page Styles - Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-card__photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__name {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-card__position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.team-card__bio {
    color: var(--gray-color);
    font-size: 14px;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(74, 107, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info p {
    font-size: 14px;
    color: var(--gray-color);
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.value-card__title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card__description {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.5;
}

/* About Story Section */
.story-timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding-left: 50px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.timeline-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    position: relative;
    margin-left: 30px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

.timeline-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-description {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.6;
}

/* Contacts Page Styles */
.contacts-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.contacts-hero__title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contacts-hero__subtitle {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Contacts Info Grid */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.contacts-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.contacts-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contacts-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.contacts-card__title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contacts-card__text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contacts-card__description {
    color: var(--gray-color);
    font-size: 15px;
}

/* Map & Form Section */
.map-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.map-container {
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.form-container {
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-form .form__group {
    margin-bottom: 20px;
}

.contact-form .form__input,
.contact-form .form__textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 16px;
    transition: var(--transition);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.contact-form .form__input:focus,
.contact-form .form__textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
}

.contact-form .form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Departments Section */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.department-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.department-card__title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.department-card__email {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.department-card__phone {
    color: var(--gray-color);
    margin-bottom: 10px;
}

.department-card__hours {
    font-size: 14px;
    color: var(--gray-color);
    font-style: italic;
}

/* Documents Page Styles */
.documents-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.documents-hero__title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.documents-hero__subtitle {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Documents Tabs */
.documents-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-top: 60px;
}

.documents-tab {
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.documents-tab:hover {
    color: var(--primary-color);
}

.documents-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Documents Grid */
.documents-content {
    display: none;
    padding: 40px 0;
}

.documents-content.active {
    display: block;
}

.documents-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.document-card {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.document-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.document-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    margin-right: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.document-card__content {
    flex-grow: 1;
}

.document-card__title {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.document-card__description {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.document-card__meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray-light);
}

.document-card__download {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.document-card__download:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Knowledge Base Page Styles */
.knowledge-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.knowledge-hero__title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.knowledge-hero__subtitle {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Search Form */
.knowledge-search {
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    position: relative;
}

.search-form__input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 16px;
    padding-right: 50px;
    box-shadow: var(--shadow-sm);
}

.search-form__button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.category-card__title {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.category-card__count {
    font-size: 14px;
    color: var(--gray-color);
}

/* Popular Articles */
.popular-articles {
    margin-top: 50px;
}

.popular-articles__slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.article-card__badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    border-radius: 20px;
    margin: 20px;
    align-self: flex-start;
}

.article-card__content {
    padding: 0 20px 20px;
    flex-grow: 1;
}

.article-card__title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.article-card__excerpt {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.article-card__meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 15px;
}

.article-card__link {
    display: block;
    padding: 15px;
    text-align: center;
    background-color: rgba(74, 107, 255, 0.05);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.article-card__link:hover {
    background-color: rgba(74, 107, 255, 0.1);
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-item__question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: white;
    border: none;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item__question:hover {
    background-color: #f9f9f9;
}

.faq-item__icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-item__answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-item__answer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.faq-item__answer code {
    background-color: #f5f5f5;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 14px;
}

.knowledge-faq__cta {
    text-align: center;
    margin-top: 40px;
}

/* CTA Section */
.knowledge-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.knowledge-cta__title {
    font-size: 36px;
    margin-bottom: 15px;
}

.knowledge-cta__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.knowledge-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Report Problem Page Styles */
.report-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.report-hero__title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.report-hero__subtitle {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-card__number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    font-weight: 700;
    color: rgba(74, 107, 255, 0.1);
    line-height: 1;
    z-index: 1;
}

.step-card__title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    z-index: 2;
}

.step-card__description {
    font-size: 15px;
    color: var(--gray-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.step-card__link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-card__link:hover {
    color: var(--primary-dark);
}

/* Report Form */
.report-form {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.problem-form .form__group {
    margin-bottom: 25px;
}

.problem-form .form__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.problem-form .form__input,
.problem-form .form__textarea,
.problem-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 16px;
    transition: var(--transition);
}

.problem-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.problem-form .form__input:focus,
.problem-form .form__textarea:focus,
.problem-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
}

.problem-form .form__textarea {
    resize: vertical;
    min-height: 150px;
}

.problem-form .form__hint {
    font-size: 13px;
    color: var(--gray-light);
    margin-top: 5px;
}

/* File Upload */
.file-upload {
    border: 2px dashed #ddd;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.file-upload:hover {
    border-color: var(--primary-color);
}

.file-upload__input {
    display: none;
}

.file-upload__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: var(--gray-color);
}

.file-upload__label svg {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.file-upload__preview {
    margin-top: 20px;
}

.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.file-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.file-name {
    font-size: 14px;
    color: var(--dark-color);
}

.file-size {
    font-size: 13px;
    color: var(--gray-light);
}

/* Alternative Methods */
.alternative-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.alternative-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.alternative-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.alternative-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.alternative-card__title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.alternative-card__description {
    font-size: 15px;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* 404 Page Styles */
.not-found-hero {
    text-align: center;
    padding: 120px 0;
    background-color: #f9f9f9;
}

.not-found-hero__title {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.not-found-hero__subtitle {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.not-found-hero__image {
    max-width: 400px;
    margin: 0 auto 40px;
}

.not-found-hero__image img {
    width: 100%;
    height: auto;
}

.not-found-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Suggestions Section */
.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.suggestion-card {
    display: block;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.suggestion-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.suggestion-card__title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.suggestion-card__description {
    font-size: 14px;
    color: var(--gray-color);
}

/* Coming Soon Page Styles */
.header--transparent {
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.header--transparent .nav__link {
    color: white;
}

.header--transparent .logo__text {
    color: white;
}

.header--transparent .burger span {
    background-color: white;
}

.coming-soon-hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.coming-soon-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/css/img/coming-soon-pattern.png');
    background-size: cover;
    opacity: 0.1;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.coming-soon-title {
    font-size: 72px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.coming-soon-subtitle {
    font-size: 24px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 60px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    line-height: 1;
}

.countdown-label {
    font-size: 16px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-form {
    max-width: 500px;
    margin: 0 auto 40px;
}

.coming-soon-form .form-group {
    display: flex;
    margin-bottom: 15px;
}

.coming-soon-form .form-input {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 16px;
}

.coming-soon-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.form-agreement {
    text-align: left;
    font-size: 14px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Coming Soon Features */
.coming-soon-features {
    padding: 100px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 25px;
    color: white;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-description {
    color: var(--gray-color);
    font-size: 16px;
    line-height: 1.6;
}