html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
}

.mb-hero-section {
    position: relative;
    margin: 24px 25px;
    border-radius: 24px;
    min-height: 100vh;
    padding: 20px 34px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mb-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/ma/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*filter: blur(8px);*/
    z-index: 0;
    border-radius: 24px;
}

.mb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.mb-logo {
    height: 40px;
    width: auto;
}

.mb-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.mb-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.mb-nav-link:hover {
    color: #1D63F0;
}

.mb-btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    background: linear-gradient(90deg, #1D63F0 0%, #2723FF 47.79%, #1D63F0 100%);
    border: none;
    border-radius: 100px;
    padding: 13px 28px;
    cursor: pointer;
    box-shadow: 0px 0px 8px 0px rgba(39, 35, 255, 0.5);
    transition: box-shadow 0.2s;
}

.mb-btn-primary:hover {
    box-shadow: 0px 0px 12px 0px rgba(39, 35, 255, 0.6);
}

.mb-main-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
}

.mb-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 52px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 12px;
    max-width: 66.66%;
    margin-left: auto;
    margin-right: auto;
}

.mb-title-gradient {
    background: linear-gradient(90deg, #2723FF 10.58%, #1D63F0 85.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mb-title-black {
    color: #000;
}

.mb-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #525762;
    margin-bottom: 20px;
    max-width: 66.66%;
    margin-left: auto;
    margin-right: auto;
}

.mb-subtitle strong {
    font-weight: 700;
}

.mb-hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.mb-hero-btn {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    width: 187px;
    height: 44px;
    border-radius: 20px;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.mb-hero-btn-primary {
    background: #1D63F0;
    color: #fff;
    border: none;
}

.mb-hero-btn-primary:hover {
    background: #1553d0;
}

.mb-hero-btn-secondary {
    background: transparent;
    color: #1D63F0;
    border: 2px solid #1D63F0;
}

.mb-hero-btn-secondary:hover {
    background: rgba(29, 99, 240, 0.1);
}

.mb-upload-box {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 48px 32px;
    margin: 32px auto;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mb-files-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.mb-files-image {
    max-width: 100%;
    height: auto;
}

.mb-plus-icon {
    font-size: 48px;
    color: #1D63F0;
    font-weight: 300;
    margin: 16px 0;
    line-height: 1;
}

.mb-upload-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #333;
    margin-top: 16px;
}

.mb-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #1D63F0;
    text-decoration: none;
}

.mb-link:hover {
    text-decoration: underline;
}

.mb-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.mb-checkbox-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    vertical-align: middle;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #333;
}

.mb-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1D63F0;
}

.mb-difficulty-selector {
    display: flex;
    gap: 8px;
}

.mb-difficulty-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    vertical-align: middle;
    padding: 8px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 100px;
    background: white;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.mb-difficulty-btn:hover {
    border-color: #1D63F0;
    color: #1D63F0;
}

.mb-difficulty-active {
    background: #1D63F0;
    color: white;
    border-color: #1D63F0;
}

.mb-generate-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    background: linear-gradient(90deg, #1D63F0 0%, #2723FF 47.79%, #1D63F0 100%);
    border: none;
    border-radius: 100px;
    padding: 13px 28px;
    cursor: pointer;
    box-shadow: 0px 0px 8px 0px rgba(39, 35, 255, 0.5);
    transition: box-shadow 0.2s;
    margin: 32px auto;
    display: block;
}

.mb-generate-btn:hover {
    box-shadow: 0px 0px 12px 0px rgba(39, 35, 255, 0.6);
}

.mb-badges-container {
    position: relative;
    margin-top: 12px;
    overflow: hidden;
    height: 33px;
    z-index: 1;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.mb-badges-container::before,
.mb-badges-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.mb-badges-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 248, 249, 1), rgba(248, 248, 249, 0));
}

.mb-badges-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 248, 249, 1), rgba(248, 248, 249, 0));
}

.mb-badges-scroll {
    display: flex;
    gap: 8px;
    animation: scroll-badges 30s linear infinite;
    white-space: nowrap;
    width: fit-content;
    min-width: 0;
}

.mb-badge {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 4px 10px;
    border: 1px solid #E0E0E0;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes scroll-badges {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.mb-stats-section {
    background: white;
    padding: 80px 25px;
    text-align: center;
}

.mb-stats-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    letter-spacing: 0%;
    text-align: center;
    color: #000;
    margin: 0 auto 64px;
    max-width: 900px;
}

.mb-stats-description strong {
    font-weight: 600;
}

.mb-stats-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.mb-stat-item {
    flex: 1;
    position: relative;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mb-stat-separator {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: auto;
    object-fit: contain;
    z-index: 1;
}

.mb-stat-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #1D63F0;
    margin-bottom: 16px;
}

.mb-stat-label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #000;
    margin-bottom: 8px;
}

.mb-stat-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #3F4553;
}

@media (max-width: 768px) {
    .mb-hero-section {
        margin: 16px;
        padding: 16px;
    }

    .mb-header {
        flex-direction: column;
        gap: 16px;
    }

    .mb-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mb-title {
        font-size: 36px;
        line-height: 40px;
        max-width: 100%;
    }

    .mb-subtitle {
        max-width: 100%;
        font-size: 16px;
    }

    .mb-main-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .mb-badges-container {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .mb-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .mb-stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .mb-stat-item {
        padding: 0 20px;
    }

    .mb-stat-item:not(:last-child)::after {
        display: none;
    }

    .mb-stat-separator {
        display: none;
    }

    .mb-stats-description {
        font-size: 22px;
        line-height: 32px;
    }
}

.mb-features-section {
    background: white;
    padding: 80px 25px;
    text-align: center;
}

.mb-features-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 auto 16px;
}

.mb-features-title-blue {
    color: #1D63F0;
}

.mb-features-title-dark {
    color: #09152F;
}

.mb-features-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #3F4553;
    margin: 0 auto 64px;
    max-width: 800px;
}

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

.mb-feature-card {
    background: #FBFCFC;
    border: 2px solid #E2E8F0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 350px;
}

.mb-feature-card-1 {
    grid-column: 1;
    grid-row: 1;
}

.mb-feature-card-2 {
    grid-column: 2 / 4;
    grid-row: 1;
}

.mb-feature-card-3 {
    grid-column: 1 / 3;
    grid-row: 2;
}

.mb-feature-card-4 {
    grid-column: 3;
    grid-row: 2;
}

.mb-feature-image {
    max-width: calc(100% - 48px);
    width: calc(100% - 48px);
    height: calc(100% - 48px);
    object-fit: cover;
    display: block;
    margin: 24px;
    box-sizing: border-box;
}

.mb-feature-footer {
    width: 100%;
    min-height: 121px;
    gap: 8px;
    padding: 24px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mb-feature-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(360deg, rgba(29, 99, 240, 0.2) 27.99%, rgba(251, 252, 252, 0.05) 78.53%, rgba(251, 252, 252, 0) 99.16%);
    backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: 0;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
}

.mb-feature-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
    margin: 0 0 8px 0;
    position: relative;
    z-index: 2;
    text-align: left;
}

.mb-feature-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #3F4553;
    margin: 0;
    position: relative;
    z-index: 2;
    text-align: left;
}

.mb-why-section {
    background: white;
    padding: 80px 25px;
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mb-why-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
    margin: 0 auto 64px;
}

.mb-why-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    height: 100%;
}

.mb-why-center {
    grid-column: 2;
    grid-row: 1 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.mb-why-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.mb-why-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mb-why-left-1 {
    grid-column: 1;
    grid-row: 1;
}

.mb-why-left-2 {
    grid-column: 1;
    grid-row: 2;
}

.mb-why-left-3 {
    grid-column: 1;
    grid-row: 3;
}

.mb-why-right-1 {
    grid-column: 3;
    grid-row: 1;
}

.mb-why-right-2 {
    grid-column: 3;
    grid-row: 2;
}

.mb-why-right-3 {
    grid-column: 3;
    grid-row: 3;
}

.mb-why-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #000;
    margin: 0;
}

@media (max-width: 768px) {
    .mb-features-grid {
        grid-template-columns: 1fr;
    }

    .mb-feature-card-1,
    .mb-feature-card-2,
    .mb-feature-card-3,
    .mb-feature-card-4 {
        grid-column: 1;
        grid-row: auto;
    }

    .mb-features-title {
        font-size: 28px;
        line-height: 32px;
    }

    .mb-features-subtitle {
        font-size: 18px;
    }

    .mb-feature-footer {
        width: 100%;
    }

    .mb-why-section {
        height: auto;
        min-height: 400px;
        padding: 40px 25px;
    }

    .mb-why-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 32px;
    }

    .mb-why-center {
        grid-column: 1;
        grid-row: auto;
        order: 2;
    }

    .mb-why-item {
        grid-column: 1;
        grid-row: auto;
    }

    .mb-why-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 32px;
    }
}

.mb-why-section {
    background: white;
    padding: 80px 25px;
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mb-why-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
    margin: 0 auto 64px;
}

.mb-why-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    height: 100%;
}

.mb-why-center {
    grid-column: 2;
    grid-row: 1 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.mb-why-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.mb-why-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mb-why-left-1 {
    grid-column: 1;
    grid-row: 1;
}

.mb-why-left-2 {
    grid-column: 1;
    grid-row: 2;
}

.mb-why-left-3 {
    grid-column: 1;
    grid-row: 3;
}

.mb-why-right-1 {
    grid-column: 3;
    grid-row: 1;
}

.mb-why-right-2 {
    grid-column: 3;
    grid-row: 2;
}

.mb-why-right-3 {
    grid-column: 3;
    grid-row: 3;
}

.mb-why-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #000;
    margin: 0;
}

@media (max-width: 768px) {
    .mb-why-section {
        height: auto;
        min-height: 400px;
        padding: 40px 25px;
    }

    .mb-why-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 32px;
    }

    .mb-why-center {
        grid-column: 1;
        grid-row: auto;
        order: 0;
    }

    .mb-why-left-1,
    .mb-why-left-2,
    .mb-why-left-3,
    .mb-why-right-1,
    .mb-why-right-2,
    .mb-why-right-3 {
        grid-column: 1;
        grid-row: auto;
    }

    .mb-why-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 32px;
    }
}

.mb-cta-section {
    background: white;
    padding: 120px 85px;
}

.mb-cta-container {
    max-width: 1033px;
    max-height: 389px;
    height: 509px;
    background: #1D63F0;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.mb-cta-content {
    padding: 48px 0 0 65px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.mb-cta-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0 0 13px 0;
    width: 523px;
}

.mb-cta-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0 0 auto 0;
    width: 523px;
}

.mb-cta-buttons {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    margin-top: auto;
    margin-bottom: 48px;
}

.mb-cta-btn {
    width: 210px;
    height: 44px;
    border-radius: 20px;
    gap: 8px;
    padding: 12px 16px;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid white;
    transition: all 0.2s;
}

.mb-cta-btn-white {
    background: white;
    color: #1D63F0;
    border-color: white;
}

.mb-cta-btn-white:hover {
    background: #f0f0f0;
}

.mb-cta-btn-blue {
    background: #1D63F0;
    color: white;
    border-color: white;
}

.mb-cta-btn-blue:hover {
    background: #1553d0;
}

.mb-cta-images {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('/static/ma/images/el.png');
    background-size: 200% auto;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: visible;
}

.mb-cta-images::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background-image: url('/static/ma/images/iPhone 13 Pro.png');
    background-size: auto 100%;
    background-position: top right;
    background-repeat: no-repeat;
    z-index: 1;
    transform: translateX(-30%);
}

.mb-cta-images::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 50%;
    background-image: url('/static/ma/images/iPhone 13 Pro_2.png');
    background-size: auto 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
    z-index: 1;
}

@media (max-width: 768px) {
    .mb-cta-section {
        padding: 40px 20px;
    }

    .mb-cta-container {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 509px;
    }

    .mb-cta-content {
        padding: 32px 24px;
    }

    .mb-cta-title {
        width: 100%;
        font-size: 32px;
        line-height: 38px;
    }

    .mb-cta-subtitle {
        width: 100%;
        font-size: 16px;
    }

    .mb-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .mb-cta-btn {
        width: 100%;
    }

    .mb-cta-images {
        height: 300px;
        min-height: 300px;
    }
}

.mb-testimonials-section {
    background: white;
    padding: 80px 25px;
    text-align: center;
}

.mb-testimonials-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
    margin: 0 auto 16px;
}

.mb-testimonials-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #3F4553;
    margin: 0 auto 48px;
    max-width: 800px;
}

.mb-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.mb-testimonial-card {
    width: 100%;
    max-width: 323px;
    height: 481px;
    border-radius: 24px;
    gap: 8px;
    border: 1px solid #E2E8F0;
    padding: 24px;
    background: #FBFCFC;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
    cursor: pointer;
    margin: 0 auto;
}

.mb-testimonial-card:hover {
    background: #1D63F0;
}

.mb-testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #3F4553;
    margin: 0;
    text-align: left;
    flex: 1;
}

.mb-testimonial-card:hover .mb-testimonial-text {
    color: #ECECEC;
}

.mb-testimonial-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: auto;
}

.mb-testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #3F4553;
    margin: 0;
    text-align: left;
}

.mb-testimonial-card:hover .mb-testimonial-name {
    color: #ECECEC;
}

.mb-testimonial-role {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #3F4553;
    margin: 0;
    text-align: left;
}

.mb-testimonial-card:hover .mb-testimonial-role {
    color: #ECECEC;
}

.mb-testimonial-stars {
    font-weight: 500;
}

@media (max-width: 768px) {
    .mb-testimonials-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .mb-testimonial-card {
        width: 100%;
        max-width: 323px;
        margin: 0 auto;
    }

    .mb-testimonials-title {
        font-size: 28px;
        line-height: 32px;
    }

    .mb-testimonials-subtitle {
        font-size: 18px;
    }
}

.mb-pricing-section {
    background: white;
    padding: 80px 25px;
    text-align: center;
}

.mb-pricing-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    color: #000;
    margin: 0 auto 16px;
}

.mb-pricing-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #3F4553;
    margin: 0 auto 48px;
    max-width: 800px;
}

.mb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.mb-pricing-card {
    width: 315.5px;
    height: 704px;
    border-radius: 24px;
    gap: 27px;
    border: 1px solid #E2E8F0;
    padding: 24px;
    background-color: #FBFCFC;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.mb-pricing-card-popular {
    width: 339px;
    height: 732px;
    border-radius: 32px;
    gap: 8px;
    padding: 8px;
    box-shadow: 0px 0px 20px 0px rgba(29, 99, 240, 0.5);
    background: white;
    border: none;
}

.mb-pricing-card-popular .mb-pricing-card-inner {
    background: #FBFCFC;
    border-radius: 24px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mb-pricing-badge {
    background: #1D63F0;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
}

.mb-pricing-card-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: 0%;
    color: #000;
    margin: 0 0 8px 0;
    text-align: left;
}

.mb-pricing-card-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #3F4553;
    margin: 0 0 16px 0;
    text-align: left;
}

.mb-pricing-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
    margin: 0 0 24px 0;
    text-align: left;
    font-size: 24px;
    font-weight: 600;
}

.mb-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    text-align: left;
    flex: 1;
}

.mb-pricing-features li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #3F4553;
    margin: 0 0 12px 0;
    padding-left: 24px;
    position: relative;
}

.mb-pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1D63F0;
    font-weight: 600;
}

.mb-pricing-features li.disabled-feature::before {
    content: '✕';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #9CA3AF;
    color: #9CA3AF;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    top: 0;
}

.mb-pricing-features li.disabled-feature {
    color: #9CA3AF;
}

.mb-pricing-btn {
    width: 267.5px;
    height: 44px;
    border-radius: 16px;
    gap: 8px;
    border: 1px solid #1D63F0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 auto;
}

.mb-pricing-btn-outline {
    background: transparent;
    color: #1D63F0;
}

.mb-pricing-btn-outline:hover {
    background: #1D63F0;
    color: white;
}

.mb-pricing-btn-solid {
    background: #1D63F0;
    color: white;
}

.mb-pricing-btn-solid:hover {
    background: #1553d0;
    border-color: #1553d0;
}

@media (max-width: 768px) {
    .mb-pricing-grid {
        grid-template-columns: 1fr;
    }

    .mb-pricing-card,
    .mb-pricing-card-popular {
        width: 100%;
        max-width: 339px;
        height: auto;
        min-height: 704px;
    }

    .mb-pricing-title {
        font-size: 28px;
        line-height: 32px;
    }

    .mb-pricing-subtitle {
        font-size: 18px;
    }
}

.mb-faq-section {
    background: white;
    padding: 80px 25px;
    text-align: center;
}

.mb-faq-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    color: #000;
    margin: 0 auto 16px;
}

.mb-faq-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #3F4553;
    margin: 0 auto 48px;
    max-width: 800px;
}

.mb-faq-container {
    max-width: 862px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mb-faq-item {
    width: 100%;
    max-width: 862px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    background: #FBFCFC;
    overflow: hidden;
    transition: all 0.3s;
}

.mb-faq-item.active {
    height: auto;
}

.mb-faq-question {
    width: 100%;
    min-height: 72px;
    padding: 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000;
}

.mb-faq-question:hover {
    background: rgba(29, 99, 240, 0.05);
}

.mb-faq-question span:first-child {
    flex: 1;
    text-align: left;
}

.mb-faq-icon {
    font-size: 14px;
    color: #1D63F0;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.mb-faq-item.active .mb-faq-icon {
    transform: rotate(180deg);
}

.mb-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
}

.mb-faq-item.active .mb-faq-answer {
    max-height: 1000px;
    padding: 0 24px 24px 24px;
}

.mb-faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #3F4553;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .mb-faq-container {
        max-width: 100%;
    }

    .mb-faq-title {
        font-size: 28px;
        line-height: 32px;
    }

    .mb-faq-subtitle {
        font-size: 18px;
    }

    .mb-faq-question {
        font-size: 16px;
        padding: 20px;
    }
}

.mb-final-cta-section {
    background: 
        linear-gradient(to bottom, 
            white 0%, 
            white 15%, 
            #1D63F0 15%, 
            #1D63F0 85%, 
            white 85%, 
            white 100%
        ),
        url('/static/ma/images/iPhone 13 Pro_3.png');
    background-size: 
        100% 100%,
        auto 120%;
    background-position: 
        center center,
        right center;
    background-repeat: no-repeat;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.mb-final-cta-container {
    max-width: 1200px;
    height: 333px;
    gap: 48px;
    padding: 0 84px;
    border: none;
    background: transparent;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    position: relative;
    border-radius: 24px;
    z-index: 2;
}

.mb-final-cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.mb-final-cta-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 44px;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;
    text-align: left;
}

.mb-final-cta-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;
    text-align: left;
}

.mb-final-cta-btn {
    width: 210px;
    height: 44px;
    border-radius: 20px;
    gap: 8px;
    background: white;
    color: #09152F;
    border: none;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.mb-final-cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mb-final-cta-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('/static/ma/images/iPhone 13 Pro_3.png');
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
}

@media (max-width: 768px) {
    .mb-final-cta-container {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 333px;
        padding: 32px 24px;
    }

    .mb-final-cta-title {
        font-size: 32px;
        line-height: 36px;
    }

    .mb-final-cta-subtitle {
        font-size: 16px;
    }

    .mb-final-cta-image {
        height: 300px;
        min-height: 300px;
        background-size: auto 100%;
    }
}

.mb-footer {
    background: white;
    padding: 80px 84px;
    border-top: 1px solid #E2E8F0;
}

.mb-footer-container {
    max-width: 1033px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 100px;
}

.mb-footer-column {
    display: flex;
    flex-direction: column;
}

.mb-footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
}

.mb-footer-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #3F4553;
    margin: 0 0 24px 0;
    text-align: left;
}

.mb-footer-contact-btn {
    width: 187px;
    height: 44px;
    border-radius: 20px;
    gap: 8px;
    background: #1D63F0;
    border: none;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.mb-footer-contact-btn:hover {
    background: #1553d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(29, 99, 240, 0.3);
}

.mb-footer-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
    margin: 0 0 16px 0;
    text-align: left;
}

.mb-footer-contact-header {
    margin-top: 32px;
}

.mb-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mb-footer-links li {
    margin: 0;
}

.mb-footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #3F4553;
    text-decoration: none;
    transition: color 0.2s;
}

.mb-footer-links a:hover {
    color: #1D63F0;
}

.mb-footer-social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.mb-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FBFCFC;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #3F4553;
    text-decoration: none;
    transition: all 0.2s;
}

.mb-social-icon:hover {
    background: #1D63F0;
    color: white;
    border-color: #1D63F0;
}

.mb-footer-email {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #3F4553;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .mb-footer {
        padding: 40px 24px;
    }

    .mb-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mb-footer-contact-btn {
        width: 100%;
        max-width: 187px;
    }
}
