* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f4f6;
    color: #1f2933;
    line-height: 1.5;
}

section {
    scroll-margin-top: 100px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(13, 19, 26, 0.89);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header-inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.header-phone:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.header-socials {
    display: none;
    align-items: center;
    gap: 8px;
}

.header-socials a {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-socials img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: min(360px, 85vw);
    height: 100vh;
    background: rgba(23, 33, 43, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.25);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-inner {
    height: 100%;
    padding: 100px 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-links a {
    display: block;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.mobile-menu-links a:hover {
    background: rgba(255, 255, 255, 0.14);
}

.mobile-menu-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-socials a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: #fff;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-socials img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-header-socials {
    display: none;
}

.mobile-header-socials > .chip {
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.mobile-header-socials > .chip:hover {
    transform: translateY(-1px);
    background: #f3f4f6;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    width: 30%;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
}

.brand-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.nav-links,
.socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.142);
    font-size: 14px;
    font-weight: 600;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.218);
    transform: translateY(-1px);
}

.social,
.max,
.social-hero-max {
    padding: 5px;
}

.social img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.max img {
    width: 76px;
    height: 24px;
    object-fit: contain;
}

main {
    padding: 135px 0 60px;
}

.section {
    margin-bottom: 28px;
}

.section > .container {
    background: #ffffff;
    border-radius: 18px;
    padding: 42px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section > .container-dark {
    background: #263746;
    border-radius: 18px;
    padding: 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section-title {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #17212b;
}

.dark-card .section-title {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
}

.section-lead {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-wrap {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 560px;
    overflow: hidden;
    border-radius: 20px;
    background: #17212b;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.hero-grid > .dark-card {
    grid-column: 1 / -1;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
}

.hero-main {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 560px;
    padding: 35px;
    color: #fff;
}

.hero-main h1 {
    margin-bottom: 20px;
    font-size: 58px;
    line-height: 1.05;
    color: #fff;
}

.hero-income {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 700;
    color: #fff;
}

.hero-income strong {
    font-weight: 800;
}

.hero-side {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 0;
    overflow: hidden;
    background: #17212b;
}

.hero-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.42);
    pointer-events: none;
}

.hero-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-form {
    width: 100%;
    max-width: 440px;
    padding: 24px;
    border-radius: 14px;
    background: #ffffff;
    color: #1f2933;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.hero-form-title {
    margin-bottom: 14px;
    font-size: 19px;
    font-weight: 800;
    color: #1f2933;
}

.phone-row {
    display: flex;
    margin-bottom: 12px;
}

.prefix {
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: #f3f4f6;
    color: #1f2933;
    font-weight: 700;
}

.input {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 0 8px 8px 0;
    outline: none;
    background: #ffffff;
    color: #1f2933;
    transition: border-color 0.2s ease;
}

.input::placeholder {
    color: #6b7280;
}

.input:focus {
    border-color: #4b6b82;
}

.btn {
    min-height: 48px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: #17212b;
    color: #ffffff;
    cursor: pointer;
    font-weight: 700;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.btn:hover {
    background: #263746;
    transform: translateY(-1px);
}

.btn.wide {
    width: 100%;
}

.form-consent {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.4;
    color: #666;
}

.form-consent a {
    color: #17212b;
    text-decoration: underline;
    font-weight: 700;
}

.form-status {
    margin-top: 10px;
    font-size: 14px;
}

.hero-links {
    width: 100%;
    max-width: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 18px;
}

.social-hero {
    width: 45px;
    height: 45px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.social-hero:hover {
    transform: translateY(-1px);
    background: #f3f4f6;
}

.social-hero img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.social-hero-max {
    width: 100px;
    height: 45px;
}

.social-hero-max img {
    width: 90px;
    height: 28px;
    object-fit: contain;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dark-card {
    padding: 32px;
    border-radius: 16px;
    background: #263746;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big-phone {
    margin-bottom: 12px;
    font-size: 32px;
    font-weight: 800;
}

.dark-card > p {
    margin-bottom: 20px;
    color: #d7e0e7;
}

.benefit-top {
    margin-bottom: 30px;
}

.benefit-top strong {
    font-size: 28px;
}

.benefit-top span {
    color: #b9c5ce;
}

.benefit-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mini-info {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.mini-info .num {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 800;
}

.mini-info p {
    font-size: 14px;
    color: #cbd5dc;
}

.video-wrap {
    text-align: center;
}

.video-card {
    padding: 0px;
}

.video-frame {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #111827;
}

.video-frame video {
    display: block;
    width: 100%;
    max-height: 650px;
    background: #111827;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-radius: 14px;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.help-media {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e5e7eb;
}

.help-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.help-body {
    padding: 20px;
}

.help-body strong {
    display: block;
    margin-bottom: 8px;
    font-size: 19px;
}

.help-body p {
    color: #66727d;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.support-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: 12px;
    isolation: isolate;
    background: #17212b;
    color: #fff;
}

.support-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.48);
}

.support-content {
    position: relative;
    z-index: 1;
    min-height: 280px;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.support-content strong {
    display: block;
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.support-content p {
    max-width: 430px;
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.support-btn {
    min-height: 40px;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    background: rgba(60, 93, 121, 0.9);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.support-btn:hover {
    background: rgba(90, 122, 149, 0.9);
    transform: translateY(-1px);
}

.review-btn:hover {
    background: #34495a;
    transform: scale(1.05);
}

.reviews-shell {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.review-track {
    width: 100%;
    overflow: hidden;
}

.reviews {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: 0;
    overflow: hidden;
    border-radius: 12px;
}

.review-card video {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    background: #000;
}

.review-btn {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.avatar {
    position: relative;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    overflow: hidden;
    border-radius: 50%;
    background: #dce2e7;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #263746;
}

.review-name {
    font-weight: 800;
}

.review-card p {
    color: #66727d;
}

#about .dark-card {
    background: #263746;
}

#about p {
    margin-bottom: 18px;
    color: #d6dee5;
}

#about p:last-child {
    margin-bottom: 0;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.faq-item {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.faq-item h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.faq-item p {
    color: #cbd5dc;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
}

.contact-box {
    padding: 30px 20px;
}

.contact-box strong {
    display: block;
    margin-bottom: 6px;
    color: #66727d;
}

.contact-box .big {
    font-size: 21px;
    font-weight: 700;
}

.contact-email {
    word-break: break-word;
}

.contact-email a {
    color: #17212b;
    text-decoration: underline;
}

.map-card {
    min-height: 450px;
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

.footer {
    padding: 20px;
    width: 100%;
    background: #17212b;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    align-items: center;
}

.media-fallback,
.hero-image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d9e0e5;
    color: #66727d;
    text-align: center;
}

.media-fallback--logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
}

.hero-image-fallback {
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 5px;
}

.hero-image-fallback small {
    font-size: 12px;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.footer-legal {
    max-width: 800px;
    margin: 35px auto 0;
    text-align: center;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.back-home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 42px;
    margin: 0 0 0;
    padding: 9px 20px;
    border: 1px solid #d9e0e5;
    border-radius: 8px;
    background: #f1f4f6;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.back-home-btn:hover {
    background: #e5eaed;
    border-color: #c8d0d5;
    transform: translateY(-1px);
}

.privacy-back {
    padding-bottom: 35px;
}

.redirect-back {
    padding-top: 35px;
}

@media (max-width: 1449px) {

    main {
        padding-top: 150px;
    }

    .header-inner {
        min-height: 80px;
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .brand {
        align-self: flex-start;
    }

    .nav {
        display: none;
    }

    .header-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .header-top-row {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        height: 40px;
    }

    .mobile-header-socials {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }
    
    .header-socials {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
        transition:
            transform 0.2s ease,
            opacity 0.2s ease;
    }

    .header-phone {
        display: inline-flex;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 85vw);
        height: 100vh;
        display: block;
        background: #17212b;
        color: #ffffff;
        z-index: 2001;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.25);
    }

    .mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-menu-inner {
        display: flex;
        flex-direction: column;
        gap: 35px;
        padding: 90px 30px 30px;
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-menu-links a {
        display: block;
        padding: 14px 10px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        border-radius: 8px;
    }

    .mobile-menu-links a:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .mobile-menu-socials {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-menu-socials a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 10px;
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
    }

    .mobile-menu-socials a:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .mobile-menu-socials img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    .mobile-max img {
        width: 90px;
        height: 30px;
        object-fit: contain;
    }

    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
    }

    .menu-close:hover {
        background: rgba(255, 255, 255, 0.16);
    }

    .menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 2000;
        display: block;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .chip {
        padding: 6px 10px;
    }

    
}

@media (max-width: 1100px) {

    .container {
        width: 86%;
    }

    .topbar-inner {
        gap: 15px;
    }

    .brand-title {
        font-size: 15px;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-links {
        gap: 4px;
    }

    .chip {
        padding: 6px 10px;
        font-size: 13px;
    }

    .hero-main {
        padding: 40px;
    }

    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 900px) {
    
    .brand-title {
        font-size: 15px;
    }

    .hero-grid {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        min-height: 560px;
        background: #17212b;
        overflow: hidden;
    }

    .hero-main {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        min-height: 560px;
        padding: 35px 25px;
        box-sizing: border-box;
        color: #ffffff;
    }

    .hero-main h1 {
        color: #ffffff;
        font-size: 44px;
    }

    .hero-income {
        color: #ffffff;
        font-size: 21px;
    }

    .hero-form,
    .hero-links {
        width: 100%;
        max-width: 440px;
    }

    .hero-side {
        display: block;
    }

    .hero-grid > .dark-card {
        position: relative;
        z-index: 2;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid > .dark-card .hero-form {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .review-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .support-card {
        min-height: 260px;
    }

    .support-content {
        min-height: 260px;
        padding: 24px;
    }

    .support-content strong {
        font-size: 20px;
    }

    .support-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {

    .container {
        width: 92%;
    }

    main {
        padding-top: 140px;
    }

    .section {
        margin-bottom: 18px;
    }

    .section > .container {
        padding: 22px;
        border-radius: 14px;
    }

    .section > .container-dark {
        padding: 0;
    }

    .topbar-inner {
        min-height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .brand {
        justify-content: center;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-main {
        padding: 30px 22px;
    }

    .hero-main h1 {
        font-size: 42px;
    }

    .hero-income {
        font-size: 21px;
    }

    .hero-side {
        min-height: 350px;
    }

    .hero-form {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-links {
        align-self: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: 27px;
        margin-bottom: 20px;
    }
    
    .dark-card {
        padding: 24px 20px;
    }

    .video-card {
        padding: 0px;
    }

    .benefit-mini-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid > .dark-card .hero-form {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .big-phone {
        font-size: 25px;
    }

    .review-card {
        flex-basis: 100%;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .map-card,
    .map-card iframe {
        min-height: 500px;
    }

}

@media (max-width: 550px) {

    .support-grid,
    .help-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-legal {
        margin-top: 28px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-disclaimer {
        font-size: 12px;
        line-height: 1.55;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

}

@media (max-width: 480px) {

    .container {
        width: 100%;
    }

    .header-inner {
        width: 94%;
    }

    main {
        padding-top: 110px;
    }

    .section {
        margin-bottom: 10px;
    }

    .section > .container {
        padding: 18px;
    }

    .section > .container-dark {
        padding: 0;
    }

    .hero-grid {
        min-height: 520px;
        border-radius: 0 0 12px 12px;
    }

    .hero-main {
        min-height: 520px;
        padding: 25px 18px;
    }

    .hero-main h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .hero-income {
        font-size: 19px;
    }

    .hero-form {
        max-width: 100%;
        padding: 18px;
    }

    .hero-links {
        max-width: 100%;
        margin-top: 14px;
    }

    .hero-kicker {
        font-size: 14px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-image {
        object-position: center center;
    }

    .brand {
        width: auto;
        flex: 1;
        min-width: 0;
        margin-right: 15px;
    }

    .brand-title {
        font-size: 13px;
        min-width: 0;
    }

    .nav-links .chip {
        font-size: 12px;
    }

    .big-phone {
        font-size: 22px;
    }

    .video-card {
        padding: 0px;
    }

    .header-right {
        gap: 8px;
        flex-shrink: 0;
    }

    .header-phone {
        min-height: 36px;
        padding: 6px 9px;
        font-size: 12px;
    }

    .chip {
        padding: 5px;
        font-size: 12px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .brand img {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .reviews-shell {
        gap: 8px;
    }

    .review-btn {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
    }

    .support-card {
        min-height: 240px;
        border-radius: 10px;
    }

    .support-content {
        min-height: 240px;
        padding: 22px 18px;
    }

    .support-content strong {
        font-size: 19px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .support-content p {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 16px;
    }

    .support-btn {
        min-height: 38px;
        padding: 7px 12px;
        font-size: 13px;
    }
}