/* ============================================================
       FAST + MODERN: меньше тяжёлых фильтров, больше “стекла” и CTA
       ============================================================ */


@font-face {
    font-family: "Widocktrial";
    src: url("fonts/Widocktrialbold.woff2") format("woff2"),
        url("fonts/Widocktrialbold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FindSansPro";
    src: url("fonts/FindSansPro-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-0: #07070a;
    --bg-1: #0b1220;
    --card: #101827cc;
    --card-solid: #101827;
    --stroke: rgba(255, 255, 255, .08);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, .72);
    --muted2: rgba(255, 255, 255, .55);
    --blue: #2b86f0;
    --blue2: #3b82f6;
    --green: #22c55e;
    --shadow: 0 16px 60px rgba(0, 0, 0, .45);
    --radius: 24px;
    --radius2: 18px;
    --max: 1200px;
    --font-h: "Widocktrial", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-b: "FindSansPro", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-b);
    color: var(--text);
    background: radial-gradient(1200px 700px at 50% 0%, rgba(43, 134, 240, .18), transparent 60%),
        radial-gradient(900px 500px at 20% 10%, rgba(59, 130, 246, .16), transparent 55%),
        radial-gradient(900px 500px at 80% 15%, rgba(34, 197, 94, .08), transparent 55%),
        linear-gradient(180deg, var(--bg-1), var(--bg-0) 65%, #05050a);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 10, .75), rgba(5, 5, 10, .55) 35%, rgba(5, 5, 10, .85)),
        url("images/fon.png") center/cover no-repeat;
    opacity: .65;
    z-index: -2;
    transform: translateZ(0);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .12;
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(7, 7, 10, .55);
    border-bottom: 1px solid var(--stroke);
}

.main-nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-list a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 12px;
    transition: background .2s ease, color .2s ease;
    white-space: nowrap;
}

.nav-list a:hover {
    background: rgba(43, 134, 240, .12);
    color: #fff;
}

.logo {
    text-decoration: none;
    padding: 0 10px;
    flex: 0 0 auto;
}

.logo img {
    height: 44px;
    width: auto;
    display: block;
}


.hero {
    padding: 42px 0 10px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 26px;
    align-items: center;
    padding: 26px 0 8px;
}

.hero-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(600px 250px at 30% 10%, rgba(59, 130, 246, .35), transparent 55%),
        radial-gradient(500px 250px at 75% 0%, rgba(34, 197, 94, .18), transparent 60%);
    opacity: .65;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 28px 26px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    flex-wrap: wrap;
}

.kicker-badge {
    font-family: var(--font-h);
    text-transform: uppercase;
    letter-spacing: .6px;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, .35);
    background: rgba(59, 130, 246, .10);
    color: #fff;
}

.kicker-text {
    font-family: var(--font-h);
    text-transform: uppercase;
    letter-spacing: .55px;
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
}

.hero-title {
    font-family: var(--font-h);
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: 1.02;
    font-size: clamp(30px, 4vw, 52px);
    margin: 0 0 12px;
    max-width: 18ch;
}

.hero-em {
    color: var(--blue2);
    text-shadow: 0 14px 40px rgba(43, 134, 240, .25);
}

.hero-copy {
    display: grid;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 14px;
}

.hero-sub {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
    max-width: 60ch;
}

.hero-bullets {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .18);
    flex: 0 0 auto;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    text-decoration: none;
    font-family: var(--font-h);
    text-transform: uppercase;
    letter-spacing: .4px;
    font-size: 14px;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    will-change: transform;
}

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

.btn-primary {
    background: linear-gradient(135deg, rgba(43, 134, 240, 1), rgba(59, 130, 246, 1));
    border-color: rgba(59, 130, 246, .45);
    color: #fff;
    box-shadow: 0 12px 30px rgba(43, 134, 240, .28);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-1px);
}

.btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.trust {
    margin-top: 14px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted2);
    font-size: 13px;
}


.side-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.side-card h3 {
    font-family: var(--font-h);
    text-transform: uppercase;
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.15;
}

.side-card p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.side-card .mini {
    display: grid;
    gap: 10px;
}

.mini-row {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
    color: rgba(255, 255, 255, .90);
    font-size: 13px;
}

.mini-row b {
    font-family: var(--font-h);
    font-weight: 700;
}


.section-title {
    font-family: var(--font-h);
    text-transform: uppercase;
    text-align: center;
    font-size: clamp(22px, 3.2vw, 42px);
    line-height: 1.15;
    margin: 0 0 26px;
}

.section-title .text-blue {
    color: var(--blue2);
}


.slider-section-wrapper {
    padding: 56px 20px 66px;
    position: relative;
    z-index: 2;
}

.slider-section-wrapper .title {
    font-family: var(--font-h);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(22px, 3.2vw, 42px);
    margin: 0 0 22px;
    text-align: center;
}

.slider-section-wrapper .title span {
    color: var(--blue2);
}

.slider-section-wrapper .slider-container {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 22px;
}

.slider-section-wrapper .slider-item {
    width: 290px;
    height: 290px;
    border-radius: 28px;
    position: absolute;
    opacity: 0;
    transition: transform 1.0s ease, opacity 1.0s ease;
    box-shadow: 0 16px 60px rgba(0, 0, 0, .35);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    background: var(--card-solid);
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-section-wrapper .slider-item.center {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 5;
}

.slider-section-wrapper .slider-item.left-1 {
    transform: translateX(-280px) scale(.70);
    opacity: .75;
    z-index: 4;
}

.slider-section-wrapper .slider-item.right-1 {
    transform: translateX(280px) scale(.70);
    opacity: .75;
    z-index: 4;
}

.slider-section-wrapper .slider-item.left-2 {
    transform: translateX(-470px) scale(.48);
    opacity: .45;
    z-index: 3;
}

.slider-section-wrapper .slider-item.right-2 {
    transform: translateX(470px) scale(.48);
    opacity: .45;
    z-index: 3;
}

.slider-section-wrapper .slider-item.hidden-left {
    transform: translateX(-610px) scale(.32);
    opacity: 0;
    z-index: 1;
}

.slider-section-wrapper .slider-item.hidden-right {
    transform: translateX(610px) scale(.32);
    opacity: 0;
    z-index: 1;
}

.slider-buttons-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}


.bonus-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px 60px;
    position: relative;
    z-index: 2;
}

/* ==============================
       ✅ NEW BONUS CARDS (красивые, как со старого)
       ТЕКСТЫ — из твоего текущего сайта (мы не меняли слова),
       просто даём правильную структуру/стили чтобы не налезало.
       ============================== */

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    width: 100%;
}

.bonus-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    aspect-ratio: 4 / 5;
}

.bonus-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(520px 260px at 20% 10%, rgba(43, 134, 240, .22), transparent 55%),
        radial-gradient(520px 260px at 80% 15%, rgba(59, 130, 246, .16), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    filter: saturate(1.05);
    z-index: 0;
}

.bonus-card.active::before {
    background:
        radial-gradient(520px 260px at 20% 10%, rgba(43, 134, 240, .30), transparent 55%),
        radial-gradient(520px 260px at 80% 15%, rgba(34, 197, 94, .12), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
}

.bonus-card::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at var(--px, 50%) var(--py, 50%), rgba(255, 255, 255, .14), transparent 60%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
    z-index: 1;
}

.bonus-card:hover {
    border-color: rgba(43, 134, 240, .35);
    box-shadow: 0 26px 80px rgba(43, 134, 240, .12), 0 20px 60px rgba(0, 0, 0, .50);
}

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


.bonus-card .card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .22;
    filter: saturate(1.05) contrast(1.05);
    z-index: 0;
    pointer-events: none;
}


.card-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 14px;
    gap: 12px;
    backdrop-filter: blur(14px);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    display: grid;
    place-items: center;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.bonus-icon {
    width: 44px;
    height: 44px;
    position: absolute;
    inset: 0;
    margin: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35));
    transition: transform .45s ease, opacity .35s ease;
}

.bonus-card:hover .bonus-icon {
    transform: rotate(-6deg) scale(1.06);
}

.text-container {
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.bonus-state {
    position: static;
    width: 100%;
    padding: 0;
    transition: opacity .25s ease;
}

.bonus-default-state {
    display: none;
}

.bonus-hover-state {
    opacity: 1 !important;
}

.bonus-title,
.bonus-subtitle,
.bonus-subtitle-fs,
.bonus-title-simple {
    font-family: var(--font-h);
    text-transform: uppercase;
    display: block;
    line-height: 1.06;
    letter-spacing: .04em;
}

.bonus-title,
.bonus-title-simple {
    font-size: 20px;
    opacity: .96;
}


.bonus-subtitle,
.bonus-subtitle-fs {
    font-size: 30px;
    line-height: 1;
    background: linear-gradient(90deg, rgba(59, 130, 246, 1), rgba(34, 197, 94, .9));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(59, 130, 246, .10);
    margin-top: 2px;
}

.bonus-extra {
    font-family: var(--font-b);
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    margin-top: 6px;
    display: block;
}


.bonus-card.inactive .bonus-subtitle,
.bonus-card.inactive .bonus-subtitle-fs,
.bonus-card.inactive .bonus-extra {
    filter: blur(10px);
    opacity: .55;
    transition: filter .35s ease, opacity .35s ease;
}

.bonus-card.inactive:hover .bonus-subtitle,
.bonus-card.inactive:hover .bonus-subtitle-fs,
.bonus-card.inactive:hover .bonus-extra {
    filter: blur(0);
    opacity: 1;
}

.bonus-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.bonus-button {
    cursor: pointer;
    border: none;
    font-family: var(--font-h);
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 14px 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(43, 134, 240, 1), rgba(59, 130, 246, 1));
    color: #fff;
    box-shadow: 0 12px 30px rgba(43, 134, 240, .28);
    transition: transform .15s ease, filter .15s ease;
}

.bonus-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.bonus-button:active {
    transform: translateY(1px);
}


.features-section {
    padding: 56px 0 70px;
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 18px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, .35);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-icon-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(59, 130, 246, .10);
    border: 1px solid rgba(59, 130, 246, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: hidden;
}

.feature-card h3 {
    font-family: var(--font-h);
    text-transform: uppercase;
    margin: 0;
    font-size: 15px;
    letter-spacing: .3px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}


.footer-section {
    padding: 46px 0 26px;
    background: rgba(5, 5, 10, .75);
    border-top: 1px solid var(--stroke);
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-responsible-text {
    color: var(--muted);
    font-size: 13px;
    margin: 0 0 16px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.footer-nav a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-family: var(--font-h);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .35px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .18);
    transition: background .2s ease, border-color .2s ease;
}

.footer-nav a:hover {
    background: rgba(43, 134, 240, .12);
    border-color: rgba(59, 130, 246, .25);
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .10);
    margin: 18px 0;
}

.footer-seo-block {
    font-size: 12px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: left;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, .70);
    margin: 0;
}


.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    padding: 18px;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 100%;
    max-width: 420px;
    background: rgba(16, 24, 39, .92);
    border: 1px solid rgba(59, 130, 246, .45);
    border-radius: 26px;
    box-shadow: 0 25px 90px rgba(0, 0, 0, .6);
    padding: 26px 22px 22px;
    position: relative;
    transform: translateY(8px) scale(.98);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.modal-overlay.show .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    right: 14px;
    top: 10px;
    font-size: 30px;
    color: rgba(255, 255, 255, .65);
    cursor: pointer;
    line-height: 1;
    transition: color .2s ease;
    user-select: none;
}

.close-modal:hover {
    color: #fff;
}

.modal-logo {
    height: 52px;
    width: auto;
    display: block;
    margin: 0 auto 12px;
}

.modal-title {
    font-family: var(--font-h);
    text-transform: uppercase;
    text-align: center;
    font-size: 22px;
    line-height: 1.15;
    margin: 0 0 16px;
}

.modal-title span {
    color: var(--blue2);
    font-size: 30px;
}

.modal-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    font-family: var(--font-h);
    text-transform: uppercase;
    letter-spacing: .4px;
    background: linear-gradient(135deg, rgba(43, 134, 240, 1), rgba(59, 130, 246, 1));
    color: #fff;
    box-shadow: 0 14px 40px rgba(43, 134, 240, .25);
    transition: transform .15s ease, filter .15s ease;
}

.modal-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

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


.content-section {
    padding: 56px 0 70px;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
}

.prose {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.prose h3 {
    font-family: var(--font-h);
    text-transform: uppercase;
    letter-spacing: .35px;
    font-size: 16px;
    margin: 18px 0 10px;
    color: #fff;
}

.prose p {
    margin: 0 0 12px;
}

.prose ul {
    margin: 0 0 12px;
    padding-left: 18px;
}

.prose li {
    margin: 6px 0;
}

.faq-list details {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
    border-radius: 16px;
    padding: 10px 12px;
    margin: 10px 0;
}

.faq-list summary {
    cursor: pointer;
    font-family: var(--font-h);
    text-transform: uppercase;
    letter-spacing: .35px;
    font-size: 13px;
    color: rgba(255, 255, 255, .92);
}

.faq-list details p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .72);
}

.review-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.review-item {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
    border-radius: 16px;
    padding: 12px;
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
}

.stars {
    letter-spacing: 1px;
    white-space: nowrap;
}

.internal-links {
    margin-top: 18px;
}

.internal-links h3 {
    font-family: var(--font-h);
    text-transform: uppercase;
    letter-spacing: .35px;
    margin: 0 0 10px;
    font-size: 14px;
}

.internal-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.internal-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-family: var(--font-h);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .35px;
}

.internal-links a:hover {
    background: rgba(43, 134, 240, .12);
    border-color: rgba(59, 130, 246, .25);
}


@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .nav-left,
    .nav-right {
        justify-content: center;
    }

    .main-nav {
        flex-wrap: wrap;
    }

    .nav-list {
        flex: 1 1 320px;
        justify-content: center;
    }

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

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

/* ================================
       MOBILE FIXES (BONUS + LINKS)
       ================================ */
@media (max-width: 576px) {

    .main-nav {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 10px 12px;
    }

    .nav-list {
        flex: none;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nav-list a {
        font-size: 12px;
        padding: 8px 10px;
    }

    .logo img {
        height: 40px;
    }


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

    .slider-section-wrapper .slider-container {
        height: 300px;
    }

    .slider-section-wrapper .slider-item {
        width: 260px;
        height: 260px;
    }

    .slider-section-wrapper .slider-item.left-1 {
        transform: translateX(-250px) scale(.70);
    }

    .slider-section-wrapper .slider-item.right-1 {
        transform: translateX(250px) scale(.70);
    }


    .bonus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .bonus-card {
        aspect-ratio: 1 / 1.05 !important;
        border-radius: 18px !important;
    }

    .card-content-wrapper {
        padding: 12px 10px !important;
        gap: 10px !important;
    }

    .icon-wrapper {
        width: 56px !important;
        height: 56px !important;
        border-radius: 18px !important;
    }

    .bonus-icon {
        width: 38px !important;
        height: 38px !important;
    }

    .bonus-title,
    .bonus-title-simple {
        font-size: 16px !important;
    }

    .bonus-subtitle,
    .bonus-subtitle-fs {
        font-size: 20px !important;
    }

    .bonus-extra {
        font-size: 12px !important;
        margin-top: 4px !important;
    }


    .internal-links ul {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px !important;
        scrollbar-width: none;
    }

    .internal-links ul::-webkit-scrollbar {
        display: none;
    }

    .internal-links li {
        flex: 0 0 auto;
    }

    .internal-links a {
        min-height: 34px !important;
        padding: 6px 10px !important;
        border-radius: 12px !important;
        font-size: 11px !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
        line-height: 1 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
    }

    .slider-section-wrapper .slider-item {
        transition: none !important;
    }

    .bonus-card,
    .btn,
    .bonus-button,
    .feature-card {
        transition: none !important;
    }
}

.textSeo {
    
}
.textSeo p {
    line-height: 1.6;
}
.textSeo h1,
.textSeo h2,
.textSeo h3 {
    margin-bottom: 20px;
    margin-top: 30px;
}
.textSeo h1:first-child,
.textSeo h2:first-child,
.textSeo h3:first-child {
    margin-top: 0;
}
@media (max-width: 767px) {
    .textSeo {
    }
    .textSeo h1,
    .textSeo h2,
    .textSeo h3 {
        font-size: 24px;
        margin-bottom: 15px;
        margin-top: 15px;
    }
}