:root {
    --mp-bg: #f3f7fb;
    --mp-ink: #0d1b2a;
    --mp-muted: #5b6b7d;
    --mp-line: #d9e4ef;
    --mp-card: #ffffff;
    --mp-blue: #1877f2;
    --mp-blue-dark: #0b5ed7;
    --mp-cyan: #28c6f6;
    --mp-green: #21c45d;
    --mp-shadow: 0 18px 50px rgba(15, 39, 74, .12);
}

* {
    letter-spacing: 0;
}

body.mp-theme,
body.azure-theme {
    margin: 0;
    color: var(--mp-ink);
    background: var(--mp-bg);
    font-family: "Manrope", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--mp-ink);
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-weight: 800;
}

a {
    transition: .18s ease;
}

.mp-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(217, 228, 239, .88);
}

.mp-nav__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.mp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--mp-ink);
    text-decoration: none;
    font-weight: 900;
}

.mp-brand:hover {
    color: var(--mp-blue);
    text-decoration: none;
}

.mp-brand img {
    width: auto;
    max-width: 112px;
    height: 38px;
    object-fit: contain;
}

.mp-brand span {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mp-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--mp-line);
    border-radius: 10px;
    background: #fff;
    color: var(--mp-ink);
}

.mp-nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-nav__links > a,
.mp-lang > span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--mp-muted);
    text-decoration: none;
    font-weight: 800;
}

.mp-nav__links > a:hover,
.mp-lang:hover > span {
    color: var(--mp-blue);
    background: #eef6ff;
}

.mp-nav-cta {
    color: #fff !important;
    background: var(--mp-blue);
    box-shadow: 0 10px 26px rgba(24, 119, 242, .2);
}

.mp-nav-cta:hover {
    color: #fff !important;
    background: var(--mp-blue-dark) !important;
}

.mp-lang {
    position: relative;
}

.mp-lang__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 150px;
    display: none;
    padding: 8px;
    border: 1px solid var(--mp-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--mp-shadow);
}

.mp-lang:hover .mp-lang__menu {
    display: grid;
}

.mp-lang__menu a {
    padding: 9px 10px;
    border-radius: 8px;
    color: var(--mp-muted);
    text-decoration: none;
    font-weight: 700;
}

.mp-lang__menu a:hover {
    color: var(--mp-blue);
    background: #eef6ff;
}

.mp-hero {
    padding: 66px 0 34px;
    background:
        radial-gradient(circle at 78% 10%, rgba(40, 198, 246, .28), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.mp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 30px;
    align-items: center;
}

.mp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--mp-blue);
    background: #eaf5ff;
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 18px;
}

.mp-hero h1 {
    max-width: 720px;
    font-size: 52px;
    line-height: 1.05;
    margin: 0 0 18px;
}

.mp-hero p {
    max-width: 660px;
    color: var(--mp-muted);
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.mp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mp-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 900;
}

.mp-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.mp-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--mp-blue), var(--mp-cyan));
    box-shadow: 0 14px 34px rgba(24, 119, 242, .22);
}

.mp-btn--primary:hover {
    color: #fff;
}

.mp-btn--ghost {
    color: var(--mp-ink);
    background: #fff;
    border-color: var(--mp-line);
}

.mp-btn--ghost:hover {
    color: var(--mp-blue);
    border-color: rgba(24, 119, 242, .34);
}

.mp-phone-card,
.mp-help-card,
.mp-mini-service,
.mp-steps > div,
.mp-stats,
.mp-services-toolbar {
    background: var(--mp-card);
    border: 1px solid var(--mp-line);
    box-shadow: var(--mp-shadow);
}

.mp-phone-card {
    border-radius: 28px;
    padding: 20px;
}

.mp-phone-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--mp-muted);
    font-weight: 900;
}

.mp-service-list {
    display: grid;
    gap: 10px;
}

.mp-service-row {
    min-height: 74px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    color: var(--mp-ink);
    background: #f7fbff;
    text-decoration: none;
}

.mp-service-row:hover {
    color: var(--mp-ink);
    background: #edf7ff;
    text-decoration: none;
}

.mp-service-row__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 22px;
    background: #eaf5ff;
    color: var(--mp-blue);
}

.mp-service-row__icon.market { color: #f59e0b; background: #fff7e6; }

.mp-service-row strong,
.mp-service-row small {
    display: block;
}

.mp-service-row small {
    color: var(--mp-muted);
    margin-top: 2px;
}

.mp-service-row em {
    padding: 7px 10px;
    border-radius: 999px;
    color: #fff;
    background: var(--mp-green);
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.mp-phone-card__status,
.mp-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.mp-phone-card__status div,
.mp-stats div {
    padding: 14px;
    border-radius: 16px;
    background: #f7fbff;
}

.mp-phone-card__status strong,
.mp-stats strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
}

.mp-phone-card__status span,
.mp-stats span {
    color: var(--mp-muted);
    font-weight: 800;
    font-size: 13px;
}

.mp-band {
    padding: 18px 0;
}

.mp-stats {
    grid-template-columns: repeat(4, 1fr);
    padding: 12px;
    border-radius: 22px;
}

.mp-section {
    padding: 56px 0;
}

.mp-section--soft {
    background: #eaf3fb;
}

.mp-section-head {
    max-width: 720px;
    margin-bottom: 26px;
}

.mp-section-head span,
.mp-help-card span,
.mp-page-hero span {
    display: inline-block;
    color: var(--mp-blue);
    font-weight: 900;
    margin-bottom: 8px;
}

.mp-section-head h2,
.mp-help-card h2,
.mp-page-hero h1 {
    margin: 0 0 10px;
    font-size: 34px;
}

.mp-section-head p,
.mp-help-card p,
.mp-page-hero p {
    color: var(--mp-muted);
    margin: 0;
    line-height: 1.6;
}

.mp-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mp-service-grid--wide {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mp-mini-service {
    min-height: 136px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 8px;
    padding: 18px;
    border-radius: 18px;
    color: var(--mp-ink);
    text-decoration: none;
}

.mp-mini-service:hover {
    color: var(--mp-ink);
    text-decoration: none;
    transform: translateY(-2px);
    border-color: rgba(24, 119, 242, .35);
}

.mp-mini-service > span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--mp-blue);
    background: #eaf5ff;
    font-size: 20px;
}

.mp-mini-service img {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
}

.mp-mini-service strong {
    width: 100%;
    min-height: 22px;
    color: var(--mp-ink);
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.mp-mini-service small {
    color: var(--mp-green);
    font-weight: 900;
}

.mp-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mp-steps > div {
    border-radius: 18px;
    padding: 20px;
}

.mp-steps b {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: var(--mp-blue);
    margin-bottom: 16px;
}

.mp-steps h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.mp-steps p {
    color: var(--mp-muted);
    margin: 0;
}

.mp-help-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 24px;
    padding: 26px;
}

.mp-page-hero {
    padding: 46px 0 22px;
    background: linear-gradient(180deg, #fff 0%, #f3f7fb 100%);
}

.mp-page-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mp-page-hero__stats {
    min-width: 180px;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--mp-line);
    box-shadow: var(--mp-shadow);
}

.mp-page-hero__stats strong,
.mp-page-hero__stats span {
    display: block;
}

.mp-page-hero__stats strong {
    font-size: 30px;
}

.mp-page-hero__stats span {
    color: var(--mp-muted);
    font-weight: 800;
}

.mp-services-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.mp-services-toolbar strong,
.mp-services-toolbar span {
    display: block;
}

.mp-services-toolbar span {
    color: var(--mp-muted);
    font-weight: 800;
}

.mp-services-toolbar label {
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid var(--mp-line);
    background: #f7fbff;
    margin: 0;
}

.mp-services-toolbar input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--mp-ink);
    font-weight: 800;
}

.mp-load-more {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.mp-footer {
    padding: 38px 0 24px;
    background: #0d1b2a;
    color: #cbd5e1;
}

.mp-footer h3,
.mp-footer h4 {
    color: #fff;
}

.mp-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
}

.mp-footer a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin: 8px 0;
}

.mp-footer a:hover {
    color: #fff;
}

.mp-footer__bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #94a3b8;
}

.php-env-banner {
    background: #fff7e6;
    border-bottom: 1px solid #f6d28b;
    color: #7c4a03;
}

.php-env-banner__inner {
    padding: 12px 0;
}

@media (max-width: 991px) {
    .mp-hero__grid,
    .mp-footer__grid {
        grid-template-columns: 1fr;
    }

    .mp-service-grid,
    .mp-service-grid--wide,
    .mp-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 767px) {
    .mp-nav__inner {
        min-height: 64px;
    }

    .mp-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mp-nav__links {
        position: absolute;
        left: 12px;
        right: 12px;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 12px;
        border: 1px solid var(--mp-line);
        border-radius: 16px;
        background: #fff;
        box-shadow: var(--mp-shadow);
    }

    .mp-nav__links.is-open {
        display: flex;
    }

    .mp-nav__links > a,
    .mp-lang > span {
        width: 100%;
        justify-content: center;
    }

    .mp-lang__menu {
        position: static;
        box-shadow: none;
        margin-top: 6px;
    }

    .mp-hero {
        padding-top: 36px;
    }

    .mp-hero h1 {
        font-size: 36px;
    }

    .mp-hero p {
        font-size: 16px;
    }

    .mp-actions .mp-btn {
        flex: 1 1 100%;
    }

    .mp-phone-card {
        border-radius: 20px;
        padding: 14px;
    }

    .mp-page-hero .container,
    .mp-help-card,
    .mp-services-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .mp-page-hero__stats,
    .mp-services-toolbar label {
        width: 100%;
        min-width: 0;
    }

    .mp-section {
        padding: 38px 0;
    }

    .mp-section-head h2,
    .mp-help-card h2,
    .mp-page-hero h1 {
        font-size: 28px;
    }
}

@media (max-width: 520px) {
    .mp-service-grid,
    .mp-service-grid--wide,
    .mp-steps,
    .mp-stats,
    .mp-phone-card__status {
        grid-template-columns: 1fr;
    }

    .mp-brand span {
        display: none;
    }

    .mp-mini-service {
        min-height: 96px;
        grid-template-columns: 48px minmax(0, 1fr);
        align-items: center;
        justify-items: start;
    }

    .mp-mini-service small {
        grid-column: 2;
    }
}

/* Burak SMS brand refresh */
:root {
    --mp-orange: #ff7a00;
    --mp-orange-soft: #fff4e8;
    --mp-blue: #0ea5e9;
    --mp-blue-dark: #1769ff;
    --mp-black: #06111f;
    --mp-black-2: #0b1b31;
}

body.mp-theme {
    background: #f7f9fc;
}

.mp-nav {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(7, 17, 31, .08);
    box-shadow: 0 12px 30px rgba(7, 17, 31, .06);
}

.mp-brand {
    gap: 12px;
}

.mp-brand img {
    width: 176px;
    max-width: 176px;
    height: 46px;
}

.mp-brand__text {
    display: none;
}

.mp-brand__text strong,
.mp-brand__text small {
    display: block;
    line-height: 1.05;
}

.mp-brand__text small {
    color: var(--mp-orange);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mp-nav__links > a,
.mp-lang > span {
    color: #344155;
}

.mp-nav__links > a:hover,
.mp-lang:hover > span {
    color: var(--mp-blue-dark);
    background: #eef7ff;
}

.mp-nav-cta {
    background: linear-gradient(135deg, var(--mp-orange), var(--mp-blue-dark)) !important;
    box-shadow: 0 14px 28px rgba(23, 105, 255, .22);
}

.mp-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 54px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 18%, rgba(14, 165, 233, .34), transparent 28%),
        radial-gradient(circle at 86% 22%, rgba(255, 122, 0, .24), transparent 26%),
        linear-gradient(135deg, #06111f 0%, #0a1930 52%, #07111f 100%);
}

.mp-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mp-orange), var(--mp-blue), var(--mp-blue-dark));
}

.mp-hero__grid {
    grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
    gap: 34px;
}

.mp-eyebrow {
    color: #dff6ff;
    background: rgba(14, 165, 233, .18);
    border: 1px solid rgba(14, 165, 233, .3);
}

.mp-hero h1,
.mp-hero h2,
.mp-hero h3 {
    color: #fff;
}

.mp-hero h1 {
    max-width: 680px;
    font-size: clamp(44px, 6.4vw, 92px);
    letter-spacing: 0;
}

.mp-hero h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(135deg, #27c8ff 0%, #67e08a 48%, #ff9a2a 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.mp-hero p {
    color: rgba(241, 245, 249, .88);
}

.mp-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 22px;
}

.mp-price-card {
    min-height: 112px;
    padding: 16px;
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(14, 165, 233, .55);
    background: linear-gradient(135deg, rgba(14, 165, 233, .16), rgba(23, 105, 255, .1));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.mp-price-card:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    border-color: rgba(255, 122, 0, .7);
}

.mp-price-card span,
.mp-price-card strong {
    display: block;
}

.mp-price-card span {
    color: rgba(226, 232, 240, .78);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mp-price-card strong {
    margin-top: 10px;
    font-size: 28px;
    line-height: 1;
}

.mp-price-card--telegram {
    border-color: rgba(34, 197, 94, .55);
}

.mp-price-card--bonus {
    border-color: rgba(255, 122, 0, .6);
    background: linear-gradient(135deg, rgba(255, 122, 0, .2), rgba(14, 165, 233, .12));
}

.mp-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--mp-orange), var(--mp-blue-dark));
    border-color: transparent;
    box-shadow: 0 16px 34px rgba(14, 165, 233, .24);
}

.mp-btn--primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff8f26, #0ea5e9);
}

.mp-btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
}

.mp-btn--ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, .14);
}

.mp-hero__media {
    position: relative;
}

.mp-hero__media img {
    display: block;
    width: 100%;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .42);
}

.mp-band {
    margin-top: -24px;
    position: relative;
    z-index: 2;
}

.mp-stats {
    border: 1px solid rgba(7, 17, 31, .08);
    background: #fff;
    box-shadow: 0 22px 60px rgba(7, 17, 31, .1);
}

.mp-mini-service span,
.mp-steps b {
    background: linear-gradient(135deg, var(--mp-orange), var(--mp-blue));
}

.mp-footer {
    background: #06111f;
}

@media (max-width: 991px) {
    .mp-hero__grid {
        grid-template-columns: 1fr;
    }

    .mp-hero__media {
        order: -1;
    }

    .mp-price-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mp-nav__links {
        background: #fff;
        border-color: rgba(7, 17, 31, .08);
    }

    .mp-brand img {
        width: 142px;
        max-width: 142px;
    }

    .mp-hero {
        padding: 28px 0 40px;
    }

    .mp-hero__media img {
        border-radius: 18px;
    }
}

/* OnayTR-inspired clean home layout */
body.mp-home-modern {
    background: #f8fbff;
    color: #172033;
}

body.mp-home-modern .mp-nav {
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid #e5ecf6;
    box-shadow: 0 10px 30px rgba(23, 32, 51, .05);
}

body.mp-home-modern .mp-nav__inner {
    min-height: 82px;
}

body.mp-home-modern .mp-brand img {
    width: 150px;
    max-width: 150px;
    height: 48px;
}

body.mp-home-modern .mp-nav__links > a,
body.mp-home-modern .mp-lang > span {
    color: #46566f;
    font-size: 16px;
    border-radius: 999px;
}

body.mp-home-modern .mp-nav__links > a:hover,
body.mp-home-modern .mp-lang:hover > span {
    color: #1769ff;
    background: #eef5ff;
}

body.mp-home-modern .mp-nav-cta {
    padding: 0 20px;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff7a00, #1769ff) !important;
}

.mp-hero--onay {
    padding: 72px 0 70px;
    color: #172033;
    background:
        radial-gradient(circle at 20% 24%, rgba(111, 76, 255, .15), transparent 35%),
        radial-gradient(circle at 83% 26%, rgba(14, 165, 233, .18), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.mp-hero--onay::after {
    display: none;
}

.mp-hero--onay .mp-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: 44px;
    align-items: center;
}

.mp-hero--onay .mp-hero__copy {
    padding: 22px 0;
}

.mp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.mp-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    color: #64748b;
    background: #ffffff;
    border: 1px solid #dce6f3;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
    font-weight: 800;
}

.mp-badges i {
    color: #1769ff;
}

.mp-hero--onay h1 {
    max-width: 730px;
    color: #172033;
    font-size: clamp(42px, 5.6vw, 78px);
    line-height: 1.08;
    margin-bottom: 24px;
}

.mp-hero--onay h1 span {
    display: inline;
    color: inherit;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.mp-hero--onay p {
    max-width: 720px;
    color: #64748b;
    font-size: 21px;
    line-height: 1.65;
    margin-bottom: 26px;
}

.mp-hero--onay .mp-btn {
    min-height: 58px;
    padding: 0 28px;
    border-radius: 14px;
    font-size: 17px;
}

.mp-hero--onay .mp-btn--primary {
    background: linear-gradient(135deg, #ff7a00, #1769ff);
    box-shadow: 0 18px 34px rgba(23, 105, 255, .22);
}

.mp-hero--onay .mp-btn--ghost {
    color: #1769ff;
    background: #ffffff;
    border: 2px solid rgba(23, 105, 255, .22);
}

.mp-hero--onay .mp-btn--ghost:hover {
    color: #ffffff;
    background: #1769ff;
}

.mp-price-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: #704ce9;
    font-weight: 900;
    text-decoration: none;
}

.mp-price-link:hover {
    color: #1769ff;
    text-decoration: none;
}

.mp-price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.mp-price-chip {
    min-width: 150px;
    padding: 13px 16px;
    border-radius: 16px;
    color: #172033;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #dce6f3;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.mp-price-chip:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.mp-price-chip span,
.mp-price-chip strong {
    display: block;
}

.mp-price-chip span {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mp-price-chip strong {
    margin-top: 5px;
    color: #1769ff;
    font-size: 24px;
}

.mp-price-chip--bonus strong {
    color: #ff7a00;
}

.mp-phone-showcase {
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 55% 42%, rgba(111, 76, 255, .22), transparent 42%),
        radial-gradient(circle at 74% 52%, rgba(14, 165, 233, .18), transparent 35%);
}

.mp-phone {
    position: relative;
    width: min(360px, 86vw);
    min-height: 600px;
    padding: 26px 20px 22px;
    border-radius: 42px;
    background: #f8fbff;
    border: 14px solid #202b3f;
    box-shadow: 0 34px 90px rgba(31, 41, 55, .25);
}

.mp-phone__notch {
    position: absolute;
    left: 50%;
    top: -1px;
    width: 126px;
    height: 30px;
    transform: translateX(-50%);
    border-radius: 0 0 18px 18px;
    background: #202b3f;
}

.mp-phone__top {
    display: flex;
    justify-content: space-between;
    color: #243047;
    font-size: 13px;
    font-weight: 900;
    margin: 2px 10px 24px;
}

.mp-phone__brand {
    margin-bottom: 22px;
    text-align: center;
    color: #704ce9;
    font-size: 22px;
    font-weight: 1000;
}

.mp-phone__brand span {
    color: #1769ff;
}

.mp-message-list {
    display: grid;
    gap: 14px;
}

.mp-message-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
}

.mp-message-card > i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    font-size: 22px;
}

.mp-message-card strong,
.mp-message-card span,
.mp-message-card em {
    display: block;
}

.mp-message-card strong {
    color: #263247;
    font-size: 15px;
}

.mp-message-card span {
    color: #64748b;
    font-size: 13px;
}

.mp-message-card em {
    color: #7c8ba1;
    font-size: 12px;
    font-style: normal;
}

.mp-message-card.whatsapp > i { background: #22c55e; }
.mp-message-card.telegram > i { background: #0ea5e9; }
.mp-message-card.google > i { background: #4285f4; }
.mp-message-card.instagram > i { background: linear-gradient(135deg, #f97316, #d946ef); }
.mp-message-card.facebook > i { background: #1769ff; }

body.mp-home-modern .mp-band {
    margin-top: -28px;
}

body.mp-home-modern .mp-stats {
    border-radius: 26px;
}

body.mp-home-modern .mp-section {
    background: #f4f9ff;
}

body.mp-home-modern .mp-section:nth-of-type(3) {
    background: #ffffff;
}

body.mp-home-modern .mp-section-head span {
    color: #1769ff;
}

body.mp-home-modern .mp-section-head h2 {
    color: #172033;
}

body.mp-home-modern .mp-section-head p {
    color: #64748b;
}

body.mp-home-modern .mp-mini-service,
body.mp-home-modern .mp-steps div,
body.mp-home-modern .mp-help-card {
    background: #ffffff;
    border-color: #dce6f3;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

body.mp-home-modern .mp-mini-service span,
body.mp-home-modern .mp-steps b {
    background: #eef5ff;
    color: #1769ff;
}

@media (max-width: 991px) {
    .mp-hero--onay .mp-hero__grid {
        grid-template-columns: 1fr;
    }

    .mp-phone-showcase {
        min-height: auto;
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    body.mp-home-modern .mp-nav__inner {
        min-height: 68px;
    }

    body.mp-home-modern .mp-nav__links {
        background: #ffffff;
    }

    .mp-hero--onay {
        padding: 34px 0 44px;
    }

    .mp-hero--onay h1 {
        font-size: 38px;
    }

    .mp-hero--onay p {
        font-size: 17px;
    }

    .mp-badges span,
    .mp-price-chip,
    .mp-actions .mp-btn {
        width: 100%;
        justify-content: center;
    }

    .mp-phone {
        min-height: 530px;
        border-width: 10px;
    }
}
