/* =========================================================
   VLADPROXY SERVICE PAGE
   ========================================================= */

.service-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   HERO
   ========================================================= */

.service-hero {
    padding-top: 60px;
}

.service-hero .hero-title {
    margin-bottom: 0;
}

.service-hero-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 24px;

    padding: 14px;

    background: var(--surface-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.service-hero-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.service-category {
    margin-bottom: 14px;

    color: var(--indigo);

    font-size: var(--text-sm);
    font-weight: 600;
}

.service-hero .hero-headline {
    max-width: 850px;
    margin-inline: auto;
}

.service-hero .hero-tagline {
    max-width: 650px;
}

.service-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 30px;
}

.service-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-hero-actions svg {
    width: 20px;
    height: 20px;
}

.service-outline-btn {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: var(--btn-padding-md);

    border: 1px solid var(--border);
    border-radius: var(--theme-radius);

    color: var(--foreground);

    transition: all .15s var(--transition-function-1);
}

.service-outline-btn:hover {
    color: var(--foreground);
    background: var(--accent);
}


/* =========================================================
   CONTENT
   ========================================================= */

.service-content-section {
    border-top: 1px solid var(--border);
}

.service-text {
    color: var(--foreground-text);

    font-size: var(--text-lg);
    line-height: var(--leading-loose);
}

.service-text p {
    margin-bottom: var(--space-6);
}

.service-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FEATURES
   ========================================================= */

.service-features-section {
    border-top: 1px solid var(--border);
}

.service-feature {
    height: 100%;

    display: flex;
    flex-direction: column;

    padding: var(--space-6);

    background: var(--surface-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    transition: border-color .15s var(--transition-function-1);
}

.service-feature:hover {
    border-color: color-mix(
        in srgb,
        var(--indigo),
        var(--border) 70%
    );
}

.service-feature-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: var(--space-6);

    border-radius: var(--radius-sm);

    background: color-mix(
        in srgb,
        var(--indigo),
        transparent 88%
    );

    color: var(--indigo);

    font-size: 14px;
}


/* =========================================================
   CONNECTION
   ========================================================= */

.service-connection-section {
    border-top: 1px solid var(--border);
}


/*
 * Левая карточка специально сделана
 * в стилистике существующего
 * .hosting-solutions-section .ui-content
 */

.service-connection-content {
    position: relative;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;

    padding: 50px;

    overflow: hidden;

    background: var(--surface-bg);
    border-radius: var(--radius-md);
}

.service-connection-content::after {
    content: "";

    position: absolute;
    inset: 0;

    padding: 2px;

    border-radius: var(--radius-md);

    background: var(--linear-gradient);
    background-size: 100% 100%;

    -webkit-mask:
        linear-gradient(var(--extracted-color-5) 0 0) content-box,
        linear-gradient(var(--extracted-color-5) 0 0);

    mask:
        linear-gradient(var(--extracted-color-5) 0 0) content-box,
        linear-gradient(var(--extracted-color-5) 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.service-connection-subtitle,
.service-connection-title,
.service-connection-content p,
.service-connection-content .btn {
    position: relative;
    z-index: 2;
}

.service-connection-title {
    max-width: 500px;
    line-height: 1.2;
}

.service-connection-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-connection-content .btn svg {
    width: 20px;
    height: 20px;
}


/* =========================================================
   DEVICES
   ========================================================= */

.service-devices-section {
    border-top: 1px solid var(--border);
}

.service-device {
    height: 100%;

    display: flex;
    align-items: center;

    gap: var(--space-4);

    padding: var(--space-5);

    background: var(--surface-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    transition: all .15s var(--transition-function-1);
}

.service-device:hover {
    border-color: color-mix(
        in srgb,
        var(--indigo),
        var(--border) 70%
    );
}

.service-device-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 48px;

    background: var(--card);
    border-radius: var(--radius-sm);

    color: var(--foreground);

    font-size: 21px;
}

.service-device h3 {
    line-height: 1.2;
}


/* =========================================================
   FAQ
   ========================================================= */

.service-faq-section {
    border-top: 1px solid var(--border);
}

.service-faq {
    border-top: 1px solid var(--border);
}

.service-faq-item {
    border-bottom: 1px solid var(--border);
}

.service-faq-item summary {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: var(--space-4);

    cursor: pointer;

    color: var(--foreground);

    font-size: var(--text-base);
    font-weight: 600;

    list-style: none;
}

.service-faq-item summary::-webkit-details-marker {
    display: none;
}

.service-faq-item summary i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 32px;

    color: var(--muted-foreground);

    font-size: 12px;

    transition: transform .2s var(--transition-function-1);
}

.service-faq-item[open] summary i {
    transform: rotate(45deg);
}

.service-faq-answer {
    max-width: 800px;

    padding: 0 0 var(--space-6);
}

.service-faq-answer p {
    margin: 0;

    color: var(--muted-foreground);

    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.service-bottom-section {
    border-top: 1px solid var(--border);
}

.service-bottom {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: var(--space-8);

    padding: var(--space-8);

    overflow: hidden;

    background: var(--surface-bg);
    border-radius: var(--radius-md);
}

.service-bottom::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    top: -120px;

    border-radius: var(--radius-full);

    background: var(--indigo);

    filter: blur(100px);

    opacity: .12;

    pointer-events: none;
}

.service-bottom > * {
    position: relative;
    z-index: 1;
}

.service-bottom .btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-bottom .btn svg {
    width: 20px;
    height: 20px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    .service-hero {
        padding-top: 40px;
    }

    .service-connection-content {
        min-height: 350px;
    }

    .service-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-bottom .btn {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 767.98px) {

    .service-hero-icon {
        width: 60px;
        height: 60px;

        padding: 12px;

        margin-bottom: 20px;
    }

    .service-hero-actions {
        flex-direction: column;

        width: 100%;
    }

    .service-hero-actions .btn,
    .service-outline-btn {
        width: 100%;
    }

    .service-connection-content {
        padding: 30px;
    }

    .service-connection-content .btn {
        width: 100%;
        justify-content: center;
    }

    .service-feature {
        padding: var(--space-5);
    }

    .service-device {
        padding: var(--space-4);
    }

    .service-bottom {
        padding: var(--space-6);
    }

    .service-text {
        font-size: var(--text-base);
    }
}


.service-hero-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 28px;
}

.service-hero-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-hero .hero-tagline {
    max-width: 600px;
    margin-bottom: 35px;
}

.service-hero .btn svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

@media (max-width: 767px) {
    .service-hero-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 22px;
    }

    .service-hero .hero-tagline {
        margin-bottom: 28px;
    }
}

/* ============================================
   SERVICE CONTENT
   ============================================ */

.service-content-section {
    position: relative;
}

.service-content-section .section-title-heading {
    margin-bottom: 45px;
}

.service-content-section .section-headline {
    max-width: 800px;
    margin: 0 auto;
}

/* Main content box */

.service-content-box {
    position: relative;
    padding: 42px 48px;
    background: var(--surface-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

/* Paragraph item */

.service-content-item {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 22px;
    padding: 0 0 28px;
}

.service-content-item:not(:last-child) {
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

/* Number */

.service-content-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--muted-foreground);

    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 500;

    transition: all .25s ease;
}

/* Text */

.service-content-item p {
    margin: 4px 0 0;

    color: var(--foreground-text);
    font-size: 16px;
    line-height: 1.8;
}

.service-content-item:hover .service-content-number {
    color: var(--foreground);
    border-color: var(--indigo);
    box-shadow: 0 0 0 5px rgba(79, 57, 246, .08);
}


/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 767px) {

    .service-content-section .section-title-heading {
        margin-bottom: 30px;
    }

    .service-content-box {
        padding: 28px 22px;
    }

    .service-content-item {
        grid-template-columns: 34px 1fr;
        gap: 14px;
        padding-bottom: 22px;
    }

    .service-content-item:not(:last-child) {
        margin-bottom: 22px;
    }

    .service-content-number {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }

    .service-content-item p {
        margin-top: 2px;
        font-size: 15px;
        line-height: 1.7;
    }

}

/* Убираем разделительные линии между секциями */
.service-page .service-content-section,
.service-page .service-features-section,
.service-page .service-connection-section,
.service-page .service-devices-section,
.service-page .service-faq-section,
.service-page .service-bottom-section {
    border-top: 0 !important;
}

/* =========================================================
   SERVICE HERO
   ========================================================= */

.service-hero {
    padding-top: 40px;
    padding-bottom: 70px;

    border: 0 !important;
}

.service-hero-card {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 80px 40px;

    background: var(--surface-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.service-hero-card::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: var(--indigo);

    opacity: .08;

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;
}

.service-hero-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 255, 255, .035),
            transparent 45%
        );

    pointer-events: none;
}


/* =========================================================
   CONTENT
   ========================================================= */

.service-hero-content {
    position: relative;

    z-index: 10;

    width: 100%;
    max-width: 1050px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* =========================================================
   MAIN ICON
   ========================================================= */

.service-hero-main-icon {
    width: 88px;
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 32px;
    padding: 18px;

    background: var(--card);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .25);
}

.service-hero-main-icon img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   TITLE
   ========================================================= */

.service-hero-title {
    max-width: 1050px;

    margin: 0 auto 28px;

    color: var(--foreground);

    font-size: clamp(42px, 5vw, 76px);
    font-weight: 600;

    line-height: 1.05;
    letter-spacing: -2px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.service-hero-description {
    max-width: 720px;

    margin: 0 auto 36px;

    color: var(--muted-foreground);

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   BUTTON
   ========================================================= */

.service-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding-left: 26px;
    padding-right: 26px;
}


/* =========================================================
   FLOATING LOGOS
   ========================================================= */

.service-hero-floating {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;
}

.service-floating-logo {
    position: absolute;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px;

    background: rgba(255, 255, 255, .025);

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: var(--radius-md);

    opacity: .18;

    filter: blur(.2px);
}

.service-floating-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   FLOATING POSITIONS
   ========================================================= */

.service-floating-logo-1 {
    left: 10%;
    top: 18%;

    animation: serviceFloatOne 8s ease-in-out infinite;
}

.service-floating-logo-2 {
    right: 11%;
    top: 16%;

    animation: serviceFloatTwo 10s ease-in-out infinite;
}

.service-floating-logo-3 {
    left: 6%;
    bottom: 18%;

    animation: serviceFloatThree 9s ease-in-out infinite;
}

.service-floating-logo-4 {
    right: 7%;
    bottom: 20%;

    animation: serviceFloatFour 11s ease-in-out infinite;
}

.service-floating-logo-5 {
    left: 24%;
    top: 10%;

    width: 40px;
    height: 40px;

    opacity: .10;

    animation: serviceFloatFive 12s ease-in-out infinite;
}

.service-floating-logo-6 {
    right: 25%;
    bottom: 10%;

    width: 44px;
    height: 44px;

    opacity: .10;

    animation: serviceFloatSix 10s ease-in-out infinite;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes serviceFloatOne {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-4deg);
    }

    50% {
        transform: translate3d(18px, -24px, 0) rotate(4deg);
    }
}

@keyframes serviceFloatTwo {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(5deg);
    }

    50% {
        transform: translate3d(-22px, 20px, 0) rotate(-3deg);
    }
}

@keyframes serviceFloatThree {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(3deg);
    }

    50% {
        transform: translate3d(20px, 18px, 0) rotate(-5deg);
    }
}

@keyframes serviceFloatFour {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-3deg);
    }

    50% {
        transform: translate3d(-18px, -22px, 0) rotate(5deg);
    }
}

@keyframes serviceFloatFive {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-15px, 25px, 0);
    }
}

@keyframes serviceFloatSix {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(16px, -20px, 0);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .service-hero-card {
        min-height: 560px;

        padding: 70px 30px;
    }

    .service-hero-title {
        font-size: clamp(40px, 7vw, 60px);
    }

    .service-hero-description {
        max-width: 600px;
        font-size: 17px;
    }

    .service-floating-logo-5,
    .service-floating-logo-6 {
        display: none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .service-hero {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .service-hero-card {
        min-height: 520px;

        padding: 60px 22px;

        border-radius: var(--radius-md);
    }

    .service-hero-main-icon {
        width: 70px;
        height: 70px;

        padding: 14px;

        margin-bottom: 25px;
    }

    .service-hero-title {
        font-size: 40px;
        line-height: 1.08;
        letter-spacing: -1.2px;

        margin-bottom: 22px;
    }

    .service-hero-description {
        font-size: 15px;
        line-height: 1.65;

        margin-bottom: 28px;
    }

    .service-hero-button {
        width: 100%;
    }

    .service-floating-logo {
        width: 42px;
        height: 42px;

        padding: 9px;

        opacity: .12;
    }

    .service-floating-logo-1 {
        left: 5%;
        top: 12%;
    }

    .service-floating-logo-2 {
        right: 5%;
        top: 10%;
    }

    .service-floating-logo-3 {
        left: 5%;
        bottom: 12%;
    }

    .service-floating-logo-4 {
        right: 5%;
        bottom: 10%;
    }

}

/* =========================================================
   FAQ
   ========================================================= */

.service-faq-section {
    position: relative;
    border-top: 0 !important;
}


/* =========================================================
   FAQ LAYOUT
   ========================================================= */

.service-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: 100px;

    align-items: start;
}


/* =========================================================
   FAQ INTRO
   ========================================================= */

.service-faq-intro {
    position: sticky;
    top: 100px;
}

.service-faq-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 20px;

    color: var(--indigo);

    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-faq-label::before {
    content: "";

    width: 6px;
    height: 6px;

    margin-right: 10px;

    border-radius: 50%;
    background: var(--indigo);
}

.service-faq-intro h2 {
    margin-bottom: 20px;
}

.service-faq-intro p {
    max-width: 380px;

    margin: 0;

    color: var(--muted-foreground);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   FAQ LIST
   ========================================================= */

.service-faq-list {
    width: 100%;
}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.service-faq-item {
    position: relative;

    margin-bottom: 12px;

    background: var(--surface-bg);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    overflow: hidden;

    transition:
        border-color .25s ease,
        background .25s ease;
}

.service-faq-item:last-child {
    margin-bottom: 0;
}

.service-faq-item:hover {
    border-color: rgba(255, 255, 255, .16);
}

.service-faq-item[open] {
    border-color: color-mix(
        in srgb,
        var(--indigo),
        var(--border) 65%
    );
}


/* =========================================================
   QUESTION
   ========================================================= */

.service-faq-item summary {
    min-height: 76px;

    display: grid;
    grid-template-columns: 44px 1fr 40px;

    align-items: center;

    gap: 18px;

    padding: 16px 20px;

    cursor: pointer;

    color: var(--foreground);

    list-style: none;
}

.service-faq-item summary::-webkit-details-marker {
    display: none;
}


/* =========================================================
   NUMBER
   ========================================================= */

.service-faq-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--muted-foreground);

    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 500;

    transition: all .25s ease;
}

.service-faq-item[open] .service-faq-number {
    color: var(--foreground);

    border-color: var(--indigo);

    background: color-mix(
        in srgb,
        var(--indigo),
        transparent 90%
    );
}


/* =========================================================
   QUESTION TEXT
   ========================================================= */

.service-faq-question {
    padding: 4px 0;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}


/* =========================================================
   TOGGLE
   ========================================================= */

.service-faq-toggle {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--muted-foreground);

    transition: all .25s ease;
}

.service-faq-toggle i {
    font-size: 11px;

    transition: transform .3s ease;
}

.service-faq-item[open] .service-faq-toggle {
    color: var(--foreground);

    border-color: var(--indigo);

    background: color-mix(
        in srgb,
        var(--indigo),
        transparent 90%
    );
}

.service-faq-item[open] .service-faq-toggle i {
    transform: rotate(45deg);
}


/* =========================================================
   ANSWER
   ========================================================= */

.service-faq-answer {
    padding: 0 78px 26px 82px;
}

.service-faq-answer p {
    margin: 0;

    color: var(--muted-foreground);

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    .service-faq-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-faq-intro {
        position: static;
    }

    .service-faq-intro p {
        max-width: 600px;
    }

}


@media (max-width: 767.98px) {

    .service-faq-layout {
        gap: 30px;
    }

    .service-faq-intro h2 {
        margin-bottom: 15px;
    }

    .service-faq-intro p {
        font-size: 15px;
    }

    .service-faq-item summary {
        min-height: 68px;

        grid-template-columns: 36px 1fr 34px;

        gap: 12px;

        padding: 14px 16px;
    }

    .service-faq-number {
        width: 32px;
        height: 32px;
    }

    .service-faq-question {
        font-size: 15px;
    }

    .service-faq-toggle {
        width: 32px;
        height: 32px;
    }

    .service-faq-answer {
        padding: 0 20px 22px 64px;
    }

    .service-faq-answer p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* =========================================================
   BOTTOM CTA
   ========================================================= */

.service-bottom-section {
    position: relative;

    border-top: 0 !important;
    border-bottom: 0 !important;
}

.service-bottom {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 70px 40px;

    overflow: hidden;

    text-align: center;

    background: var(--surface-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}


/* =========================================================
   BACKGROUND GLOW
   ========================================================= */

.service-bottom-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: var(--indigo);

    opacity: .09;

    filter: blur(110px);

    pointer-events: none;
}


/* =========================================================
   CONTENT
   ========================================================= */

.service-bottom-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================================
   LABEL
   ========================================================= */

.service-bottom-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 22px;

    color: var(--indigo);

    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 500;

    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-bottom-label::before {
    content: "";

    width: 6px;
    height: 6px;

    margin-right: 10px;

    border-radius: 50%;

    background: var(--indigo);

    box-shadow: 0 0 12px rgba(79, 57, 246, .6);
}


/* =========================================================
   TITLE
   ========================================================= */

.service-bottom-title {
    max-width: 850px;

    margin: 0 auto 22px;

    color: var(--foreground);

    font-size: clamp(38px, 5vw, 64px);
    font-weight: 600;

    line-height: 1.08;
    letter-spacing: -1.8px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.service-bottom-description {
    max-width: 620px;

    margin: 0 auto 32px;

    color: var(--muted-foreground);

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   BUTTON
   ========================================================= */

.service-bottom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 26px;
}

.service-bottom-button svg {
    width: 20px;
    height: 20px;
}


/* =========================================================
   HOVER
   ========================================================= */

.service-bottom {
    transition: border-color .25s ease;
}

.service-bottom:hover {
    border-color: rgba(255, 255, 255, .16);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    .service-bottom {
        min-height: 380px;

        padding: 60px 35px;
    }

    .service-bottom-title {
        font-size: clamp(36px, 7vw, 52px);
    }

}


@media (max-width: 767.98px) {

    .service-bottom {
        min-height: 420px;

        padding: 50px 22px;

        border-radius: var(--radius-md);
    }

    .service-bottom-title {
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -1px;

        margin-bottom: 18px;
    }

    .service-bottom-description {
        font-size: 15px;
        line-height: 1.65;

        margin-bottom: 28px;
    }

    .service-bottom-button {
        width: 100%;
    }

}

/* =========================================================
   QUICK ACTIONS / HERO
   ========================================================= */

.quick-actions-header {
    padding-bottom: 70px;

    border: 0 !important;
}

.quick-actions-card {
    position: relative;

    min-height: 720px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 90px 40px 70px;

    overflow: hidden;

    text-align: center;

}


/* =========================================================
   BACKGROUND
   ========================================================= */

.quick-actions-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(255, 255, 255, .035),
            transparent 42%
        );

    pointer-events: none;
}

.quick-actions-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    left: 50%;
    top: 45%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: var(--indigo);

    opacity: .08;

    filter: blur(130px);

    pointer-events: none;
}


/* =========================================================
   CONTENT
   ========================================================= */

.quick-actions-content {
    position: relative;

    z-index: 10;

    max-width: 1000px;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================================
   BADGE
   ========================================================= */

.quick-actions-badge {
    display: inline-flex;
    align-items: center;

    margin-bottom: 25px;

    color: var(--indigo);

    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 500;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.quick-actions-badge::before {
    content: "";

    width: 6px;
    height: 6px;

    margin-right: 10px;

    border-radius: 50%;

    background: var(--indigo);

    box-shadow:
        0 0 12px rgba(79, 57, 246, .7);
}


/* =========================================================
   TITLE
   ========================================================= */

.quick-actions-title {
    max-width: 1000px;

    margin: 0 auto 28px;

    color: var(--foreground);

    font-size: clamp(48px, 3vw, 82px);
    font-weight: 600;

    line-height: 1.02;
    letter-spacing: -2.8px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.quick-actions-description {
    max-width: 700px;

    margin: 0 auto 34px;

    color: var(--muted-foreground);

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.quick-actions-buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;
}

.quick-actions-secondary-btn {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    color: var(--foreground);

    border: 1px solid var(--border);
    border-radius: var(--theme-radius);

    transition:
        background .2s ease,
        border-color .2s ease;
}

.quick-actions-secondary-btn:hover {
    color: var(--foreground);

    background: var(--accent);

    border-color: rgba(255, 255, 255, .16);
}


/* =========================================================
   SERVICES
   ========================================================= */

.quick-actions-services {
    position: relative;
    z-index: 10;

    width: 100%;
    max-width: 1250px;

    display: grid;

    grid-template-columns: repeat(8, minmax(0, 1fr));

    gap: 10px;

    margin: 60px auto 0;
}

.quick-service {
    min-width: 0;
    height: 98px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 6px;

    background: rgba(255, 255, 255, .018);

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: var(--radius-md);

    color: var(--muted-foreground);

    text-decoration: none;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease;
}

.quick-service:hover {
    transform: translateY(-4px);

    color: var(--foreground);

    background: rgba(79, 57, 246, .07);

    border-color: rgba(79, 57, 246, .35);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .18),
        0 0 25px rgba(79, 57, 246, .08);
}

.quick-service img {
    width: 30px;
    height: 30px;

    object-fit: contain;

    display: block;

    transition: transform .25s ease;
}

.quick-service:hover img {
    transform: scale(1.08);
}

.quick-service span {
    display: block;

    width: 100%;

    overflow: hidden;

    text-align: center;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 11px;

    line-height: 1;
}


/* =========================================================
   FLOATING LOGOS
   ========================================================= */

.quick-actions-floating {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;
}

.quick-floating-item {
    position: absolute;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px;

    background: rgba(255, 255, 255, .02);

    border: 1px solid rgba(255, 255, 255, .05);

    border-radius: var(--radius-md);

    opacity: .14;

    filter: blur(.2px);
}

.quick-floating-item img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   FLOATING POSITIONS
   ========================================================= */

.quick-floating-1 {
    left: 8%;
    top: 18%;

    animation: quickFloat1 9s ease-in-out infinite;
}

.quick-floating-2 {
    right: 9%;
    top: 15%;

    animation: quickFloat2 11s ease-in-out infinite;
}

.quick-floating-3 {
    left: 5%;
    bottom: 24%;

    animation: quickFloat3 10s ease-in-out infinite;
}

.Войти в кабинетquick-floating-4 {
    right: 6%;
    bottom: 23%;

    animation: quickFloat4 12s ease-in-out infinite;
}

.quick-floating-5 {
    left: 22%;
    top: 10%;

    width: 42px;
    height: 42px;

    opacity: .09;

    animation: quickFloat5 13s ease-in-out infinite;
}

.quick-floating-6 {
    right: 22%;
    top: 10%;

    width: 46px;
    height: 46px;

    opacity: .09;

    animation: quickFloat6 10s ease-in-out infinite;
}

.quick-floating-7 {
    left: 19%;
    bottom: 10%;

    width: 44px;
    height: 44px;

    opacity: .09;

    animation: quickFloat7 12s ease-in-out infinite;
}

.quick-floating-8 {
    right: 19%;
    bottom: 9%;

    width: 44px;
    height: 44px;

    opacity: .09;

    animation: quickFloat8 11s ease-in-out infinite;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes quickFloat1 {
    0%, 100% {
        transform: translate(0, 0) rotate(-4deg);
    }

    50% {
        transform: translate(20px, -25px) rotate(4deg);
    }
}

@keyframes quickFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(4deg);
    }

    50% {
        transform: translate(-22px, 22px) rotate(-4deg);
    }
}

@keyframes quickFloat3 {
    0%, 100% {
        transform: translate(0, 0) rotate(3deg);
    }

    50% {
        transform: translate(18px, 20px) rotate(-4deg);
    }
}

@keyframes quickFloat4 {
    0%, 100% {
        transform: translate(0, 0) rotate(-3deg);
    }

    50% {
        transform: translate(-20px, -20px) rotate(4deg);
    }
}

@keyframes quickFloat5 {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-15px, 25px);
    }
}

@keyframes quickFloat6 {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(18px, 20px);
    }
}

@keyframes quickFloat7 {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -18px);
    }
}

@keyframes quickFloat8 {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-18px, -22px);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .quick-actions-services {
        grid-template-columns: repeat(4, 1fr);
    }

    .quick-actions-card {
        min-height: 680px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .quick-actions-header {
        padding-bottom: 40px;
    }

    .quick-actions-card {
        min-height: 650px;

        padding: 60px 20px 35px;

        border-radius: var(--radius-md);
    }

    .quick-actions-badge {
        font-size: 10px;
    }

    .quick-actions-title {
        font-size: 40px;

        line-height: 1.07;
        letter-spacing: -1.3px;

        margin-bottom: 22px;
    }

    .quick-actions-description {
        font-size: 15px;
        line-height: 1.65;

        margin-bottom: 28px;
    }

    .quick-actions-buttons {
        width: 100%;

        flex-direction: column;
    }

    .quick-actions-buttons .btn,
    .quick-actions-secondary-btn {
        width: 100%;
    }

    .quick-actions-services {
        grid-template-columns: repeat(4, 1fr);

        gap: 8px;

        margin-top: 45px;
    }

    .quick-service {
        min-height: 75px;

        padding: 10px 5px;

        gap: 7px;
    }

    .quick-service img {
        width: 26px;
        height: 26px;
    }

    .quick-service span {
        font-size: 10px;
    }

    .quick-floating-item {
        width: 42px;
        height: 42px;

        padding: 9px;

        opacity: .09;
    }

    .quick-floating-5,
    .quick-floating-6,
    .quick-floating-7,
    .quick-floating-8 {
        display: none;
    }

}

/* =========================================================
   PRICING
   ========================================================= */

.basic-plans-section {
    position: relative;
    border: 0 !important;
}


/* =========================================================
   HEADING
   ========================================================= */

.plans-heading {
    text-align: center;
    margin-bottom: 55px;
}

.plans-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;

    color: var(--indigo);

    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 500;

    letter-spacing: .1em;
    text-transform: uppercase;
}

.plans-label::before {
    content: "";

    width: 6px;
    height: 6px;

    margin-right: 10px;

    border-radius: 50%;

    background: var(--indigo);

    box-shadow: 0 0 12px rgba(79, 57, 246, .7);
}

.plans-title {
    margin: 0 0 18px;

    color: var(--foreground);

    font-size: clamp(30px, 3vw, 42px);
    font-weight: 600;

    line-height: 1.05;
    letter-spacing: -1.8px;
}

.plans-description {
    max-width: 600px;

    margin: 0 auto;

    color: var(--muted-foreground);

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   PLAN CARD
   ========================================================= */

.plan-card {
    position: relative;

    height: 100%;

    display: flex;
    flex-direction: column;

    background: var(--surface-bg);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    overflow: hidden;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

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

    border-color: rgba(255, 255, 255, .16);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .18);
}


/* =========================================================
   POPULAR CARD
   ========================================================= */

.plan-card-popular {
    border-color: color-mix(
        in srgb,
        var(--indigo),
        var(--border) 45%
    );

    box-shadow:
        0 20px 80px rgba(79, 57, 246, .10);
}

.plan-card-popular::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: 50%;
    top: 20%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: var(--indigo);

    opacity: .07;

    filter: blur(80px);

    pointer-events: none;
}

.plan-popular-label {
    position: relative;

    z-index: 2;

    padding: 10px 20px;

    text-align: center;

    color: var(--foreground);

    background: color-mix(
        in srgb,
        var(--indigo),
        transparent 88%
    );

    border-bottom: 1px solid color-mix(
        in srgb,
        var(--indigo),
        var(--border) 70%
    );

    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 500;

    letter-spacing: .1em;
}


/* =========================================================
   PLAN HEADER
   ========================================================= */

.plan-card .plan-header {
    position: relative;

    z-index: 2;

    padding: 32px 32px 0;
}

.plan-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 28px;
}

.plan-title h3 {
    margin: 0;
}


/* =========================================================
   BADGE
   ========================================================= */

.plan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    min-height: 28px;

    padding: 0 10px;

    color: var(--foreground);

    background: color-mix(
        in srgb,
        var(--indigo),
        transparent 88%
    );

    border: 1px solid color-mix(
        in srgb,
        var(--indigo),
        var(--border) 70%
    );

    border-radius: 999px;

    font-size: 11px;
    font-weight: 600;
}

.plan-badge-muted {
    color: var(--muted-foreground);

    background: transparent;

    border-color: var(--border);
}


/* =========================================================
   PRICE
   ========================================================= */

.plan-price {
    min-height: 115px;

    margin-bottom: 28px;
}

.plan-price-label {
    min-height: 22px;

    margin-bottom: 7px;

    color: var(--muted-foreground);

    font-size: 12px;
}

.plan-price-value {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;

    gap: 8px;

    color: var(--foreground);

    font-size: 34px;
    font-weight: 700;

    line-height: 1.1;
}

.plan-price-value del {
    color: var(--muted-foreground);

    font-size: 16px;
    font-weight: 400;
}

.plan-price-month {
    margin-top: 8px;

    color: var(--muted-foreground);

    font-size: 12px;
}


/* =========================================================
   ACTION
   ========================================================= */

.plan-card .plan-action {
    margin-bottom: 32px;
}

.plan-card .plan-action .btn {
    min-height: 48px;

    font-weight: 600;
}


/* =========================================================
   FEATURES
   ========================================================= */

.plan-card .plan-features {
    position: relative;

    z-index: 2;

    flex: 1;

    padding-top: 28px !important;
    padding-bottom: 32px !important;

    border-top: 1px solid var(--border);
}

.plan-card .features-title {
    margin-bottom: 22px !important;
}

.plan-card .features-list {
    margin: 0;
}

.plan-card .features-list li {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--foreground-text);

    font-size: 14px;
    line-height: 1.5;
}

.plan-card .features-list li::first-letter {
    color: var(--indigo);
}


/* =========================================================
   BOTTOM NOTE
   ========================================================= */

.plans-note {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 30px;

    color: var(--muted-foreground);

    font-size: 13px;
}

.plans-note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    color: var(--foreground);

    background: color-mix(
        in srgb,
        var(--indigo),
        transparent 85%
    );

    font-size: 11px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199.98px) {

    .plan-card .plan-header {
        padding-left: 26px;
        padding-right: 26px;
    }

    .plan-card .plan-features {
        padding-left: 26px !important;
        padding-right: 26px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .plans-heading {
        margin-bottom: 35px;
    }

    .plans-title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .plans-description {
        font-size: 15px;
    }

    .plan-card .plan-header {
        padding: 28px 24px 0;
    }

    .plan-title {
        margin-bottom: 22px;
    }

    .plan-price {
        min-height: auto;

        margin-bottom: 25px;
    }

    .plan-price-value {
        font-size: 32px;
    }

    .plan-card .plan-features {
        padding: 24px !important;
    }

    .plans-note {
        align-items: flex-start;

        text-align: center;

        font-size: 12px;
    }

}

.basic-features-card {
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.basic-features-card:hover {
    transform: translateY(-5px);

    border-color: rgba(79, 57, 246, 0.45);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 0 35px rgba(79, 57, 246, 0.08);
}

.footer-bottom {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Logo */

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

/* Нижняя строка */

.footer-bottom-row {
    width: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}

/* Текст */

.footer-info {
    min-width: 0;
}

.footer-info p {
    margin: 0;
}

.footer-disclaimer {
    margin-top: 7px !important;
    max-width: 700px;

    color: var(--muted-foreground);
    font-size: 12px;
    line-height: 1.5;
}

/* Ссылки */

.footer-links {
    display: flex;
    align-items: center;
    gap: 25px;

    margin: 0;
    padding: 0;

    flex-shrink: 0;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--muted-foreground);
    font-size: 13px;
    text-decoration: none;

    transition: color .25s ease;
}

.footer-links a:hover {
    color: var(--foreground);
}

/* Mobile */

@media (max-width: 767px) {
    .footer-bottom {
        padding: 30px 0;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-logo img {
        width: 120px;
    }
}
