* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, Roboto, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #171717;
    line-height: 1.5;
}

.bg-white {
    background-color: #EBF3FF;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: relative;
}

.navbar a:not(.btn) {
    text-decoration: none;
    text-transform: uppercase;
    color: #171717;
    padding: 10px 15px;
    font-weight: 600;
}

.navbar a:not(.btn):hover {
    color: #0071E3;
}

.nav-links {
    display: flex;
    gap: 10px;
    justify-content: end;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar .btn {
    background-color: #0071E3;
    color: white;
    padding: 10px 15px;
    margin-left: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.navbar-logo {
    width: 8.375rem;
    height: 8.375rem;
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 150px;
        left: -100%;
        height: calc(100vh - 150px);
        width: 320px;
        background-color: #EBF3FF;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        transition: left 0.3s ease-in-out;
        z-index: 90;
        justify-content: start;
    }

    .nav-links.show {
        left: 0;
    }

    .burger-btn {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    /*min-height: 100vh;*/
    position: relative;
    overflow: hidden;
    margin-top: -3rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 48px 16px;
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.hero-left {
    max-width: 536px;
    padding-top: 130px;
}

.hero-heading {
    margin-bottom: 24px;
}

.hero-heading h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #171717;
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-description {
    font-size: 18px;
    color: #171717;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 572px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    max-width: 526px;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #0071E3;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.15s ease;
    cursor: pointer;
    width: 100%;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #005bb5;
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #0071E3;
    color: #0071E3;
    background-color: transparent;
    padding: 16px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s ease;
    cursor: pointer;
    width: 100%;
    white-space: nowrap;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #0071E3;
    color: white;
}

.partner-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
}

.partner-icon {
    width: 28px;
    height: 28px;
    background-color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.partner-text-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.partner-text-desc {
    font-size: 14px;
    text-transform: lowercase;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    background-image: url('/assets/images/head.png');
    background-position: 30px center;
    background-repeat: no-repeat;
    height: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 96px;
    height: 96px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Statistics Section */
.stats-section {
    padding: 64px 16px;
    padding-top: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.stat-card {
    position: relative;
    padding: 64px 32px;
    max-width: calc(100% - 64px);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 255px;
    background: radial-gradient(circle, #226EE0 0%, #EBF3FF 50%);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 24px;
    line-height: 1.1;
    white-space: nowrap;
}

.stat-description {
    font-size: 20px;
    font-weight: 500;
    color: #171717;
    line-height: 1.25;
    max-width: 312px;
}

/* CTA Section */
.cta-section {
    padding: 64px 16px;
    padding-top: 0;
    background-color: white;
}

.cta-card {
    background: linear-gradient(90deg, #226EE0 0%, #7B61FF 100%);
    padding: 64px 32px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.15;
}

.cta-text {
    color: white;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #EBF3FF;
    color: #0071E3;
    padding: 16px 24px;
    border-radius: 8px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.15s ease;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
}

.cta-button:hover {
    background-color: white;
}

/* How It Works Section */
.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}
.bg-F7FAFF {
    background-color: #F7FAFF;
}
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.bg-\[#F7FAFF\] {
    background-color: #F7FAFF;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.p-10 {
    padding: 1.5rem;
}
.p-20 {
    padding: 2.5rem;
}
.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}
.z-11 {
    z-index: 11;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.max-w-\[306px\] {
    max-width: 306px;
}

.h-auto {
    height: auto;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.w-44 {
    width: 11rem;
}

.h-44 {
    height: 11rem;
}

.w-52 {
    width: 13rem;
}

.h-52 {
    height: 13rem;
}

.w-40 {
    width: 10rem;
}

.h-40 {
    height: 10rem;
}

.-top-20 {
    top: -5rem;
}

.top-20 {
    top: 5rem;
}

.top-52 {
    top: 13rem;
}

.-left-20 {
    left: -5rem;
}

.bottom-32 {
    bottom: 8rem;
}

.rotate-\[42deg\] {
    transform: rotate(42deg);
}

.rotate-\[-165deg\] {
    transform: rotate(-165deg);
}

.rotate-\[-15deg\] {
    transform: rotate(-15deg);
}

.rotate-\[136deg\] {
    transform: rotate(136deg);
}

.pointer-events-none {
    pointer-events: none;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

/* Icons */
.icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-arrow {
    width: 24px;
    height: 24px;
}
/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .btn-primary {
        width: 313px;
    }

    .btn-secondary {
        width: auto;
    }

    .hero-heading h1 {
        font-size: 60px;
    }

    .hero-description {
        font-size: 20px;
    }

    .cta-card {
        padding: 64px;
    }

    .cta-button {
        width: 250px;
    }
}
@media (max-width: 768px) {
    .btn-primary {
        width: 100%;
    }
    .hero-section {
        min-height: auto;
    }
    .hero-content {
        min-height: auto;
    }
    .hero-left {
        padding-top: 0;
    }
}
@media (min-width: 1025px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 112px 48px 112px;
    }

    .stats-section, .cta-section {
        padding: 64px 112px;
        padding-top: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .hero-heading h1 {
        font-size: 78px;
        line-height: 80px;
    }

    .hero-right {
        justify-content: flex-end;
    }

    .floating-labels {
        display: block;
    }

    .cta-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cta-content h2 {
        font-size: 46px;
    }

    .text-6xl {
        font-size: 6.04rem;
        line-height: 7rem;
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .lg\:col-start-1 {
        grid-column-start: 1;
    }

    .lg\:col-end-3 {
        grid-column-end: 3;
    }

    .lg\:order-2 {
        order: 2;
    }

    .lg\:order-3 {
        order: 3;
    }

    .lg\:order-4 {
        order: 4;
    }

    .lg\:order-5 {
        order: 5;
    }

    .lg\:text-\[23\.4px\] {
        font-size: 23.4px;
    }

    .lg\:text-\[6\.04rem\] {
        font-size: 6.04rem;
    }

    .lg\:leading-\[7rem\] {
        line-height: 7rem;
    }

    .lg\:block {
        display: block;
    }

    .left-\[37\%\] {
        left: 37%;
    }

    .left-\[40\%\] {
        left: 40%;
    }

    .right-\[38\%\] {
        right: 38%;
    }
}
@media (max-width: 768px) {
    .hero-left {
        max-width: 100%;
    }
    .hero-right {
        display: none;
    }
}
.section {
    padding: 4rem 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.service-card {
    background: #F7FAFF;
    border-radius: 1.5rem;
    height: 462px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 3rem 2.5rem 2rem;
}

.service-card h3 {
    font-size: 1.463rem;
    font-weight: 700;
    color: #171717;
    line-height: 1.625rem;
    margin-bottom: 1.063rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.25rem;
    color: #171717;
    padding-right: 4.375rem;
}

.service-card .highlight {
    font-weight: 700;
}

.service-card .normal {
    font-weight: 400;
}

.service-card img {
    position: absolute;
    bottom: 1.875rem;
    right: 1.875rem;
    width: 7.5rem;
    height: 7.5rem;
    object-fit: contain;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #226EE0, #7B61FF);
    border-radius: 1.5rem;
    padding: 2.969rem 4rem 4rem;
    color: white;
    margin-bottom: 4rem;
}

.cta-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.cta-text h2 {
    font-size: 2.869rem;
    font-weight: 700;
    line-height: 3.313rem;
    margin-bottom: 1.031rem;
}

.cta-text p {
    font-size: 1.25rem;
    line-height: 1.563rem;
}

.cta-button {
    background: #EBF3FF;
    color: #0071E3;
    padding: 1.188rem 1.563rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.438rem;
    height: 3.5rem;
    transition: background-color 0.3s;
    flex-shrink: 0;
    text-decoration: none;
}

.cta-button:hover {
    background: white;
}

/* Benefits Section */
.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 4.375rem;
    margin-bottom: 1.5rem;
}

.benefits-header .highlight {
    color: #4B1EFF;
}

.benefits-header p {
    font-size: 1.25rem;
    line-height: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

/*.benefits-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));*/
/*    gap: 1.5rem;*/
/*    margin-bottom: 4rem;*/
/*}*/
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.row {
    display: grid;
    gap: 1.5rem;
}

.row:nth-child(1) {
    grid-template-columns: repeat(2, 1fr);
}

.row:nth-child(2) {
    grid-template-columns: repeat(3, 1fr);
}

.row:nth-child(3) {
    grid-template-columns: 1fr;
}

.benefit-card {
    background: #F7FAFF;
    border-radius: 1.5rem;
    padding: 4.5rem 2.5rem 2.5rem 2.5rem;
    position: relative;
}
.benefit-card.benefit-card--big {
    padding: 4rem; position: relative;
}

.benefit-tag {
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 1.5rem 0;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    position: absolute;
    left: 0;
    top: 0;
}

.benefit-tag.purple { background: #7359F5; }
.benefit-tag.blue { background: #0071E3; }
.benefit-tag.orange { background: #FFA462; }
.benefit-tag.coral { background: #FF8D74; }
.benefit-tag.primary { background: #4B1EFF; }

.benefit-card h3 {
    font-size: 1.438rem;
    font-weight: 700;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card p {
    font-size: 0.875rem;
    line-height: 1.125rem;
}

.benefit-card-row {
    display: flex; align-items: center; gap: 2rem; padding-top: 2rem;
}
.benefit-card-row .benefit-card-row__title {
    font-size: 2.875rem; font-weight: 700; line-height: 3.313rem; margin-bottom: 1.5rem;
}
.benefit-card-row .benefit-card-row__text {
    font-size: 1rem; line-height: 1.25rem; margin-bottom: 2rem;
}
.benefit-card-row .benefit-card-row__input {
    border: 1px solid #0071E3; border-radius: 0.5rem; padding: 1.5rem; font-size: 0.875rem; color: #171717;
    width: 100%;
    outline-color: #0071E3;
}
.benefit-card-row .benefit-card-row__image {
    width: 100%;
    object-fit: cover; border-radius: 1.5rem;
}
/* Statistics Section */
.stats-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 0;
}

.stats-grid2 .stat-card {
    height: 283px;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

.stats-grid2 .stat-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stats-grid2 .stat-number {
    font-size: 5.063rem;
    font-weight: 700;
    line-height: 6.625rem;
    margin-bottom: 0.5rem;
}

.stats-grid2 .stat-text {
    font-size: 1.25rem;
    line-height: 1.5rem;
}

@media (max-width: 768px) {
    .stat-card {
        padding: 16px 16px;
        max-width: calc(100% - 32px);
        min-height: 205px;
    }
    .stats-grid {
        gap: 0;
    }
    .stat-number, .stats-grid2 .stat-number {
        font-size: 32px;
        line-height: 1.1;
    }
    .stat-description, .stats-grid2 .stat-text {
        font-size: 18px;
    }
    .stats-grid2 .stat-card {
        height: auto;
    }
    .stats-grid2 {
        gap: 0;
    }
}
/* Knowledge Section */
.knowledge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.knowledge-left {
    background: #D4DCF8;
    border-radius: 1.5rem;
    padding: 4.5rem 2.5rem 2.5rem 2.5rem;
    position: relative;
}

.knowledge-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.knowledge-card {
    background: #F7FAFF;
    border-radius: 1.5rem;
    padding: 4.5rem 2.5rem 2.5rem 2.5rem;
    position: relative;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    border: 1px solid #4B1EFF;
    border-radius: 1.875rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #171717;
}

.action-button {
    background: #0071E3;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.action-button:hover {
    background: #005bb5;
}

/* Reviews Slider */
.reviews-section {
    padding: 4rem 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.review-card {
    flex: 0 0 33.333%;
    padding: 0 0.75rem;
}

.review-content {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1.313rem;
    padding: 2rem;
    min-height: 400px;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.review-avatar {
    width: 3.813rem;
    height: 3.813rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-meta h3 {
    font-size: 1.063rem;
    font-weight: 700;
    line-height: 1.375rem;
    margin-bottom: 0.25rem;
}

.review-meta p {
    font-size: 0.75rem;
    color: #8A929C;
    line-height: 1rem;
}

.review-text {
    font-size: 0.875rem;
    line-height: 1.063rem;
    margin-bottom: 1.25rem;
}
.review-text {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}
.review-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review-tag {
    border: 1px solid #4B1EFF;
    border-radius: 1.625rem;
    padding: 0.438rem 0.938rem;
    font-size: 0.75rem;
    color: #171717;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.nav-button {
    padding: 0.5rem;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background: #f3f4f6;
}

/* Pricing Section */
.pricing-section {
    background: #f9fafb;
    padding: 4rem 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 12rem;
    position: relative;
}

.pricing-header h2 {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 4.375rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-cat {
    position: absolute;
    top: -2.625rem;
    right: 10.375rem;
    width: 19.125rem;
    height: 28.688rem;
}

.pricing-table {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.features-column {
    width: 300px;
    background: transparent;
}

.feature-row {
    height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D9E8FF;
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-plans {
    display: flex;
    flex: 1;
}

.pricing-plan {
    flex: 1;
    background: white;
    border: 1px solid #e5e7eb;
}

.plan-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #D9E8FF;
}

.plan-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.plan-feature {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #D9E8FF;
    font-size: 0.875rem;
    font-weight: 700;
}

.plan-footer {
    padding: 2rem;
    text-align: center;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.price-value {
    font-size: 1.438rem;
    font-weight: 700;
}

.price-unit {
    font-size: 1rem;
    color: #8A929C;
}

.plan-button {
    width: 100%;
    background: #EBF3FF;
    color: #0071E3;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.plan-button:hover {
    background: #dbeafe;
}

.popular-plan {
    background: #4B1EFF;
    color: white;
    transform: scale(1.05);
    z-index: 10;
}

.popular-plan .plan-feature {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.popular-plan .price-value {
    color: white;
}

.popular-plan .price-unit {
    color: #E8EAED;
}
@media (max-width: 768px) {
    .pricing-plans {
        flex-direction: column;
    }
    .features-column {
        display: none;
    }
    .popular-plan {
        transform: none;
    }
}
/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    display: flex;
}

.faq-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 1.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 3rem;
    background: linear-gradient(91deg, #4B1EFF -25.11%, rgba(75, 30, 255, 0.40) 126.69%);
    border: none;
    color: white;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question h3 {
    font-size: 2.625rem;
    font-weight: 700;
    line-height: 3.313rem;
    padding-right: 2rem;
}

.faq-toggle {
    width: 4.25rem;
    height: 3.5rem;
    background: #EBF3FF;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 3rem 3rem 3rem;
    background: linear-gradient(91deg, #4B1EFF -25.11%, rgba(75, 30, 255, 0.40) 126.69%);
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-answer-content {
    /*background: rgba(255, 255, 255, 0.1);*/
    /*border-radius: 1rem;*/
    padding: 0;
}

.faq-answer p {
    color: white;
    font-size: 1.25rem;
    line-height: 3.313rem;
}

/* Footer */
.footer {
    background: white;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4B1EFF;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: #171717;
    text-decoration: none;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 8.375rem;
    height: 8.375rem;
    margin-bottom: -2rem;
}

.contact-button {
    background: #0071E3;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background: #005bb5;
}

.phone-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: #171717;
    text-decoration: none;
}

.phone-info {
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: #171717;
}

.callback-link {
    font-size: 0.875rem;
    color: #0071E3;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #CED8FB;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.75rem;
    line-height: 0.938rem;
    color: #171717;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0071E3;
    text-decoration: none;
}

/* Icons */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #0071E3;
}

.checkmark {
    width: 1.25rem;
    height: 1.25rem;
    background: #4B1EFF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark.light {
    background: #fff;
    color: #4B1EFF;
}

.cross {
    width: 1.25rem;
    height: 1.25rem;
}

/* Brands Section */
.brands-section {
    background: rgba(206, 216, 251, 0.50);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 4rem;
}

.brands-wrapper {
    display: flex; flex-direction: row; gap: 2rem;
}
.brands-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    align-items: center;
    justify-items: center;
    flex-shrink: 0;
}

.brand-logo {
    width: 14rem;
    height: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.brand-logo img:hover {
    opacity: 1;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        flex: 0 0 50%;
    }

    .pricing-cat {
        display: none;
    }
    .brands-wrapper {
        flex-direction: column;
    }
    .brands-grid {
        gap: 1.5rem;
    }

    .brand-logo {
        width: 6rem;
        height: 6rem;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .brands-wrapper {
        padding-left: 2rem;
    }
    .brands-section {
        margin-bottom: 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    .service-card {
        padding: 1.5rem 1.5rem 4.5rem 1.5rem;
        height: auto;
    }
    .service-card p {
        padding-right: 0;
    }
    .service-card img {
        width: 3.75rem;
        height: 3.75rem;
        bottom: 0.875rem;
        right: 0.875rem;
    }

    .row:nth-child(1) {
        grid-template-columns: 1fr;
    }

    .row:nth-child(2) {
        grid-template-columns: 1fr;
    }

    .row:nth-child(3) {
        grid-template-columns: 1fr;
    }

    .stats-grid2 {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        align-items: start;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .pricing-table {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 4rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1.5rem;
        line-height: 2rem;
        padding-right: 1rem;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .brand-logo {
        width: 5rem;
        height: 5rem;
    }

    .brands-section .container > div {
        gap: 1.5rem;
    }

    .brands-section h2 {
        font-size: 1.5rem !important;
        line-height: 2rem !important;
    }

    .brands-section p {
        font-size: 1rem !important;
        line-height: 1.5rem !important;
    }
}

.custom-grid {
    display: grid;
    width: 100vw;
    max-width: 1200px;
    /*grid-template-columns: 820px 380px;*/
    grid-template-columns: 68.33% 31.66%;
    grid-template-areas:
        "item1 item2"
        "item3 item2"
        "item4 item2"
        "item5 item2";
    gap: 2.8rem 0;
}

.item1 { grid-area: item1; width: 82%; }
.item2 { grid-area: item2; }
.item3 { grid-area: item3; width: 82%; }
.item4 { grid-area: item4; width: 82%; margin-left: auto; margin-right: 2rem }
.item5 { grid-area: item5; z-index: 1}

.item1 .arrow {
    right: -25%;
    top: -50%;
    z-index: 11;
}
.item2 .arrow {
    left: -47%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
}
.item3 .arrow {
    left: 8%;
    transform: translateX(-50%);
    bottom: -100%;
    z-index: 11;
}
.item4 .arrow {
    right: 0;
    bottom: -80%;
    z-index: 11;
}
.knowledge-section {
    padding-top: 64px;
}
@media (max-width: 768px) {
    .custom-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "item1"
            "item2"
            "item3"
            "item4"
            "item5";
        padding: 0 1rem;
        gap: 1.4rem 0;
    }
    .item {
        width: 100%!important;
        overflow: hidden;
    }
    .item .arrow {
        display: none!important;
    }

    .benefits-header {
        margin-bottom: 2rem;
    }
    .benefit-card-row {
        flex-direction: column;
    }
    .benefits-header h2, .hero-heading h1, .cta-text h2,
    .pricing-header h2 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    .benefit-card-row .benefit-card-row__title {
        font-size: 1.438rem;
    }
    .faq-section {
        flex-direction: column;
        padding: 2rem 0;
    }
    .partner-section {
        padding-top: 0;
    }
    .cta-section {
        padding: 2rem;
    }
    .tag {
        font-size: 12px;
    }
    .tag:nth-child(n+6) {
        display: none;
    }
    .knowledge-grid {
        margin-bottom: 2rem;
    }
    .knowledge-card, .knowledge-left, .benefit-card {
        padding: 4.5rem 1.5rem 1.5rem 1.5rem;
    }
    .benefit-card.benefit-card--big {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    }
    .knowledge-section {
        padding-bottom: 0;
    }
    .pricing-section {
        padding: 2rem 0;
    }
    .pricing-header {
        margin-bottom: 2rem;
    }
    .faq-question {
        padding: 1.5rem;
    }
    .faq-answer {
        padding: 1.5rem;
        padding-top: 0;
    }
    .faq-answer p {
        line-height: 1.5;
    }
    .faq-toggle {
        width: 2.12rem;
        height: 1.75rem;
    }
    .footer {
        padding: 1rem 0;
    }
}