/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #eef1f5;
    color: #111;
    line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
    position: relative;
    border-bottom: 1px solid #eee;
    background: #eef1f5;
    padding: 40px;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 15px 20px;
}

.header-top {
    background: #eef1f5;
    border-bottom: 1px solid #eee;
    padding: 6px 20px;
    text-align: right;
}

.logo-left {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #111;
}

.logo-left .logo-text {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 2px;
}

.logo-left .logo-subtitle {
    text-transform: none;
    font-size: 11px;
    letter-spacing: 0.3px;
    line-height: 1.1;
    opacity: 0.7;
}

.logo-center {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo-center img {
    height: 123px;
    width: 123px;
    object-fit: contain;
    display: block;
}

.header-right {
    position: absolute;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-phone a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #111 !important;
    text-decoration: none;
    transition: color 0.3s;
}

.header-phone a:hover {
    color: #007BFF;
}

.header-right .header-phone {
    margin-top: 4px;
}

.header-socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    gap: 38px;
}

.header-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s;
    color: #fff !important;
}

.header-socials a.telegram {
    background: #29a9ea;
}

.header-socials a.viber {
    background: #7360f2;
}

.header-socials a.instagram {
    background: #e1306c;
}

.header-socials a:hover {
    transform: scale(1.15);
}

.header-right a {
    text-decoration: none;
    color: #fff;
}

.header-right a:hover {
    color: #007BFF;
}

.hero {
    background: #eef1f5;
    padding: 20px 20px;
}

.hero-inner {
    background: #eef1f5;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hero-inner h1 {
    background: #eef1f5;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 30px;
    color: #111;
}

.hero-inner .hero-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 1100px;
    color: #333;
}

.hero .btn-primary {
    display: none !important;
}

.btn-primary {
    padding: 14px 32px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border: 2px solid #111;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #fff;
    color: #111;
}

.services-trust {
    background: #eef1f5;
    padding: 20px 20px 60px;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-inner h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    padding: 0 45px;
    box-sizing: border-box;
}

.service-card {
    background: transparent;
    border: none;
    box-shadow: none;
    pointer-events: none;
}

.service-card-inner {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 0 0 transparent;
}

.service-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.service-card-inner h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.service-card-inner p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.service-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    color: #007BFF;
    font-weight: 600;
}

.service-card, .service-card a {
    text-decoration: none !important;
    color: inherit;
}

.order-btn {
    padding: 8px 14px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
    pointer-events: auto;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ===== ORDER CLEAN COMPACT ===== */
.order {
    padding: 10px 20px;
    background: #eef1f5;
}

.order-inner {
    max-width: 550px;
    margin: 0 auto;
    background: #fff;
    padding: 26px 24px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.order-inner h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

.order-form input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #e3e3e3;
    font-size: 14px;
}

.order-form button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: #111;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
}

.order-form button:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

/* ===== SEO PAGE ===== */
.seo-back, .back-home, .seo-back-wrapper {
    display: none !important;
}

.seo-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    color: #111;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.seo-back:hover {
    color: #007BFF;
}

.seo-hero {
    padding: 40px 20px 20px;
}

.seo-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.seo-content {
    padding: 40px 20px 60px;
    background: #f7f7f7;
}

.seo-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
}

.seo-lead {
    font-size: 18px;
    margin-bottom: 25px;
}

.seo-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.seo-points div {
    padding: 14px;
    border: 1px solid #ddd;
    background: #fff;
}

.seo-form-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
}

.seo-form-box h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-hint {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid #eee;
    padding: 30px;
    text-align: center;
    color: #666;
}

.services-trust h2, .services-home h2, .trust h2 {
    text-align: center;
}

.form-alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-weight: 500;
}

.form-alert.error {
    background-color: #ffe6e6;
    color: #d8000c;
}

.form-alert.success {
    background-color: #e6ffed;
    color: #007f3f;
}

input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.req-page {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.req-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    width: 100%;
    text-align: left;
    height: auto;
    min-height: 0;
}

.req-card h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #111;
    text-decoration: none;
}

.req-grid {
    display: grid;
    gap: 14px;
    font-size: 16px;
    line-height: 1.5;
    color: #111;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

.header-rekvizity-link {
    text-align: right;
}

.header-rekvizity-link a {
    display: inline-block;
    padding: 3px 7px;
    background: #007BFF;
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.header-rekvizity-link a:hover {
    background: #005fd1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.header-rekvizity-link a:active {
    transform: translateY(0);
}

.req-card-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.back-home {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.back-home:hover {
    color: #007BFF;
    text-decoration: none;
}

.req-card {
    background: #fff;
    padding: 80px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    width: 100%;
}

.conditions {
    background: #f7f7f7;
    padding: 20px 20px 40px;
}

.conditions h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
}

.conditions ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    display: grid;
    gap: 12px;
    font-size: 18px;
}

.conditions li {
    padding: 14px 18px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.header-email a {
    font-size: 14px;
    color: #111;
    text-decoration: none;
    opacity: 0.95;
    font-weight: 600;
}

.header-email a:hover {
    color: #007BFF;
}

/* =========================
   CLEAN MODERN BACKGROUND
   ========================= */
body {
    background: #eef1f5;
}

.seo-hero {
    background: linear-gradient(180deg,#ffffff 0%, #f3f6fb 100%);
}

.services-trust, .seo-content, .conditions {
    background: #eef1f5;
}

.req-card, .seo-form-box, .service-card-inner, .conditions li {
    background: #ffffffe2;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.why-trdx {
    background: #eef1f5;
    ; text-align: center;
}

.why-trdx h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.2;
}

.why-trdx-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    text-align: left;
}

.why-trdx-list li b {
    color: #111;
}

.workflow {
    background: #eef1f5;
    padding: 10px 20px;
}

.workflow-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.workflow-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.workflow-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 40px;
}

.workflow-list::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
}

.workflow-item {
    position: relative;
    background: #fff;
    padding: 18px 22px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.workflow-num {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.workflow-item p {
    margin: 0;
    color: #444;
}

.workflow-cta {
    text-align: center;
    margin-top: 40px;
    font-weight: 600;
    font-size: 18px;
}

/* ===== SEO PAGE (FIXED NORMAL CLEAN) ===== */

/* тот же фон что hero/services/order */
.seo-hero {
    background: #eef1f5;
    padding: 20px 20px 20px;
    text-align: center;
}

.seo-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-title {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.seo-lead {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    max-width: 1100px;
    margin: 0 auto 10px;
}

.seo-content {
    padding: 20px 20px 40px;
    background: #eef1f5;
}

.seo-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
}

.seo-text {
    background: #fff;
    padding: 1px 26px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.seo-text h2 {
    font-size: 28px;
    margin: 15px 0 15px;
    color: #111;
}

.seo-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 10px;
}

.seo-list li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.seo-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #007BFF;
    font-weight: bold;
}

.seo-form-box {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
}

.seo-form-box h3 {
    text-align: center;
    margin-bottom: 20px;
}

.order-form input,
.order-form button {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 14px;
}

.order-form button {
    background: #111;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.order-form button:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

/* MOBILE / TABLET CLEAN VERSION*/
@media (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.5;
    }

    section {
        padding: 0 15px;
    }

    /* ===== HEADER ===== */
    .header {
        padding: 0;
    }

    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .logo-center {
        position: static;
        transform: none;
        order: 1;
    }

    .logo-center img {
        height: 110px;
        width: 110px;
    }

    .logo-left {
        order: 2;
        margin-top: -6px;
        text-decoration: none;
    }

    .logo-left .logo-text {
        font-size: 22px;
    }

    .logo-left .logo-subtitle {
        font-size: 14px;
    }

    .header-rekvizity-link {
        width: 100%;
        text-align: center;
    }

    .header-rekvizity-link a {
        display: inline-block;
        padding: 6px 10px;
        background: #007BFF;
        color: #fff !important;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.2s;
    }

    .header-rekvizity-link a:hover {
        background: #005fd1;
    }

    .header-right {
        order: 4;
        position: static;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        width: 100%;
    }

    .header-phone {
        margin-top: 4px;
    }

    .header-phone a {
        font-size: 16px;
    }

    .header-socials {
        justify-content: center;
        gap: 38px;
    }

    .header-socials i {
        color: #fff;
    }

    .hero-inner h1 {
        font-size: 26px;
    }

    .hero-inner p {
        font-size: 14px;
    }

    /* ===== SERVICES ===== */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }

    .trust-inner h2 {
        font-size: 24px;
        margin-top: -5px;
    }

    /* ===== REQUISITES PAGE ===== */
    .req-card-container {
        padding: 0 10px;
        gap: 6px;
    }

    .back-home {
        display: none !important;
    }

    .seo-back {
        display: none !important;
    }

    /* ===== SEO HERO ===== */
    .seo-hero {
        padding: 25px 15px 20px;
    }

    .seo-hero-inner {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .seo-hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .seo-subtext {
        font-size: 14px;
        margin-top: 8px;
    }

    /* ===== SEO CONTENT ===== */
    .seo-content {
        padding: 20px 15px 40px;
        background: #f7f7f7;
    }

    .seo-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        margin: 0 auto;
    }

    .seo-lead {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .seo-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .seo-points div {
        padding: 12px;
        border: 1px solid #ddd;
        background: #fff;
        border-radius: 8px;
        font-size: 15px;
    }

    .seo-form-box {
        background: #fff;
        border: 1px solid #ddd;
        padding: 20px;
        border-radius: 10px;
    }

    .seo-form-box h2 {
        margin-bottom: 20px;
        text-align: center;
        font-size: 20px;
    }

    .order-form input {
        width: 100%;
        padding: 14px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

    .order-form button {
        width: 100%;
        padding: 14px;
        background: #007BFF;
        color: #fff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: 0.2s;
    }

    .order-form button:hover {
        background: #005fd1;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .seo-back {
        display: none !important;
    }

    .req-card {
        padding: 25px;
        max-width: 100%;
    }

    .req-card h1 {
        font-size: 22px;
    }

    .req-grid {
        font-size: 16px;
        gap: 8px;
    }

    /* ===== FOOTER ===== */
    .footer {
        text-align: center;
        font-size: 13px;
    }

    @media (max-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }

    @media (max-width: 768px) {

    /* Фон страницы как на всём сайте */
    .seo-hero,
    .seo-content {
        background: #eef1f5;
    }

    /* Сетка становится колонкой */
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    /* Карточка текста */
    .seo-text {
        margin: 0;
        border-radius: 14px;
    }

    /* Форма не растягивается */
    .seo-form-box {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    /* Заголовок аккуратнее */
    .seo-hero h1 {
        font-size: 26px;
        line-height: 1.25;
    }

    .seo-lead {
        font-size: 15px;
    }

    /* Пункты одной колонкой */
    .seo-points {
        grid-template-columns: 1fr;
    }

}
@media (max-width:768px){
    .seo-text,
    .seo-form-box{
        box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    }
}
}
}
