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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background: #0a0a0a;
    antialiased: true;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(120, 119, 198, 0.15);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 32px rgba(88, 28, 135, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.header__nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #a0a0a0;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #a855f7, #3b82f6, #06b6d4);
    transition: width 0.2s ease;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__auth {
    display: flex;
    align-items: center;
}

.login-btn {
    text-decoration: none;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(160, 160, 160, 0.2);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.login-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    padding: 200px 0 160px;
    background: radial-gradient(ellipse at top, rgba(24, 24, 27, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3), transparent);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero__title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 30%, #a855f7 70%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 18px;
    color: rgba(160, 160, 160, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero__form {
    display: flex;
    gap: 12px;
    max-width: 480px;
}

.form__input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.form__input::placeholder {
    color: rgba(160, 160, 160, 0.7);
}

.form__input:focus {
    outline: none;
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form__button {
    padding: 16px 28px;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.form__button:hover {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.hero__img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* Logos Section */
.logos {
    padding: 60px 0;
    background: rgba(16, 16, 16, 0.5);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    position: relative;
}

.logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.02), transparent);
    pointer-events: none;
}

.logos__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logos__img {
    max-width: 150px;
    height: auto;
    opacity: 0.3;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.logos__img:hover {
    opacity: 0.6;
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 120px 0 180px;
    background: #0a0a0a;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    padding: 0 20px;
}

.feature--reverse {
    grid-template-columns: 1fr 1fr;
}

.feature--reverse .feature__image {
    order: 2;
}

.feature--reverse .feature__content {
    order: 1;
}

.feature__img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    background: rgba(168, 85, 247, 0.03);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.1);
}

.feature__title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature__description {
    font-size: 18px;
    color: rgba(160, 160, 160, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

/* Benefits Section */
.benefits {
    padding: 160px 0 180px;
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.8) 0%, rgba(24, 24, 27, 0.6) 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), rgba(168, 85, 247, 0.3), transparent);
}

.benefits__header {
    text-align: center;
    margin-bottom: 100px;
}

.section__title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 40%, #3b82f6 80%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__description {
    font-size: 20px;
    color: rgba(160, 160, 160, 0.8);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.1);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card__icon {
    margin-bottom: 32px;
}

.benefit-card__img {
    width: 48px;
    height: 48px;
    color: #a855f7;
    stroke-width: 1.5;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-card__img {
    color: #3b82f6;
}

.benefit-card__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-card__description {
    font-size: 16px;
    color: rgba(160, 160, 160, 0.9);
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 160px 0 160px;
    background: #0a0a0a;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3), transparent);
}

.reviews .section__title {
    text-align: center;
    margin-bottom: 80px;
}

.reviews__slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.review {
    display: none;
    text-align: center;
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    opacity: 0.5;
}

.review.active {
    display: block;
}

.review__text {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
    font-style: italic;
}

.review__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.review__avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    object-fit: cover;
    object-position: center;
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.2);
}

.review__info {
    text-align: left;
}

.review__name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.review__position {
    font-size: 16px;
    color: rgba(160, 160, 160, 0.8);
}

.reviews__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.review-nav__btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-nav__btn.active {
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.4);
}

/* Contact Section */
.contact {
    padding: 160px 0;
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.9) 0%, rgba(16, 16, 16, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), rgba(168, 85, 247, 0.4), transparent);
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact__content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.contact__title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 30%, #a855f7 70%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact__description {
    font-size: 20px;
    margin-bottom: 48px;
    color: rgba(160, 160, 160, 0.8);
    line-height: 1.6;
}

.contact__form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 12px;
}

.contact__input {
    flex: 1;
    padding: 18px 24px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    background: rgba(255, 255, 255, 0.03);
    font-size: 16px;
    outline: none;
    color: #ffffff;
    border-radius: 12px;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.contact__input::placeholder {
    color: rgba(160, 160, 160, 0.7);
}

.contact__input:focus {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.08);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

.contact__button {
    padding: 18px 32px;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.contact__button:hover {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}


/* Footer */
.footer {
    padding: 100px 0 0;
    background: linear-gradient(135deg, rgba(6, 6, 6, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 40%),
        linear-gradient(135deg, rgba(168, 85, 247, 0.02) 0%, transparent 50%, rgba(59, 130, 246, 0.02) 100%);
    pointer-events: none;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer__brand {
    max-width: 400px;
}

.footer__logo {
    margin-bottom: 24px;
}

.footer__logo .logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.footer__tagline {
    font-size: 16px;
    color: rgba(160, 160, 160, 0.8);
    line-height: 1.6;
    margin: 0 0 24px 0;
    font-weight: 400;
}

.footer__links {
    display: flex;
    justify-content: flex-end;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin-bottom: 16px;
}

.footer__link {
    color: rgba(160, 160, 160, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.2s ease;
    position: relative;
}

.footer__link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer__link::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #a855f7, #3b82f6);
    transition: width 0.2s ease;
}

.footer__link:hover::before {
    width: 8px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__contact .footer__company {
    font-size: 16px;
    font-weight: 400;
    color: rgba(160, 160, 160, 0.8);
    margin-bottom: 0;
}

.footer__contact .footer__inn {
    font-size: 16px;
    font-weight: 400;
    color: rgba(160, 160, 160, 0.8);
    margin-bottom: 0;
}

.footer__phone {
    margin-bottom: 0;
}

.footer__phone a {
    color: rgba(160, 160, 160, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__phone a:hover {
    color: #a855f7;
    transform: translateX(4px);
}

.footer__email {
    font-size: 16px;
    color: rgba(160, 160, 160, 0.8);
    line-height: 1.6;
}

.footer__email a {
    color: rgba(160, 160, 160, 0.8);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__email a:hover {
    color: #3b82f6;
    transform: translateX(4px);
}


.footer__brand .footer__copyright {
    font-size: 14px;
    color: rgba(160, 160, 160, 0.6);
    margin: 0;
    line-height: 1.5;
}


/* Responsive Design */
@media (max-width: 1199px) {
    .hero__title {
        font-size: 40px;
    }
    
    .feature__title {
        font-size: 36px;
    }

    .section__title {
        font-size: 42px;
    }

    .contact__title {
        font-size: 42px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    backdrop-filter: blur(16px);
    padding: 24px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav .nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav .nav-link:last-child {
    border-bottom: none;
}

@media (max-width: 959px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero__form {
        justify-self: center;
    }
    
    .logos__row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .logos__img {
        max-width: 100px;
        flex-shrink: 0;
    }
    
    .header__nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
    
    .feature {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature--reverse .feature__image {
        order: unset;
    }

    .feature--reverse .feature__content {
        order: unset;
    }
    
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer__main {
        display: flex;
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .footer__brand {
        order: 2;
        max-width: none;
    }
    
    .footer__links {
        order: 1;
        justify-content: center;
    }
    
    .footer__column {
        align-items: center;
    }
}

@media (max-width: 639px) {
    .hero__title {
        font-size: 32px;
    }
    
    .hero__form {
        flex-direction: column;
        gap: 16px;
        max-width: 100%;
        width: 100%;
    }
    
    .form__input {
        width: 100%;
    }
    
    .form__button {
        width: 100%;
    }
    
    .benefits__grid {
        grid-template-columns: 1fr;
    }
    
    .review__author {
        flex-direction: column;
        text-align: center;
    }
    
    .review__info {
        text-align: center;
    }

    .section__title {
        font-size: 36px;
    }

    .contact__title {
        font-size: 36px;
    }

    .feature__title {
        font-size: 30px;
    }
}

@media (max-width: 479px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero__title {
        font-size: 28px;
    }
    
    .hero__description {
        font-size: 16px;
    }
    
    .section__title {
        font-size: 32px;
    }

    .contact__title {
        font-size: 32px;
    }

    .feature__title {
        font-size: 26px;
    }
    
    .footer {
        padding: 80px 0 0;
    }
    
    .footer__main {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer__brand {
        order: 2;
        max-width: none;
    }
    
    .footer__links {
        order: 1;
        justify-content: center;
    }
    
    .footer__column {
        align-items: center;
    }
    
    .logo-img {
        height: 36px !important;
    }
    
    .contact__form {
        flex-direction: column;
        max-width: 340px;
        gap: 16px;
        border-radius: 12px;
    }
    
    .contact__input {
        border-radius: 12px;
    }
    
    .contact__button {
        border-radius: 12px;
    }

    .review__text {
        font-size: 20px;
    }
    
    .reviews__slider {
        min-height: 450px;
    }

    .benefit-card {
        padding: 32px 24px;
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup {
    background: rgba(16, 16, 16, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    backdrop-filter: blur(16px);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15);
}

.popup-overlay.active .popup {
    transform: scale(1) translateY(0);
}

.popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.popup__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

.popup__icon svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2;
}

.popup__title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup__message {
    font-size: 18px;
    color: rgba(160, 160, 160, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
}

.popup__close {
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.popup__close:hover {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

/* Login Popup Styles */
.login-popup {
    max-width: 420px;
    padding: 40px 36px;
}

.popup__close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popup__close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.popup__close-btn svg {
    width: 20px;
    height: 20px;
    color: #a0a0a0;
}

.login-form {
    width: 100%;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: left;
}

.login-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.login-input::placeholder {
    color: rgba(160, 160, 160, 0.6);
}

.login-input:focus {
    outline: none;
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.login-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #fca5a5;
    font-size: 14px;
    text-align: left;
}

.login-submit {
    width: 100%;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
    margin-bottom: 24px;
}

.login-submit:hover {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.login-footer {
    text-align: center;
}

.forgot-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.forgot-link:hover {
    color: #a855f7;
}

/* Shake animation for login form */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}