/* css\style.css */
@font-face {
    font-family: 'Inter';
    src: url('https://flbot.pro/fonts/Inter-Medium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('https://flbot.pro/fonts/Inter-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: white;
    overflow-x: hidden;
}

main {
    padding: var(--padding);
}

:root {
    --padding: 20px;
    --border-radius: 15px;
}

@media (min-width: 1600px) {
    body {
        zoom: 1.25;
        transform-origin: top center;
    }
}


.animate {
    opacity: 0;
    transition: transform 1.2s cubic-bezier(.22, .9, .38, 1), opacity 0.8s ease;
}

/* стартовые позиции — задаём через атрибут data-animate */
.animate[data-animate="left"] {
    transform: translate3d(-80px, 0, 0);
}

.animate[data-animate="right"] {
    transform: translate3d(80px, 0, 0);
}

.animate[data-animate="top"] {
    transform: translate3d(0, -60px, 0);
}

.animate[data-animate="bottom"] {
    transform: translate3d(0, 60px, 0);
}

/* конечное состояние */
.animate.show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}


/* main */

.main {
    position: relative;
    background: rgba(243, 249, 255, 1);
    box-shadow: 0px 0px 20px 0px rgba(30, 55, 143, 0.12) inset;
    border-radius: 40px;
    padding: 30px 65px 90px 65px;
    

    align-items: center;
    display: flex;
    overflow: visible;
}

.main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1, 120, 214, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.main::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 10s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) translateY(-20px);
        opacity: 0.7;
    }
}

.main__container {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.main__container h1 {
    font-weight: 600;
    font-size: 58px;
    line-height: 115%;
    letter-spacing: -0.02em;
    color: rgba(7, 10, 25, 0.95);
}

.main__container h1 .gradient-text {
    background: linear-gradient(135deg, rgba(1, 120, 214, 1) 0%, rgba(0, 85, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.main__container h2.subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: rgba(7, 10, 25, 0.6);
    margin-top: 20px;
    margin-bottom: 0;
    max-width: 600px;
}

.main__container p {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    margin-top: 25px;
    letter-spacing: 0%;
    color: rgba(7, 10, 25, 0.7);
    max-width: 550px;
}

.main__container a {
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(1, 120, 214, 1) 0%, rgba(0, 85, 255, 1) 100%);
    border-radius: 15px;
    padding: 20px 35px;
    font-weight: 600;
    font-size: 17px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(1, 120, 214, 0.3);
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: buttonGlow 3s ease-in-out infinite;
}

.main__container a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(1, 120, 214, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(1, 120, 214, 0.5), 0 0 40px rgba(1, 120, 214, 0.2);
    }
}

@keyframes shine {
    0% {
        left: -200%;
    }
    50%, 100% {
        left: 200%;
    }
}

.main__container a:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 30px rgba(1, 120, 214, 0.5), 0 0 50px rgba(0, 200, 255, 0.4);
}

.main__container div {
    margin-top: 50px;
}


.main__image--phone {
    width: 355px;
    position: absolute;
    right: 100px;
    top: 155px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(1, 120, 214, 0.2));
    z-index: 1;
}

.main__image--message {
    width: 310px;
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.main__image--message:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 10px 20px rgba(1, 120, 214, 0.3));
    z-index: 10;
    cursor: pointer;
}

/* Floating animation for phone */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-20px) rotate(0.5deg);
    }
}

/* Pulse animation for notifications */
@keyframes notificationPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

/* Slide in animation for messages */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glow effect */
@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(1, 120, 214, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(1, 120, 214, 0.6));
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

    70% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.message1 {
    top: 291px;
    right: 152px;
    animation: slideInRight 1s ease-out 0.5s both, notificationPulse 3s ease-in-out 2s infinite;
}

.message2 {
    top: 230px;
    right: 53px;
    animation: slideInLeft 1s ease-out 1s both, notificationPulse 3s ease-in-out 2.5s infinite;
}

.message3 {
    top: 633px;
    right: 202px;
    animation: slideInBottom 1s ease-out 1.5s both, notificationPulse 3s ease-in-out 3s infinite;
}

.message4 {
    top: 572px;
    right: 100px;
    animation: slideInTop 1s ease-out 2s both, notificationPulse 3s ease-in-out 3.5s infinite;
}

/* Header */
.header {
    position: absolute;
    top: 30px;
    left: 65px;
    right: 65px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 0px 42px 0px rgba(18, 18, 18, 0.06);
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
    height: 70px;
    align-items: center;
    padding: 0px 20px;
    z-index: 100;
}

.header__logo {
    display: flex;
    z-index: 12314;
    align-items: center;
    column-gap: 10px;
}

.header__logo img {
    width: 70px;
}

.header__logo a {
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    color: rgba(1, 120, 214, 1);
}

.header__links {
    display: flex;
    column-gap: 30px;
}

.header__links a {
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    color: rgba(7, 10, 25, 0.5);
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header__links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(1, 120, 214, 1) 0%, rgba(0, 85, 255, 1) 100%);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.header__links a:hover {
    color: rgba(1, 120, 214, 1);
    background: rgba(1, 120, 214, 0.05);
    transform: translateY(-2px);
}

.header__links a:hover::before {
    width: 80%;
}

.header__btn a {
    display: flex;
    align-items: center;
    background: rgba(1, 120, 214, 1);
    padding: 10px 8px 10px 15px;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    column-gap: 20px;
}

.header__btn img {
    width: 35px;
}

/* бургер по умолчанию скрыт */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 3px;
    background: #0178d6;
    border-radius: 2px;
}



/* меню по умолчанию скрыто */
.header__menu {
    display: none;
}


/* Skills */

/* Skills Section - Modern Design */
.skills {
    margin: 120px 65px 120px 65px;
    text-align: center;
}

.skills__header {
    max-width: 900px;
    margin: 0 auto 60px;
}

.skills__badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.1) 0%, rgba(0, 85, 255, 0.1) 100%);
    border: 1px solid rgba(1, 120, 214, 0.3);
    color: rgba(1, 120, 214, 1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.skills h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: rgba(7, 10, 25, 0.95);
    margin-bottom: 20px;
}

.skills__container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.skills__item {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 249, 255, 0.8) 100%);
    border: 1px solid rgba(1, 120, 214, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.skills__item:hover {
    transform: translateY(-8px);
    border-color: rgba(1, 120, 214, 0.3);
    box-shadow: 0 12px 40px rgba(1, 120, 214, 0.15);
}

.skills__item-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.1) 0%, rgba(0, 85, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.skills__item:hover .skills__item-icon {
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.15) 0%, rgba(0, 85, 255, 0.15) 100%);
    transform: scale(1.05);
}

.skills__item-icon img {
    width: 45px;
    height: 45px;
    transition: transform 0.4s ease;
}

.skills__item:hover .skills__item-icon img {
    transform: scale(1.1) rotate(5deg);
}

.skills__item-content {
    position: relative;
    z-index: 2;
}

.skills__item-content h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: rgba(7, 10, 25, 0.9);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.skills__item-content p {
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    color: rgba(7, 10, 25, 0.6);
}

.skills__item-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(1, 120, 214, 0.15) 0%, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.skills__item:hover .skills__item-glow {
    opacity: 1;
}

/* Skills Responsive - Tablet */
@media screen and (max-width: 1200px) {
    .skills__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 900px) {
    .skills {
        margin: 80px 40px;
    }

    .skills h2 {
        font-size: 40px;
    }

    .skills__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.header__btn a:hover {
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
    transform: scale(1.05);
}

.main__container a:hover {
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
    transform: scale(1.05);
}

.header__btn a:hover {
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
    transform: scale(1.05);
}

.info__container--button a:hover {
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
    transform: scale(1.05);
}

.footer__item--question:hover {
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
    transform: scale(1.05);
}

/* Старый код удален - используется новая структура */

/* Functions Section - Modern Design */

.functions {
    margin: 100px 65px;
    position: relative;
    text-align: center;
    background: rgba(243, 249, 255, 1);
    box-shadow: 0px 0px 20px 0px rgba(30, 55, 143, 0.12) inset;
    border-radius: 40px;
    padding: 60px 40px;
}

.functions__header {
    max-width: 900px;
    margin: 0 auto 60px;
}

.functions__badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.1) 0%, rgba(0, 85, 255, 0.1) 100%);
    border: 1px solid rgba(1, 120, 214, 0.3);
    color: rgba(1, 120, 214, 1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.functions h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: rgba(7, 10, 25, 0.95);
    margin-bottom: 15px;
}

.functions__subtitle {
    font-size: 18px;
    color: rgba(7, 10, 25, 0.6);
    line-height: 140%;
}

.functions__container--image1:hover {
    transform: scale(1.05) rotate(2deg);
}

.functions__container--image2:hover {
    transform: scale(1.05) rotate(-2deg);
}


.functions__container {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    z-index: 2;
    margin-top: 60px;
}

.functions__container img {
    transition: all 0.4s ease;
    width: 355px;
    height: 379px;
}

.functions__image--left {
    position: absolute;
    right: 50%;
    z-index: 1;
    opacity: 1;
}

.functions__image--right {
    position: absolute;
    left: 50%;
    z-index: 1;
    opacity: 1;

}

/* Subscriptions */
.subscriptions__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    padding: 0 40px;
    flex-wrap: wrap;
    z-index: 2;
}

.subscription__card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 249, 255, 0.8) 100%);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 340px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(1, 120, 214, 0.1);
    overflow: hidden;
}

.subscription__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0178d6 0%, #01a0e4 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.subscription__card:hover::before {
    transform: scaleX(1);
}

.subscription__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(1, 120, 214, 0.15);
    border-color: rgba(1, 120, 214, 0.3);
}

.subscription__card--featured {
    border: 2px solid rgba(1, 120, 214, 0.3);
    box-shadow: 0 8px 30px rgba(1, 120, 214, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 100%);
    transform: scale(1.05);
}

.subscription__card--featured::before {
    height: 5px;
    background: linear-gradient(90deg, #0178d6 0%, #01a0e4 50%, #0178d6 100%);
}

.subscription__card--featured:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(1, 120, 214, 0.25);
}

.subscription__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0178d6 0%, #01a0e4 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(1, 120, 214, 0.3);
}

.subscription__badge--popular {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.subscription__card-header {
    margin-bottom: 25px;
    margin-top: 15px;
}

.subscription__card h3 {
    font-weight: 600;
    font-size: 26px;
    line-height: 130%;
    color: #070A19;
    margin: 0 0 12px 0;
}

.subscription__description {
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: rgba(7, 10, 25, 0.6);
    margin: 0;
}

.subscription__price {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.subscription__price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.subscription__price-details {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.subscription__price-value {
    font-weight: 700;
    font-size: 36px;
    background: linear-gradient(135deg, #0178d6 0%, #01a0e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subscription__currency {
    font-weight: 700;
    font-size: 36px;
    background: linear-gradient(135deg, #0178d6 0%, #01a0e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subscription__price-old {
    font-weight: 500;
    font-size: 16px;
    color: rgba(7, 10, 25, 0.4);
    text-decoration: line-through;
}

.subscription__discount-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.subscription__info-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
    margin-left: 4px;
}

.subscription__info-icon svg {
    width: 16px;
    height: 16px;
    stroke: rgba(1, 120, 214, 0.6);
    transition: stroke 0.3s ease;
}

.subscription__info-icon:hover svg {
    stroke: rgba(1, 120, 214, 1);
}

.subscription__tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 10, 25, 0.95);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.5;
    white-space: normal;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.subscription__tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(7, 10, 25, 0.95);
}

.subscription__info-icon:hover .subscription__tooltip {
    opacity: 1;
    visibility: visible;
}

.subscription__star {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 2px 4px rgba(1, 120, 214, 0.2));
}

.subscription__star--small {
    width: 18px;
    height: 18px;
}

.subscription__period {
    font-weight: 500;
    font-size: 15px;
    color: rgba(7, 10, 25, 0.5);
}

.subscription__cashback {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.1) 0%, rgba(1, 160, 228, 0.15) 100%);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #0178d6;
    margin-bottom: 20px;
    width: fit-content;
    border: 1px solid rgba(1, 120, 214, 0.2);
}

.subscription__btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #0178d6 0%, #01a0e4 100%);
    color: white;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(1, 120, 214, 0.3);
}

.subscription__btn svg {
    transition: transform 0.3s ease;
}

.subscription__btn:hover {
    background: linear-gradient(135deg, #0165b8 0%, #0189cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 120, 214, 0.4);
}

.subscription__btn:hover svg {
    transform: rotate(180deg);
}

.subscription__btn:active {
    transform: translateY(0);
}

@media screen and (max-width: 1100px) {
    .subscriptions__container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .subscription__card {
        width: 100%;
        max-width: 500px;
    }

    .subscription__card--featured {
        transform: scale(1);
    }

    .subscription__card--featured:hover {
        transform: translateY(-12px) scale(1);
    }
}

@media screen and (max-width: 768px) {
    .subscriptions__container {
        gap: 20px;
        padding: 0 16px;
    }

    .subscription__card {
        padding: 30px 25px;
    }

    .subscription__badge {
        top: 15px;
        right: 15px;
        padding: 5px 12px;
        font-size: 11px;
    }

    .subscription__card h3 {
        font-size: 24px;
    }

    .subscription__description {
        font-size: 14px;
    }

    .subscription__price-value {
        font-size: 32px;
    }

    .subscription__currency {
        font-size: 32px;
    }

    .subscription__price-old {
        font-size: 14px;
    }

    .subscription__discount-badge {
        font-size: 12px;
        padding: 3px 8px;
    }

    .subscription__tooltip {
        width: 240px;
        font-size: 11px;
        padding: 10px 12px;
    }

    .subscription__btn {
        padding: 16px 20px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .subscription__card {
        padding: 25px 20px;
    }

    .subscription__badge {
        top: 12px;
        right: 12px;
        padding: 4px 10px;
        font-size: 10px;
    }

    .subscription__card h3 {
        font-size: 22px;
    }

    .subscription__description {
        font-size: 13px;
    }

    .subscription__price-value {
        font-size: 28px;
    }

    .subscription__currency {
        font-size: 28px;
    }

    .subscription__price-old {
        font-size: 13px;
    }

    .subscription__discount-badge {
        font-size: 11px;
        padding: 3px 7px;
    }

    .subscription__tooltip {
        width: 200px;
        font-size: 10px;
        padding: 8px 10px;
        left: auto;
        right: 0;
        transform: none;
    }

    .subscription__tooltip::after {
        left: auto;
        right: 10px;
        transform: none;
    }

    .subscription__period {
        font-size: 13px;
    }

    .subscription__cashback {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* Subscription animations */
.subscription__card.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.subscription__card.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.subscription__card:nth-child(1).animate {
    transition-delay: 0.2s;
}

.subscription__card:nth-child(2).animate {
    transition-delay: 0.4s;
}

.subscription__card:nth-child(3).animate {
    transition-delay: 0.6s;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal__content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(1, 120, 214, 0.1);
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    color: #0178d6;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__close:hover {
    background: rgba(1, 120, 214, 0.2);
    transform: rotate(90deg);
}

.modal__title {
    font-weight: 700;
    font-size: 32px;
    color: #070A19;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #0178d6 0%, #01a0e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal__price {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.modal__price-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.modal__price-details {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.modal__price-value {
    font-weight: 700;
    font-size: 42px;
    color: #0178d6;
}

.modal__currency {
    font-weight: 700;
    font-size: 42px;
    color: #0178d6;
}

.modal__price-old {
    font-weight: 500;
    font-size: 18px;
    color: rgba(7, 10, 25, 0.4);
    text-decoration: line-through;
}

.modal__discount-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.modal__info-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
    margin-left: 4px;
}

.modal__info-icon svg {
    width: 16px;
    height: 16px;
    stroke: rgba(1, 120, 214, 0.6);
    transition: stroke 0.3s ease;
}

.modal__info-icon:hover svg {
    stroke: rgba(1, 120, 214, 1);
}

.modal__tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 10, 25, 0.95);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.5;
    white-space: normal;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal__tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(7, 10, 25, 0.95);
}

.modal__info-icon:hover .modal__tooltip {
    opacity: 1;
    visibility: visible;
}

.modal__star {
    width: 30px;
    height: 30px;
}

.modal__star--small {
    width: 20px;
    height: 20px;
}

.modal__period {
    font-weight: 500;
    font-size: 16px;
    color: rgba(7, 10, 25, 0.6);
}

.modal__cashback {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.1) 0%, rgba(1, 160, 228, 0.15) 100%);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #0178d6;
    margin-bottom: 25px;
    border: 1px solid rgba(1, 120, 214, 0.2);
}

.modal__features {
    margin: 30px 0;
}

.modal__features h4 {
    font-weight: 600;
    font-size: 20px;
    color: #070A19;
    margin: 0 0 20px 0;
}

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

.modal__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    line-height: 150%;
    color: rgba(7, 10, 25, 0.8);
    border-bottom: 1px solid rgba(1, 120, 214, 0.1);
}

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

.modal__features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.modal__btn {
    display: block;
    width: 100%;
    padding: 18px 24px;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #0178d6 0%, #01a0e4 100%);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(1, 120, 214, 0.3);
    margin-top: 30px;
}

.modal__btn:hover {
    background: linear-gradient(135deg, #0165b8 0%, #0189cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 120, 214, 0.4);
}

.modal__btn:active {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .modal__content {
        padding: 30px 25px;
        max-width: 100%;
        border-radius: 20px;
    }

    .modal__title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .modal__price-value {
        font-size: 36px;
    }

    .modal__currency {
        font-size: 36px;
    }

    .modal__price-old {
        font-size: 16px;
    }

    .modal__discount-badge {
        font-size: 14px;
        padding: 5px 10px;
    }

    .modal__tooltip {
        width: 240px;
        font-size: 11px;
        padding: 10px 12px;
    }

    .modal__star {
        width: 26px;
        height: 26px;
    }

    .modal__features h4 {
        font-size: 18px;
    }

    .modal__features li {
        font-size: 15px;
        padding: 10px 0;
    }

    .modal__btn {
        padding: 16px 20px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .modal.active {
        padding: 10px;
    }

    .modal__content {
        padding: 25px 20px;
    }

    .modal__title {
        font-size: 24px;
    }

    .modal__price-value {
        font-size: 32px;
    }

    .modal__currency {
        font-size: 32px;
    }

    .modal__price-old {
        font-size: 14px;
    }

    .modal__discount-badge {
        font-size: 12px;
        padding: 4px 8px;
    }

    .modal__tooltip {
        width: 220px;
        font-size: 10px;
        padding: 8px 10px;
        left: auto;
        right: 0;
        transform: none;
    }

    .modal__tooltip::after {
        left: auto;
        right: 10px;
        transform: none;
    }

    .modal__close {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

/* QR Code Modal Styles - Enhanced Design */
.modal__content--qr {
    max-width: 650px;
    padding: 50px;
}

.modal__qr-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal__qr-header .modal__title {
    margin-bottom: 15px;
}

.modal__qr-price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.1) 0%, rgba(1, 160, 228, 0.15) 100%);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(1, 120, 214, 0.2);
}

.modal__qr-price-value {
    font-size: 28px;
    font-weight: 700;
    color: #0178d6;
}

.modal__qr-price-period {
    font-size: 16px;
    font-weight: 500;
    color: rgba(7, 10, 25, 0.6);
}

.modal__qr-wrapper {
    margin-bottom: 40px;
}

.modal__qr-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #0178d6;
}

.modal__qr-label svg {
    flex-shrink: 0;
}

.modal__qr-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.03) 0%, rgba(1, 160, 228, 0.05) 100%);
    border-radius: 24px;
    border: 2px solid rgba(1, 120, 214, 0.15);
    overflow: hidden;
}

.modal__qr-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0178d6 0%, #01a0e4 100%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.modal__qr-container:hover::before {
    opacity: 0.1;
}

.modal__qr-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #0178d6;
    z-index: 1;
}

.modal__qr-decoration--tl {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.modal__qr-decoration--tr {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 8px 0 0;
}

.modal__qr-decoration--bl {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 8px;
}

.modal__qr-decoration--br {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

.modal__qr-image {
    position: relative;
    max-width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(1, 120, 214, 0.15);
    z-index: 2;
}

.modal__qr-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.modal__qr-step {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.03) 0%, rgba(1, 160, 228, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(1, 120, 214, 0.1);
    transition: all 0.3s ease;
}

.modal__qr-step:hover {
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.08) 0%, rgba(1, 160, 228, 0.1) 100%);
    border-color: rgba(1, 120, 214, 0.2);
    transform: translateX(5px);
}

.modal__qr-step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0178d6 0%, #01a0e4 100%);
    color: white;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(1, 120, 214, 0.3);
}

.modal__qr-step-content {
    flex: 1;
    text-align: left;
}

.modal__qr-step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #070A19;
    margin: 0 0 8px 0;
}

.modal__qr-step-content p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(7, 10, 25, 0.7);
    margin: 0;
}

.modal__btn--support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.modal__btn--support svg {
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .modal__content--qr {
        max-width: 100%;
        padding: 35px 25px;
    }

    .modal__qr-header {
        margin-bottom: 25px;
    }

    .modal__qr-price-value {
        font-size: 24px;
    }

    .modal__qr-price-period {
        font-size: 14px;
    }

    .modal__qr-label {
        font-size: 14px;
        gap: 8px;
    }

    .modal__qr-label svg {
        width: 20px;
        height: 20px;
    }

    .modal__qr-container {
        padding: 20px;
    }

    .modal__qr-decoration {
        width: 30px;
        height: 30px;
    }

    .modal__qr-decoration--tl,
    .modal__qr-decoration--tr {
        top: 10px;
    }

    .modal__qr-decoration--bl,
    .modal__qr-decoration--br {
        bottom: 10px;
    }

    .modal__qr-decoration--tl,
    .modal__qr-decoration--bl {
        left: 10px;
    }

    .modal__qr-decoration--tr,
    .modal__qr-decoration--br {
        right: 10px;
    }

    .modal__qr-image {
        max-height: 280px;
    }

    .modal__qr-steps {
        gap: 15px;
    }

    .modal__qr-step {
        padding: 15px;
        gap: 15px;
    }

    .modal__qr-step-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .modal__qr-step-content h4 {
        font-size: 16px;
    }

    .modal__qr-step-content p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .modal__content--qr {
        padding: 25px 20px;
    }

    .modal__qr-header {
        margin-bottom: 20px;
    }

    .modal__qr-price-badge {
        padding: 10px 20px;
    }

    .modal__qr-price-value {
        font-size: 22px;
    }

    .modal__qr-price-period {
        font-size: 13px;
    }

    .modal__qr-label {
        font-size: 13px;
    }

    .modal__qr-container {
        padding: 15px;
    }

    .modal__qr-decoration {
        width: 25px;
        height: 25px;
        border-width: 2px;
    }

    .modal__qr-image {
        max-height: 220px;
    }

    .modal__qr-step {
        padding: 12px;
        gap: 12px;
    }

    .modal__qr-step-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .modal__qr-step-content h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .modal__qr-step-content p {
        font-size: 13px;
    }
}

/* How It Works Section - Modern Design */

.about {
    position: relative;
    margin: 120px 65px;
    text-align: center;
}

.about__header {
    max-width: 900px;
    margin: 0 auto 80px;
}

.about__badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.1) 0%, rgba(0, 85, 255, 0.1) 100%);
    border: 1px solid rgba(1, 120, 214, 0.3);
    color: rgba(1, 120, 214, 1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: rgba(7, 10, 25, 0.95);
    margin-bottom: 15px;
}

.about__subtitle {
    font-size: 18px;
    color: rgba(7, 10, 25, 0.6);
    line-height: 140%;
}

.about__main {
    position: relative;
}

.about__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about__item {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 249, 255, 0.8) 100%);
    border: 1px solid rgba(1, 120, 214, 0.1);
    border-radius: 24px;
    padding: 35px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-height: 360px;
}

.about__item:hover {
    transform: translateY(-10px);
    border-color: rgba(1, 120, 214, 0.3);
    box-shadow: 0 15px 50px rgba(1, 120, 214, 0.15);
}

.about__step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(1, 120, 214, 1) 0%, rgba(0, 85, 255, 1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(1, 120, 214, 0.3);
    z-index: 10;
    transition: all 0.4s ease;
}

.about__item:hover .about__step-number {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(1, 120, 214, 0.4);
}

.about__step-number span {
    font-weight: 700;
    font-size: 24px;
    color: white;
    letter-spacing: -0.02em;
}

.about__item-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.08) 0%, rgba(0, 85, 255, 0.08) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 20px;
    transition: all 0.4s ease;
}

.about__item:hover .about__item-icon {
    background: linear-gradient(135deg, rgba(1, 120, 214, 0.12) 0%, rgba(0, 85, 255, 0.12) 100%);
    transform: scale(1.05);
}

.about__item-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.4s ease;
}

.about__item:hover .about__item-icon img {
    transform: scale(1.1);
}

.about__item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about__item-content h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: rgba(7, 10, 25, 0.9);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.about__item-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: rgba(7, 10, 25, 0.65);
}

.about__item-content .bot-link {
    color: rgba(1, 120, 214, 1);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(1, 120, 214, 0.3);
}

.about__item-content .bot-link:hover {
    color: rgba(0, 85, 255, 1);
    border-bottom-color: rgba(0, 85, 255, 1);
}

.about__item-decoration {
    margin-top: auto;
    padding-top: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.about__item-decoration img {
    max-width: 110px;
    opacity: 0.35;
    transition: all 0.4s ease;
}

.about__item:hover .about__item-decoration img {
    opacity: 0.6;
    transform: scale(1.05);
}

.about__item--telegram {
    max-width: 120px !important;
}

.about__connector {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(1, 120, 214, 0.3) 0%, rgba(1, 120, 214, 0) 100%);
    z-index: 1;
}

.about__item:nth-child(3) .about__connector {
    display: none;
}

/* Functions Responsive - Tablet */
@media screen and (max-width: 1200px) {
    .functions {
        margin: 80px 40px;
        padding: 50px 30px;
    }

    .functions h2 {
        font-size: 42px;
    }
}

@media screen and (max-width: 900px) {
    .functions {
        margin: 60px 30px;
        padding: 45px 25px;
    }

    .functions h2 {
        font-size: 36px;
    }

    .functions__subtitle {
        font-size: 16px;
    }
}

/* About Responsive - Tablet */
@media screen and (max-width: 1200px) {
    .about__container {
        gap: 30px;
    }
}

@media screen and (max-width: 1000px) {
    .about {
        margin: 100px 40px;
    }

    .about h2 {
        font-size: 42px;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__connector {
        display: none;
    }
}

.about__indicator:hover {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(4px);
    }

    100% {
        transform: translateY(0);
    }
}

.about__item:hover {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(4px);
    }

    100% {
        transform: translateY(0);
    }
}

/* .functions__image--right:hover {
    transform: translateX(10px) scale(1.05);
} */

/* Старые стили удалены - используется новая структура */

/* info */

.info {
    margin: 100px 50px 60px 50px;
    padding: 60px 65px 70px 65px;
    position: relative;
    background: rgba(243, 249, 255, 1);
    box-shadow: 0px 0px 20px 0px rgba(30, 55, 143, 0.12) inset;
    border-radius: 30px;
    min-height: 350px;
}


.info h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 115%;
    max-width: 800px;
    letter-spacing: 0%;
}

.info h2 span {
    color: rgba(1, 120, 214, 1)
}

.info__container--description {
    margin-top: 25px;
    font-weight: 400;
    font-size: 17px;
    line-height: 160%;
    letter-spacing: -0.01em;
    color: rgba(7, 10, 25, 0.65);
    max-width: 700px;
}

.info__container--description strong {
    color: rgba(1, 120, 214, 1);
    font-weight: 600;
}

.info__container--description a {
    color: rgba(1, 120, 214, 1);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(1, 120, 214, 0.3);
    transition: all 0.3s ease;
}

.info__container--description a:hover {
    color: rgba(0, 85, 255, 1);
    border-bottom-color: rgba(0, 85, 255, 1);
}

.info__container--button {
    margin-top: 60px;
}

.info__container--button a {
    background: rgba(1, 120, 214, 1);
    border-radius: 15px;
    padding: 20px 30px;
    transition: all 0.4s ease;
    font-weight: 600;
    color: white;
    text-decoration: none;
}


.info img {
    position: absolute;
    width: 427px;
    top: -20px;
    right: -10px;
}

/* FOOTER */

.footer {
    margin: 40px 50px 40px 50px;
}

.footer__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer__item {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.footer__item--link {
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    color: rgba(7, 10, 25, 0.5);
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer__item--link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(1, 120, 214, 1) 0%, rgba(0, 85, 255, 1) 100%);
    transition: width 0.3s ease;
}

.footer__item--link:hover {
    color: rgba(1, 120, 214, 1);
    padding-left: 5px;
}

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

.footer__item p {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(7, 10, 25, 0.5);
}

.footer__logo {
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.footer__logo--image {
    width: 70px;
}

.footer__logo--text {
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    color: rgba(1, 120, 214, 1);
}

.footer__item--question {
    display: flex;
    align-items: center;
    background: rgba(1, 120, 214, 1);
    padding: 10px 8px 10px 15px;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.footer__item--question img {
    width: 35px;
    margin-left: 20px;
}

.footer__legal {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(1, 120, 214, 0.1);
}

.footer__legal a {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    color: rgba(7, 10, 25, 0.4);
    transition: all 0.3s ease;
}

.footer__legal a:hover {
    color: rgba(1, 120, 214, 1);
}

@media screen and (max-width: 1342px) {
    .main__image {
        opacity: 0.3;
        z-index: 1;
    }

    .main__container {
        z-index: 2;
    }

    .info__container {
        z-index: 2;
        position: inherit;
    }

    .info img {
        opacity: 0.3;
        z-index: 1;
    }


    /* about */
    /* About - Mobile */
    .about {
        margin: 60px 16px;
    }

    .about__badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .about h2 {
        font-size: 32px;
    }

    .about__subtitle {
        font-size: 16px;
    }

    .about__header {
        margin-bottom: 50px;
    }

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

    .about__item {
        padding: 35px 25px;
        min-height: 380px;
    }

    .about__step-number {
        width: 50px;
        height: 50px;
        left: 20px;
    }

    .about__step-number span {
        font-size: 20px;
    }

    .about__item-icon {
        width: 75px;
        height: 75px;
    }

    .about__item-icon img {
        width: 42px;
        height: 42px;
    }

    .about__item-content h3 {
        font-size: 20px;
    }

    .about__item-content p {
        font-size: 14px;
    }

    .about__item-decoration img {
        max-width: 120px;
    }

    .about__connector {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    /* footer */

    .footer {
        margin: 16px;
    }

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

    .header {
        position: fixed;
        /* фиксируем, чтобы всегда сверху */
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0 0 20px 20px;
        z-index: 2000;
        /* всегда выше контента */
    }

    .header.animate {
        transform: none;
    }

    .mobile {
        display: block !important;
    }

    /* скрываем обычные ссылки и кнопку в шапке */
    .header__links,
    .header__btn {
        display: none;
    }

    .burger {
        display: flex;
        position: relative;
        z-index: 2001;
        /* бургер выше меню */
    }

    /* меню по умолчанию спрятано */
    .header__menu {
        position: fixed;
        /* фиксируем поверх всего */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        /* на всю высоту экрана */
        background: #fff;
        padding: 80px 20px 20px;
        /* сверху оставим место под шапку */
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 20px;

        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;

        transition: all 0.4s ease;
        z-index: 2000;
    }

    /* когда бургер открыт */
    .header.open .header__menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }


    .header__menu .header__links a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        margin: 5px 0;
        border-radius: 12px;
        font-size: 16px;
    }

    .header__menu .header__links a:hover {
        background: rgba(1, 120, 214, 0.1);
    }

    .header__menu .header__btn {
        margin-top: auto;
        /* кнопка всегда снизу */
    }

    .header__menu .header__btn a {

        width: 100%;
        justify-content: center;
    }
}




@media screen and (max-width: 768px) {
    .main__image {
        margin-top: 20px;
        opacity: 1;
        position: relative;
    }

    .main__image--message {
        width: 200px;
    }

    .main__image--phone {
        position: relative;
        width: 193px;
        right: 3px;
        top: 21px;
        animation: float 6s ease-in-out infinite;
        filter: drop-shadow(0 15px 30px rgba(1, 120, 214, 0.2));
    }

    .message1 {
        right: auto;
        left: 18px;
        top: auto;
        bottom: -31px;
        animation: slideInLeft 1s ease-out 0.5s both, notificationPulse 4s ease-in-out 2s infinite;
    }

    .message2 {
        bottom: 38px;
        right: 54px;
        top: auto;
        animation: slideInRight 1s ease-out 1s both, notificationPulse 4s ease-in-out 2.5s infinite;
    }

    .message3 {
        top: 112px;
        right: -42px;
        animation: slideInRight 1s ease-out 1.5s both, notificationPulse 4s ease-in-out 3s infinite;
    }

    .message4 {
        top: 51px;
        right: 34px;
        animation: slideInTop 1s ease-out 2s both, notificationPulse 4s ease-in-out 3.5s infinite;
    }


    .main__container {
        z-index: 1000;
    }

    .info img {
        position: relative;
        width: 90%;
        opacity: 1;
        margin-top: 50px;
    }

    main {
        padding: 16px;
    }

    .main {
        padding: 16px;
        flex-direction: column;
    }

    /* Functions - Mobile */
    .functions {
        margin: 60px 16px;
        padding: 40px 16px;
    }

    .functions__badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .functions h2 {
        font-size: 32px;
    }

    .functions__subtitle {
        font-size: 16px;
    }

    .functions__header {
        margin-bottom: 40px;
    }

    .functions__container {
        column-gap: 10px !important;
    }

    .main__container h1 {
        font-size: 36px;
        line-height: 120%;
        letter-spacing: -0.01em;
    }

    .main__container h2.subtitle {
        font-size: 16px;
        margin-top: 15px;
    }

    .main__container p {
        font-size: 16px;
        margin-top: 20px;
    }

    .main__container a {
        font-size: 16px;
        padding: 18px 30px;
    }

    .main__container div {
        margin-top: 40px;
    }

    /* skills */
    .skills {
        margin: 60px 16px;
    }

    .skills__badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .skills h2 {
        font-size: 32px;
    }

    .skills__intro {
        font-size: 14px;
        padding: 0;
    }

    .skills__container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .skills__item {
        padding: 30px 20px;
    }

    .skills__item-icon {
        width: 70px;
        height: 70px;
    }

    .skills__item-icon img {
        width: 40px;
        height: 40px;
    }

    .skills__item-content h3 {
        font-size: 18px;
    }

    .skills__item-content p {
        font-size: 14px;
    }

    /*  info */
    .info {
        margin: 100px 0 0 0;
        padding: 20px 20px 20px 20px;
    }

    .info h1 {
        font-size: 32px;
    }

    .info__container--description {
        font-size: 15px;
        line-height: 170%;
    }



    /* functions */
    .functions {
        background: none;
        box-shadow: none;
    }

    .functions__image--left {
        display: none;
    }

    .functions__image--right {
        display: none;
    }

    .functions__container img {
        width: 48%;
        height: 48%;
    }
}



@media screen and (max-width: 500px) {
    .functions__container img {
        width: 100% !important;
        height: 100% !important;
    }

    .functions__container {
        flex-direction: column;
        row-gap: 30px;
    }
}



































.pricing {
    margin: 50px 25px;
    position: relative;
    overflow: hidden;
}

.pricing__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 50px auto;
    position: relative;
    z-index: 2;
}

.pricing__content {
    flex: 1;
    max-width: 450px;
    position: relative;
}

.pricing__title {
    font-weight: 600;
    font-size: 42px;
    line-height: 115%;
    letter-spacing: 0%;
    color: #070A19;
    margin: 0;
}

.pricing__badge {
    width: 200px;
    height: 62px;
    background-image: url('https://flbot.pro/images/pricing1.png');
    background-repeat: no-repeat;
    background-size: 200px 62px;
    background-position: center;
    margin-left: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing__vector {
    position: absolute;
    top: 240px;
    left: 405px;
    width: 285px;
    height: 340px;
    background-image: url('https://flbot.pro/images/vactor.png');
    background-repeat: no-repeat;
    background-size: 285px 340px;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
    transform: translateY(-50%);
}

.pricing__cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    max-width: 585px;
    position: relative;
    margin-left: 210px;
}

.pricing__card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 0px 42px 0px rgba(1, 123, 214, 0.19);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 585px;
    z-index: 10;
}

.pricing__card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 50px 0px rgba(30, 55, 143, 0.12);
}

.pricing__card--chats::before {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 165px;
    height: 165px;
    background-image: url('https://flbot.pro/images/pricing2.png');
    background-repeat: no-repeat;
    background-size: 165px 165px;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
}

.pricing__card--search::before {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 165px;
    height: 165px;
    background-image: url('https://flbot.pro/images/pricing3.png');
    background-repeat: no-repeat;
    background-size: 165px 165px;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
}

.pricing__card-header {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.pricing__card h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 130%;
    color: #070A19;
    margin: 0 0 15px 0;
}

.pricing__price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pricing__price-value {
    font-weight: 600;
    font-size: 28px;
    color: #070A19;
}

.pricing__star {
    width: 24px;
    height: 24px;
}

.pricing__star--small {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.pricing__price-old {
    font-weight: 600;
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-top: 5px;
}

.pricing__currency {
    font-weight: 500;
    font-size: 16px;
    color: #070A19;
    margin-top: 5px;
}

.pricing__btn {
    width: 100%;
    max-width: 300px;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #0178d6;
    color: white;
    position: relative;
    z-index: 1;
}

.pricing__btn:hover {
    background: #0165b8;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(1, 120, 214, 0.3);
}

@media screen and (max-width: 1350px) {
    .pricing__card--chats::before, 
    .pricing__card--search::before {
        right: 30px;
    }
}

@media screen and (max-width: 1300px) {
    .pricing__card--chats::before, 
    .pricing__card--search::before {
        right: 70px;
    }
}

@media (max-width: 1250px) and (min-width: 1200px) {
    .pricing__card--chats::before, 
    .pricing__card--search::before {
        right: 120px;
    }

    .pricing__btn {
        max-width: 260px;
    }
}

@media screen and (max-width: 1200px) {
    .pricing__vector {
        display: none;
    }

    .pricing__container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        align-items: center;
    }

    .pricing__content {
        max-width: 100%;
        order: 1;
    }

    .pricing__cards {
        max-width: 100%;
        margin-left: 0 !important;
        order: 2;
        align-items: center;
        width: 100%;
    }

    .pricing__card {
        width: 100%;
        max-width: 600px;
        text-align: center;
    }

    .pricing__price {
        justify-content: center;
    }

    .pricing__badge {
        margin: 30px auto 0;
    }

    .pricing__card--chats::before,
    .pricing__card--search::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .pricing {
        margin: 30px 16px;
    }

    .pricing__container {
        margin: 30px auto;
        gap: 40px;
    }

    .pricing__title {
        font-size: 36px;
        text-align: center;
    }

    .pricing__badge {
        width: 180px;
        height: 56px;
        background-size: 180px 56px;
        margin: 20px auto 0;
    }

    .pricing__cards {
        gap: 25px;
        max-width: 100%;
    }

    .pricing__card {
        padding: 25px;
        width: 100%;
        max-width: 450px;
    }

    .pricing__card h3 {
        font-size: 20px;
    }

    .pricing__price-value {
        font-size: 26px;
    }

    .pricing__btn {
        max-width: 100%;
        padding: 18px 20px;
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .pricing__title {
        font-size: 32px;
        line-height: 120%;
    }

    .pricing__badge {
        width: 160px;
        height: 50px;
        background-size: 160px 50px;
    }

    .pricing__card {
        padding: 20px;
        width: 100%;
        max-width: 100%;
    }

    .pricing__card h3 {
        font-size: 18px;
    }

    .pricing__price-value {
        font-size: 24px;
    }

    .pricing__currency {
        font-size: 14px;
    }
}

@media screen and (max-width: 360px) {
    .pricing__card {
        padding: 16px;
        width: 100%;
        max-width: 100%;
    }

    .pricing__title {
        font-size: 28px;
    }

    .pricing__badge {
        width: 140px;
        height: 44px;
        background-size: 140px 44px;
    }
}




.pricing__title.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}

.pricing__title.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.pricing__badge.animate {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease-out 0.2s;
}

.pricing__badge.animate.show {
    opacity: 1;
    transform: translateX(0);
}

.pricing__vector.animate {
    opacity: 0;
    transform: translateY(-50%) scale(0.9);
    transition: all 1s ease-out 0.3s;
}

.pricing__vector.animate.show {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
}

.pricing__card.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.pricing__card.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.pricing__card:nth-child(1).animate {
    transition-delay: 0.4s;
}

.pricing__card:nth-child(2).animate {
    transition-delay: 0.6s;
}










































































.faq {
    margin: 100px 50px;
    position: relative;
}

.faq__container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq__title {
    font-weight: 600;
    font-size: 42px;
    line-height: 115%;
    letter-spacing: 0%;
    color: #070A19;
    text-align: center;
    margin: 0 0 50px 0;
}

.faq__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq__item {
    background: #F3F9FF;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 10px;
}

.faq__item-inner {
    background: #FFFFFF;
    border: 1px solid #1E378F1A;
    border-radius: 16px;
    overflow: hidden;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    color: #070A19;
    transition: all 0.3s ease;
}

.faq__question:hover {
    background: rgba(243, 249, 255, 0.3);
}

.faq__toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0178d6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq__toggle svg {
    transition: transform 0.4s ease;
}

.faq__item.active .faq__toggle {
    background: #0165b8;
}

.faq__item.active .faq__toggle svg {
    transform: rotate(180deg);
}

.faq__toggle svg path {
    stroke: white;
}

.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
    background: white;
}

.faq__item.active .faq__answer {
    grid-template-rows: 1fr;
}

.faq__answer-content {
    overflow: hidden;
}

.faq__answer p {
    padding: 0 30px 20px 30px;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #070A1980;
}

@media screen and (max-width: 768px) {
    .faq {
        margin: 50px 16px;
    }

    .faq__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .faq__question {
        padding: 20px 25px;
        font-size: 16px;
    }

    .faq__toggle {
        width: 35px;
        height: 35px;
        margin-left: 15px;
    }

    .faq__answer p {
        padding: 0 25px 20px 25px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .faq__title {
        font-size: 32px;
    }

    .faq__question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq__toggle {
        width: 32px;
        height: 32px;
        margin-left: 10px;
    }

    .faq__answer p {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .faq {
        margin: 50px 16px;
    }

    .faq__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .faq__question {
        padding: 20px 25px;
        font-size: 16px;
    }

    .faq__toggle {
        width: 35px;
        height: 35px;
        margin-left: 15px;
    }

    .faq__answer p {
        padding: 0 25px;
        font-size: 15px;
    }

    .faq__item.active .faq__answer {
        max-height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .faq__title {
        font-size: 32px;
    }

    .faq__question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq__toggle {
        width: 32px;
        height: 32px;
        margin-left: 10px;
    }

    .faq__answer p {
        padding: 0 20px;
        font-size: 14px;
    }
}


.faq__title.animate {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.faq__title.animate.show {
    opacity: 1;
}

.faq__item.animate {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.faq__item.animate.show {
    opacity: 1;
}

.faq__item:nth-child(1).animate {
    transition-delay: 0.2s;
}

.faq__item:nth-child(2).animate {
    transition-delay: 0.4s;
}

.faq__item:nth-child(3).animate {
    transition-delay: 0.6s;
}

.faq__item:nth-child(4).animate {
    transition-delay: 0.8s;
}

/* SEO Optimizations */
.subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 15px;
    margin-bottom: 0;
}

.skills__intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 16px;
    line-height: 160%;
    color: rgba(0, 0, 0, 0.8);
}

.skills__intro strong {
    color: rgba(1, 120, 214, 1);
    font-weight: 600;
}

/* SEO Content Section */
.seo-content {
    margin-top: 80px;
    padding: 60px 0;
    background: rgba(243, 249, 255, 1);
    box-shadow: 0px 0px 20px 0px rgba(30, 55, 143, 0.12) inset;
    border-radius: 40px;
}

.seo-content__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.seo-content h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 30px;
    text-align: center;
}

.seo-content h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: rgba(1, 120, 214, 1);
    margin-top: 40px;
    margin-bottom: 20px;
}

.seo-content p {
    font-size: 16px;
    line-height: 170%;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.seo-content strong {
    color: rgba(1, 120, 214, 1);
    font-weight: 600;
}

.seo-content a {
    color: rgba(1, 120, 214, 1);
    text-decoration: none;
    border-bottom: 1px solid rgba(1, 120, 214, 0.3);
    transition: border-color 0.3s ease;
}

.seo-content a:hover {
    border-bottom-color: rgba(1, 120, 214, 1);
}

.seo-content ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.seo-content ul li {
    font-size: 16px;
    line-height: 170%;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.seo-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(1, 120, 214, 1);
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 768px) {
    .subtitle {
        font-size: 16px;
        margin-top: 10px;
    }

    .skills__intro {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .seo-content {
        margin-top: 60px;
        padding: 40px 0;
    }

    .seo-content__container {
        padding: 0 20px;
    }

    .seo-content h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .seo-content h3 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .seo-content p,
    .seo-content ul li {
        font-size: 14px;
        line-height: 160%;
    }

    .seo-content ul li {
        padding-left: 25px;
        margin-bottom: 12px;
    }
}

/* --- Стили для секции БЛОГА --- */

.blog-content {
    /* Ограничиваем максимальную ширину контента до 1200px, чтобы совпасть с шапкой */
    max-width: 1285px; 
    
   
    
    /* Добавляем верхний отступ (100px) для клиренса фиксированной шапки.
       Используем var(--padding) для горизонтальных отступов на узких экранах. */
    padding: 100px 0 0 0; 
}

/* --- Выравнивание заголовка блога по левому краю --- */
.main__title {
    /* Убеждаемся, что заголовок слева */
    text-align: left; 
    margin-bottom: 30px;
}

.blog-cards__container {
    display: grid;
    /* Задаем 3 колонки по умолчанию для стабильного вида */
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px;
    margin-top: 40px;
}

/* Добавляем медиазапрос для адаптивности на экранах, где 3 колонки не помещаются */
@media (max-width: 1024px) {
    .blog-cards__container {
        /* Возвращаем адаптивную сетку на более узких экранах */
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
@media (max-width: 768px) {
    .blog-cards__container {
        grid-template-columns: 1fr; /* Одна колонка на узких экранах */
    }
    .blog-card__image {
        height: 150px;
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--border-radius); /* 40px */
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; 
    color: black;
}

.blog-card:hover {
    transform: translateY(-8px); /* Приподнимаем при наведении */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.blog-card__image {
    width: 100%;
    height: 200px; 
    object-fit: cover; /* Изображение будет покрывать область, не искажаясь */
}

.blog-card__content {
    padding: 25px;
}

.blog-card__date {
    display: block;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.blog-card__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card__text {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
}

.breadcrumbs {
    font-size: 15px;
    margin-top: -15px; /* Смещаем вверх, чтобы уменьшить зазор с заголовком */
    margin-bottom: 40px; /* Отделяем от блока карточек */
}

.breadcrumbs__link {
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs__link:hover {
    color: #0178d6;
}

.breadcrumbs__separator {
    color: #A0A0A0;
    margin: 0 5px;
}

.breadcrumbs__current {
    color: #000000;
    font-weight: 600;
}