/* Reset and Base Styles */
:root {
    --primary-color: #2563EB;
    --accent-color: #FF6B6B;
    --background-color: #F8FAFC;
    --text-color: #1E293B;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #2563EB, #1E40AF);
    --gradient-accent: linear-gradient(135deg, #FF6B6B, #FF4757);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    opacity: 1;
    transition: opacity 0.5s ease;
}

body.loading {
    opacity: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.95);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    min-width: 0;
}

.header__cta {
    display: none;
}

.logo img {
    height: 40px;
}

.nav {
    flex-shrink: 1;
    overflow-x: auto;
    max-width: 100%;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 18px;
    overflow-x: auto;
    max-width: 100vw;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #e5e7eb;
    white-space: nowrap;
    min-width: max-content;
}

.nav__list::-webkit-scrollbar {
    height: 6px;
    background: #e5e7eb;
}
.nav__list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.nav__list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav__list a:hover {
    color: var(--primary-color);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Button Styles */
.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn--primary:active {
    transform: translateY(-1px);
}

.btn--secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.btn--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn--secondary:hover {
    color: var(--white);
    border-color: transparent;
}

.btn--secondary:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    opacity: 0.8;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero__network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.2) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.2) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: networkMove 20s linear infinite;
}

@keyframes networkMove {
    0% {
        transform: translateZ(-100px) rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: translateZ(-100px) rotateX(360deg) rotateY(360deg);
    }
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__morph {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 2;
    pointer-events: none;
}

.morph__container {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: morphRotate 20s linear infinite;
}

.morph__shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 10s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes morphRotate {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero__subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero__buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none !important;
    color: inherit !important;
}

.service-card:hover,
.service-card:active,
.service-card:focus,
.service-card:visited {
    text-decoration: none !important;
    color: inherit !important;
}

.service-card__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__icon-bg {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.service-card__icon-text {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card__icon-bg {
    transform: rotate(45deg);
}

.service-card:hover .service-card__icon-text {
    transform: rotate(-45deg);
}

.service-card__icon-img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
    backface-visibility: hidden;
}

.service-card:hover .service-card__icon-img {
    transform: rotateY(180deg);
}

.service-card__title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000000;
}

.service-card__description {
    color: #64748B;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-card__button {
    font-size: 0.9rem;
    padding: 8px 16px;
    margin-top: auto;
    opacity: 1;
    transform: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-card__button {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

@media (max-width: 768px) {
    .service-card__button {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* Cases Section */
.cases {
    padding: 120px 0;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}

.cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(37, 99, 235, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(37, 99, 235, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(37, 99, 235, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(37, 99, 235, 0.03) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

.cases__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.cases__intro {
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
}

.cases__filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    font-size: 16px;
    color: #64748B;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.case-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.case-card__image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.case-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 
.case-card__overlay {
    display: none;
}

.case-card__link {
    display: none;
}

.case-card__content {
    display: none;
}
*/

/* Responsive Design for Cases */
@media (max-width: 1024px) {
    .cases__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cases {
        padding: 80px 0;
    }

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

    .cases__filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cases__intro {
        font-size: 16px;
}

    .case-card__link {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

.about__content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about__text {
    flex: 0 0 50%;
}

.about__description {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.about__image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about__button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

@media (max-width: 1200px) {
    .about {
        padding: 80px 0;
    }

    .about__content {
        gap: 40px;
    }

    .about__description {
        font-size: 16px;
    }

    .about__image {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .about {
        padding: 60px 0;
    }

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

    .about__text {
        order: 1;
        flex: 0 0 100%;
        text-align: center;
    }

    .about__image {
        order: 2;
        flex: 0 0 100%;
        height: 300px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about__button {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 50px 0;
    }

    .about__content {
        gap: 25px;
    }

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

    .about__image {
        height: 250px;
        max-width: 400px;
    }

    .about__button {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }

    .about__content {
        gap: 20px;
    }

    .about__description {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .about__image {
        height: 200px;
        max-width: 300px;
        border-radius: 15px;
    }

    .about__button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta__title {
    font-size: 32px;
    margin-bottom: 40px;
}

.cta__form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group input {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    background: var(--white);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 32px 32px 0 0;
    box-shadow: 0 8px 32px rgba(37,99,235,0.07);
    /* margin-top: 64px; */
    padding: 48px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr;
    gap: 48px;
    align-items: flex-start;
    padding-bottom: 32px;
}

.footer-brand__desc {
    color: #64748b;
    margin-top: 16px;
    font-size: 1rem;
}

.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #2563eb;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo__sub {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.footer-contacts__list,
.footer-links__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.footer-contact-link:hover {
    color: #60a5fa;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: #2563eb;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    text-align: center;
    padding: 24px 0 16px 0;
    color: #64748b;
    font-size: 1rem;
    margin-top: 16px;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 700px) {
    .footer {
        border-radius: 24px 24px 0 0;
        padding: 32px 0 0 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 16px;
    }
    .footer-logo {
        font-size: 1.5rem;
    }
    .footer-title {
        font-size: 1rem;
    }
    .footer-bottom {
        font-size: 0.95rem;
        padding: 16px 0 8px 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .hero__title {
        font-size: 48px;
    }

    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .companies__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero__title {
        font-size: 40px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

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

    .work-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__content {
        flex-direction: column;
        gap: 40px;
    }

    .about__text {
        order: 1;
        flex: 0 0 100%;
    }

    .about__image {
        order: 2;
        flex: 0 0 100%;
        height: 350px;
    }

    .about__button {
        display: inline-block;
        margin-top: 30px;
    }

    .companies__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__inner {
        padding: 15px 0;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(.4,0,.2,1);
        padding: 0;
        z-index: 1200;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav__list {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .nav__list a {
        font-size: 2rem;
        font-weight: 800;
        color: #1e293b;
        text-align: center;
    }
    .header__inner {
        position: relative;
    }

    .hero {
        padding: 80px 0;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .services {
        padding: 60px 0;
}

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

    .service-card {
        padding: 20px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-card__title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .service-card__description {
        display: none;
    }

    .service-card__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
        background: #2563eb;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
        transition: all 0.3s ease;
    }

    .service-card:hover .service-card__icon {
        transform: scale(1.1);
        background: #1d4ed8;
    }

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

    .work-step {
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .work-step__number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
        background: #2563eb;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
    }

    .work-step:hover .work-step__number {
        transform: scale(1.1);
        background: #1d4ed8;
    }

    .work-step__title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .work-step__description {
        display: none;
    }

    .cases-slider {
        margin: 0 -20px;
        padding: 0 20px;
    }

    .case-card {
        height: 300px;
    }

    .about__image {
        height: 300px;
    }

    .companies__grid {
        gap: 15px;
    }

    .company-card {
        padding: 15px;
    }

    .company-card__image {
        height: 60px;
    }

    .company-card__title {
        font-size: 14px;
    }

    .company-card__description {
        font-size: 12px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .burger-menu {
        display: flex !important;
        z-index: 1201;
        width: 36px;
        height: 36px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 7px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .burger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

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

    .service-card {
        padding: 15px;
    }

    .service-card__title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .service-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        font-size: 20px;
        border-radius: 12px;
    }

    .work-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .work-step {
        padding: 15px;
    }

    .work-step__number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
        border-radius: 12px;
    }

    .work-step__title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .case-card {
        height: 250px;
    }

    .about__image {
        height: 250px;
    }

    .companies__grid {
        grid-template-columns: 1fr;
    }

    .company-card {
        padding: 20px;
    }

    .company-card__image {
        height: 80px;
    }

    .company-card__title {
        font-size: 16px;
    }

    .company-card__description {
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav.active {
        display: block;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 40px;
        animation: slideIn 0.3s ease forwards;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nav__list a {
        font-size: 24px;
    }

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

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

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

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Additional Animations and Effects */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn.success {
    background: #10B981;
    pointer-events: none;
}

.error-message {
    color: var(--accent-color);
    font-size: 14px;
    margin-top: 5px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group.error input {
    border: 2px solid var(--accent-color);
    animation: shake 0.5s ease-in-out;
}

/* Enhanced Service Card Hover Effects */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card__content {
    position: relative;
    z-index: 1;
}

/* Enhanced Case Card Hover Effects */
.case-card {
    position: relative;
}

.case-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-card:hover::after {
    opacity: 1;
}

.case-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.case-card:hover .case-card__content {
    transform: translateY(0);
}

/* Enhanced Mobile Menu */
.nav.active {
    animation: slideIn 0.3s ease forwards;
}

.nav.active .nav__list {
    animation: fadeIn 0.5s ease 0.3s forwards;
    opacity: 0;
}

/* Parallax Effects */
.hero__background {
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}

/* Enhanced Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Form Input Focus Effects */
.form-group input {
    transition: all 0.3s ease;
}

.form-group input:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced Section Transitions */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform-origin: 0 50%;
    transform: scaleX(0);
    z-index: 1001;
}

/* Enhanced Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Enhanced Mobile Menu Animation */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Particles */
.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--color-white);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

/* Enhanced Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card__content {
    position: relative;
    z-index: 1;
}

/* Enhanced Case Cards */
.case-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: scale(1.02);
}

.case-card img {
    transition: transform 0.3s ease;
}

.case-card:hover img {
    transform: scale(1.1);
}

.case-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.case-card:hover .case-card__content {
    transform: translateY(0);
}

/* Stats Animation */
.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--color-text);
}

/* Form Enhancements */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: var(--color-primary);
    outline: none;
}

.error-message {
    background: #ff4444;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    animation: shake 0.5s ease-in-out;
}

.success-message {
    background: #00C851;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Enhanced Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
    background: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .about__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about__stats {
        grid-template-columns: 1fr;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Logo Styles */
.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo__text {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-color);
    line-height: 1;
}

.logo__subtext {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-color);
    margin-top: 2px;
}

/* How We Work Section */
.how-we-work {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.work-step {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.work-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.work-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.work-step:hover::before {
    opacity: 0.05;
}

.work-step__number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    transition: transform 0.4s ease;
}

.work-step:hover .work-step__number {
    transform: scale(1.2);
}

.work-step__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.work-step__icon-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

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

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.work-step__icon-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    transition: transform 0.4s ease;
}

.work-step:hover .work-step__icon-bg {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.work-step:hover .work-step__icon-text {
    transform: rotate(-45deg);
}

.work-step__title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.work-step:hover .work-step__title {
    color: var(--primary-color);
}

.work-step__description {
    font-size: 16px;
    color: #64748B;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.work-step:hover .work-step__description {
    color: #475569;
}

/* Responsive Design for How We Work Section */
@media (max-width: 1024px) {
    .work-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .work-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .work-step {
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .work-step__number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
        background: #2563eb;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
    }

    .work-step:hover .work-step__number {
        transform: scale(1.1);
        background: #1d4ed8;
    }

    .work-step__title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .work-step__description {
        display: none;
    }
}

@media (max-width: 480px) {
    .work-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .work-step {
        padding: 15px;
    }
    
    .work-step__number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
        border-radius: 12px;
    }
    
    .work-step__title {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

/* Reviews Section */
.reviews {
    padding: 100px 0 120px 0;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin: 20px;
    margin-bottom: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.review-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.review-card__text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 25px;
    position: relative;
    padding-left: 0;
    flex: 1;
}

.review-card__text::before {
    content: none;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.review-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.2);
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 3px;
}

.review-card__position {
    font-size: 14px;
    color: #8898AA;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .review-card {
        padding: 25px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .review-card__text {
        font-size: 15px;
        padding-left: 0;
    }

    .review-card__text::before {
        content: none;
    }

    .review-card__avatar {
        width: 45px;
        height: 45px;
    }

    .review-card__name {
        font-size: 16px;
}

    .review-card__position {
        font-size: 12px;
}

    .reviews .swiper-slide {
        width: calc(100% - 20px) !important;
}
}

@media (min-width: 769px) and (max-width: 1024px) {
    .reviews .swiper-slide {
        width: calc(50% - 10px) !important;
}
}

@media (min-width: 1025px) {
    .reviews .swiper-slide {
        width: calc(33.333% - 20px) !important;
    }
}

/* Swiper container adjustments */
.reviews .swiper-container {
    padding-bottom: 40px;
    }

.reviews .swiper-wrapper {
    padding-bottom: 40px;
    display: flex;
    align-items: stretch;
}

/* Swiper Slide Styles */
.swiper-slide {
    height: auto;
}

.reviews .swiper-slide {
    box-sizing: border-box;
}

/* Hide pagination in reviews section */
.reviews .swiper-pagination {
    display: none !important;
}

/* Reviews Section Navigation */
.reviews .swiper-button-next,
.reviews .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: var(--primary-color);
    z-index: 10;
    display: flex !important;
    border: 2px solid var(--primary-color);
}

.reviews .swiper-button-next:after,
.reviews .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.reviews .swiper-button-next:hover,
.reviews .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.reviews .swiper-button-prev {
    left: 20px;
}

.reviews .swiper-button-next {
    right: 20px;
}

/* Responsive adjustments for reviews navigation */
@media (max-width: 768px) {
    .reviews .swiper-button-next,
    .reviews .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: var(--primary-color);
    color: var(--white);
        border: none;
    }
    
    .reviews .swiper-button-next:after,
    .reviews .swiper-button-prev:after {
        font-size: 18px;
}

    .reviews .swiper-button-prev {
        left: 10px;
    }
    
    .reviews .swiper-button-next {
        right: 10px;
    }

    .reviews .swiper-button-next:hover,
    .reviews .swiper-button-prev:hover {
        background: var(--accent-color);
        transform: scale(1.1);
}
}

@media (max-width: 480px) {
    .reviews .swiper-button-next,
    .reviews .swiper-button-prev {
        width: 35px;
        height: 35px;
}

    .reviews .swiper-button-next:after,
    .reviews .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* Reviews Section Navigation */
.reviews__more {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    }

.reviews__more .btn {
    padding: 16px 40px;
    font-size: 18px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }

.reviews__more .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Responsive adjustments for buttons */
@media (max-width: 768px) {
    .cases__more .btn,
    .reviews__more .btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cases__more .btn,
    .reviews__more .btn {
        padding: 12px 25px;
        font-size: 15px;
}
}

/* Cases Section */
.cases {
    padding: 120px 0;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}

.cases__more {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.cases__more .btn {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    }
    
.cases__more .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cases__more .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.cases__more .btn:hover::before {
    transform: translateX(100%);
}

.cases__more .btn::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.4s ease;
}

.cases__more .btn:hover::after {
    transform: translateX(5px);
}

/* Responsive adjustments for cases button */
@media (max-width: 768px) {
    .cases__more .btn {
        padding: 16px 35px;
    font-size: 16px;
    }
    
    .cases__more .btn::after {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cases__more .btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .cases__more .btn::after {
        font-size: 16px;
    }
}

/* Companies Section */
.companies {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.companies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.companies__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.companies__intro {
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
}

.companies__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.company-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.company-card:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: transparent;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 0, 255, 0.1));
}

.company-card__image {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.company-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.company-card:hover .company-card__image img {
    transform: scale(1.05);
}

.company-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 8px;
}

.company-card__description {
    font-size: 13px;
    color: #64748B;
    line-height: 1.4;
    text-align: center;
}

/* Responsive Design for Companies */
@media (max-width: 1200px) {
    .companies__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .companies__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .companies {
        padding: 60px 0;
    }

    .companies__grid {
        gap: 16px;
    }
    
    .company-card {
        padding: 15px;
    }

    .company-card__image {
        height: 60px;
}

    .company-card__title {
        font-size: 14px;
}

    .company-card__description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .companies__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .companies__intro {
        font-size: 14px;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phone-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover .whatsapp-icon {
    opacity: 1;
}

.whatsapp-button:hover .phone-icon {
    opacity: 0;
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .phone-icon {
        width: 20px;
        height: 20px;
    }
}

.cases-slider {
    position: relative;
    padding: 0 80px;
}

.cases-slider .swiper-button-next,
.cases-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #2563eb;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cases-slider .swiper-button-next:after,
.cases-slider .swiper-button-prev:after {
    font-size: 18px;
}

.cases-slider .swiper-button-next:hover,
.cases-slider .swiper-button-prev:hover {
    background: #1d4ed8;
}

.cases-slider .swiper-button-prev {
    left: 20px;
}

.cases-slider .swiper-button-next {
    right: 20px;
}

@media (max-width: 768px) {
    .cases-slider {
        padding: 0 60px;
    }

    .cases-slider .swiper-button-next,
    .cases-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .cases-slider .swiper-button-next:after,
    .cases-slider .swiper-button-prev:after {
        font-size: 16px;
}

    .cases-slider .swiper-button-prev {
        left: 15px;
    }

    .cases-slider .swiper-button-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .cases-slider {
        padding: 0 50px;
    }

    .cases-slider .swiper-button-next,
    .cases-slider .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .cases-slider .swiper-button-next:after,
    .cases-slider .swiper-button-prev:after {
        font-size: 14px;
    }

    .cases-slider .swiper-button-prev {
        left: 10px;
    }

    .cases-slider .swiper-button-next {
        right: 10px;
    }
} 

/* Form Messages */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.form-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
} 

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

/* Telegram Subscription Section */
.telegram-subscription {
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 50%, #40B3E0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.telegram-subscription::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.telegram-subscription__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.telegram-subscription__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.telegram-subscription__icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.telegram-subscription__title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.telegram-subscription__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #0088cc;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.telegram-subscription__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.telegram-subscription__button-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .telegram-subscription {
        padding: 60px 0;
    }
    
    .telegram-subscription__title {
        font-size: 28px;
    }
    
    .telegram-subscription__description {
        font-size: 16px;
    }
    
    .telegram-subscription__button {
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .telegram-subscription__title {
        font-size: 24px;
    }
    
    .telegram-subscription__description {
        font-size: 15px;
    }
    
    .telegram-subscription__button {
        padding: 12px 20px;
        font-size: 14px;
    }
} 

@media (max-width: 330px) {
  .hero__cta {
    font-size: 14px;
    padding: 12px 10px;
  }
  .hero-crm__cta {
    font-size: 14px;
    padding: 12px 10px;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-links__list a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.footer-links__list a:hover {
  color: var(--primary-color);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.main-cases {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.main-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(37, 99, 235, 0.03) 25%, transparent 25%), linear-gradient(-45deg, rgba(37, 99, 235, 0.03) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(37, 99, 235, 0.03) 75%), linear-gradient(-45deg, transparent 75%, rgba(37, 99, 235, 0.03) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
    z-index: 0;
}

.main-cases .container {
    position: relative;
    z-index: 1;
}

.main-case-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(30, 41, 59, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    text-decoration: none;
    color: inherit;
}

.main-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(30, 41, 59, 0.12);
}

.main-case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-case-card:hover img {
    transform: scale(1.05);
}

.main-case-card__content {
    padding: 24px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
}

.main-case-card__content h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.main-case-card__content p {
    flex-grow: 1;
    margin-bottom: 20px;
    color: #475569;
}

.main-case-card__content .btn {
    align-self: center;
}

.main-cases__more {
    text-align: center;
    margin-top: 40px;
}

.whatsapp-button:hover .phone-icon {
    transform: scale(1);
    opacity: 1;
}

.main-cases-slider {
    padding-bottom: 50px; /* For pagination */
}

.main-cases-slider .swiper-button-next,
.main-cases-slider .swiper-button-prev {
    color: #fff;
    background: var(--primary-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

.main-cases-slider .swiper-button-next:after,
.main-cases-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}
.main-cases-slider .swiper-button-next:hover,
.main-cases-slider .swiper-button-prev:hover {
    background: var(--dark-blue);
    color: #fff;
}

.main-cases-slider .swiper-button-prev {
    left: 10px;
}
.main-cases-slider .swiper-button-next {
    right: 10px;
}

@media (max-width: 768px) {
    .main-cases-slider {
        padding-bottom: 40px;
    }
    .main-cases-slider .swiper-button-next,
    .main-cases-slider .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    .main-cases-slider .swiper-button-next:after,
    .main-cases-slider .swiper-button-prev:after {
        font-size: 14px;
    }
    .main-cases-slider .swiper-button-prev {
        left: 5px;
    }
    .main-cases-slider .swiper-button-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .main-cases-slider {
        padding-bottom: 30px;
    }
    .main-cases-slider .swiper-button-next,
    .main-cases-slider .swiper-button-prev {
        display: none;
    }
}

.main-cases__more {
    text-align: center;
    margin-top: 40px;
}

.main-cases__more .btn {
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.main-case-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(30, 41, 59, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    text-decoration: none;
    color: inherit;
}

/* Main Reviews Section */
.main-reviews {
    padding: 100px 0 120px 0;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}

.main-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.main-review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin: 20px;
    margin-bottom: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px; /* Фиксированная высота для всех карточек */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.main-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.main-review-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    height: 100%;
}

.main-review-card__text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 25px;
    position: relative;
    padding-left: 0;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.main-review-card__text::before {
    content: none;
}

.main-review-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.main-review-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.2);
}

.main-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-review-card__info {
    flex: 1;
}

.main-review-card__name {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 3px;
}

.main-review-card__position {
    font-size: 14px;
    color: #8898AA;
}

/* Responsive Design for Main Reviews */
@media (max-width: 768px) {
    .main-review-card {
        padding: 25px;
        border-radius: 20px;
        margin-bottom: 30px;
        height: 280px; /* Немного уменьшаем высоту на мобильных */
    }

    .main-review-card__text {
        font-size: 15px;
        padding-left: 0;
        -webkit-line-clamp: 3; /* Уменьшаем количество строк на мобильных */
    }

    .main-review-card__text::before {
        content: none;
    }

    .main-review-card__avatar {
        width: 45px;
        height: 45px;
    }

    .main-review-card__name {
        font-size: 16px;
    }

    .main-review-card__position {
        font-size: 12px;
    }

    .main-reviews .swiper-slide {
        width: calc(100% - 20px) !important;
        display: flex;
        justify-content: center; /* Центрируем карточку */
    }
}

@media (max-width: 480px) {
    .main-review-card {
        height: 260px; /* Еще меньше на очень маленьких экранах */
        padding: 20px;
    }

    .main-review-card__text {
        font-size: 14px;
        -webkit-line-clamp: 2; /* Еще меньше строк */
    }

    .main-review-card__avatar {
        width: 40px;
        height: 40px;
    }

    .main-review-card__name {
        font-size: 15px;
    }

    .main-review-card__position {
        font-size: 11px;
    }

    .main-reviews .swiper-slide {
        width: calc(100% - 20px) !important;
        display: flex;
        justify-content: center; /* Центрируем карточку */
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .main-reviews .swiper-slide {
        width: calc(50% - 10px) !important;
    }
}

@media (min-width: 1025px) {
    .main-reviews .swiper-slide {
        width: calc(33.333% - 20px) !important;
    }
}

/* Swiper container adjustments for main reviews */
.main-reviews .swiper-container {
    padding-bottom: 40px;
}

.main-reviews .swiper-wrapper {
    padding-bottom: 40px;
    display: flex;
    align-items: stretch;
}

.main-reviews .swiper-slide {
    box-sizing: border-box;
}

/* Hide pagination in main reviews section */
.main-reviews .swiper-pagination {
    display: none !important;
}

/* Main Reviews Section Navigation */
.main-reviews .swiper-button-next,
.main-reviews .swiper-button-prev {
    color: #fff;
    background: var(--primary-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
    z-index: 10;
    display: none !important; /* Скрываем по умолчанию */
    top: 50%; /* Центрируем по вертикали */
    transform: translateY(-50%);
}

.main-reviews .swiper-button-next:after,
.main-reviews .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}

.main-reviews .swiper-button-next:hover,
.main-reviews .swiper-button-prev:hover {
    background: var(--dark-blue);
    color: #fff;
}

.main-reviews .swiper-button-prev {
    left: 10px;
}

.main-reviews .swiper-button-next {
    right: 10px;
}

/* Показываем стрелки только когда они нужны */
.main-reviews .swiper-button-next.swiper-button-disabled,
.main-reviews .swiper-button-prev.swiper-button-disabled {
    display: none !important;
}

.main-reviews .swiper-button-next:not(.swiper-button-disabled),
.main-reviews .swiper-button-prev:not(.swiper-button-disabled) {
    display: flex !important;
}

/* Responsive adjustments for main reviews navigation */
@media (max-width: 768px) {
    .main-reviews .swiper-button-next,
    .main-reviews .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        color: var(--white);
        border: none;
    }
    
    .main-reviews .swiper-button-next:after,
    .main-reviews .swiper-button-prev:after {
        font-size: 18px;
    }

    .main-reviews .swiper-button-prev {
        left: 10px;
    }
    
    .main-reviews .swiper-button-next {
        right: 10px;
    }

    .main-reviews .swiper-button-next:hover,
    .main-reviews .swiper-button-prev:hover {
        background: var(--accent-color);
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .main-reviews .swiper-button-next,
    .main-reviews .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .main-reviews .swiper-button-next:after,
    .main-reviews .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* Main Reviews Section Navigation */
.main-reviews__more {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.main-reviews__more .btn {
    padding: 16px 40px;
    font-size: 18px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.main-reviews__more .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Responsive adjustments for main reviews buttons */
@media (max-width: 768px) {
    .main-reviews__more .btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-reviews__more .btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Main Reviews Section Layout */
.main-reviews .swiper-wrapper {
    align-items: center; /* Центрируем слайды по вертикали */
}

.main-reviews .swiper-slide {
    display: flex;
    justify-content: center; /* Центрируем карточку по горизонтали */
    align-items: center; /* Центрируем карточку по вертикали */
    height: auto;
}

/* Центрирование карточек когда видна только одна */
@media (max-width: 767px) {
    .main-reviews .swiper-slide {
        justify-content: center;
        width: 100% !important;
    }
    
    .main-reviews .swiper-slide .main-review-card {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .main-reviews .swiper-slide .main-review-card {
        max-width: 350px;
        margin: 0 auto;
    }
}