/* =========================================================
   XLPRINT
   ЕДИНЫЙ STYLE.CSS
   ========================================================= */


/* =========================================================
   1. БАЗОВЫЕ НАСТРОЙКИ
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222222;
    background: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   2. ШАПКА
   ========================================================= */

header {
    min-height: 72px;
    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    border-bottom: 1px solid #eeeeee;

    position: relative;
    z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #111111;
}

nav {
    display: flex;
    align-items: center;
    gap: 26px;

    margin-left: auto;
    margin-right: 30px;
}

nav a {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #222222;

    transition: 0.2s;
}

nav a:hover {
    color: #1769ff;
}

.phone {
    display: inline-block;

    padding: 11px 21px;

    background: #111111;
    color: #ffffff;

    border-radius: 8px;

    text-decoration: none;
    font-weight: 700;

    transition: 0.2s;
}

.phone:hover {
    background: #1769ff;
}


/* =========================================================
   3. ОБЩИЕ КНОПКИ
   ========================================================= */

.buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-block;

    padding: 15px 26px;

    background: #1769ff;
    color: #ffffff;

    border: none;
    border-radius: 9px;

    text-decoration: none;
    text-align: center;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s,
        background 0.2s;
}

.button:hover {
    transform: translateY(-2px);
}

.button.secondary {
    background: #111111;
}

.button.secondary:hover {
    background: #333333;
}


/* =========================================================
   4. BADGE
   ========================================================= */

.badge {
    display: inline-block;

    padding: 7px 14px;
    margin-bottom: 18px;

    background: #e8efff;
    color: #1769ff;

    border-radius: 100px;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   5. ГЛАВНАЯ — HERO
   ========================================================= */

.hero {
    min-height: 570px;

    display: flex;
    align-items: center;

    padding: 85px 7%;

    background: #f3f5f7;
}

.hero-content {
    width: 100%;
    max-width: 1050px;

    margin: 0 auto;
}

.hero h1 {
    max-width: 850px;

    margin-bottom: 24px;

    font-size: 58px;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.hero h1 span {
    display: block;
    color: #1769ff;
}

.hero p {
    max-width: 700px;

    margin-bottom: 34px;

    color: #555555;

    font-size: 21px;
    line-height: 1.55;
}


/* =========================================================
   6. ГЛАВНАЯ — УСЛУГИ
   ========================================================= */

.services {
    padding: 90px 7%;
    background: #ffffff;
}

.services > h2 {
    margin-bottom: 45px;

    text-align: center;

    font-size: 40px;
    line-height: 1.2;
}

.services-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service {
    padding: 30px;

    background: #f5f5f5;

    border-radius: 15px;
}

.service h3 {
    margin-bottom: 12px;

    font-size: 21px;
    line-height: 1.3;
}

.service p {
    margin-bottom: 15px;

    color: #666666;

    font-size: 15px;
}

.service .button {
    margin-top: 5px;
}


/* =========================================================
   7. БРЕНДЫ
   ========================================================= */

.brands {
    padding: 90px 7%;

    background: #ffffff;
}

.brands h2 {
    margin-bottom: 12px;

    text-align: center;

    font-size: 40px;
}

.brands > p,
.brands-subtitle {
    max-width: 700px;

    margin: 0 auto 42px;

    color: #666666;

    text-align: center;
    font-size: 17px;
}

.brands-grid {
    max-width: 1050px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.brand {
    display: block;

    padding: 25px 12px;

    background: #f3f5f7;
    color: #222222;

    border-radius: 12px;

    text-decoration: none;
    text-align: center;

    font-size: 18px;
    font-weight: 700;

    transition: 0.2s;
}

.brand:hover {
    transform: translateY(-3px);

    background: #e8efff;
    color: #1769ff;
}


/* =========================================================
   8. ПРЕИМУЩЕСТВА
   ========================================================= */

.advantages {
    padding: 90px 7%;

    background: #f3f5f7;
}

.advantages h2 {
    margin-bottom: 48px;

    text-align: center;

    font-size: 40px;
}

.advantages-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.advantage {
    padding: 34px 26px;

    background: #ffffff;

    border-radius: 15px;

    text-align: center;
}

.advantage-icon {
    margin-bottom: 16px;

    font-size: 40px;
}

.advantage h3 {
    margin-bottom: 10px;

    font-size: 20px;
}

.advantage p {
    color: #666666;

    font-size: 15px;
}


/* =========================================================
   9. БЛОК ДЛЯ БИЗНЕСА НА ГЛАВНОЙ
   ========================================================= */

.business-hero {
    padding: 90px 7%;

    background: #ffffff;
}

.business-hero > div {
    max-width: 1050px;

    margin: 0 auto;
}

.business-hero h1,
.business-hero h2 {
    max-width: 800px;

    margin-bottom: 20px;

    font-size: 46px;
    line-height: 1.15;
}

.business-hero h1 span {
    display: block;

    color: #1769ff;
}

.business-hero p {
    max-width: 750px;

    margin-bottom: 28px;

    color: #555555;

    font-size: 19px;
}


/* =========================================================
   10. КОНТАКТЫ ГЛАВНОЙ
   ========================================================= */

.contact-new {
    padding: 90px 7%;

    background: #f3f5f7;
}

.contact-heading {
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}

.contact-heading h2 {
    margin: 8px 0 12px;

    font-size: 40px;
    line-height: 1.2;
}

.contact-heading p {
    color: #666666;

    font-size: 18px;
}

.contact-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.contact-card {
    min-height: 350px;

    padding: 35px 30px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border-radius: 16px;

    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.045);
}

.contact-icon {
    margin-bottom: 18px;

    font-size: 36px;
}

.contact-card h3 {
    margin-bottom: 12px;

    font-size: 22px;
}

.contact-card p {
    margin-bottom: 20px;

    color: #666666;
}

.contact-phone {
    display: block;

    margin-bottom: 22px;

    color: #1769ff;

    text-decoration: none;

    font-size: 20px;
    font-weight: 700;
}

.contact-phone:hover {
    text-decoration: underline;
}

.contact-card .button {
    margin-top: auto;
}

.address-text {
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   11. ОБЩИЙ ФИНАЛЬНЫЙ CONTACT
   ========================================================= */

.contact {
    padding: 90px 7%;

    background: #ffffff;

    border-top: 1px solid #eeeeee;

    text-align: center;
}

.contact h2 {
    margin-bottom: 15px;

    font-size: 40px;
    line-height: 1.2;
}

.contact p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #666666;

    font-size: 18px;
}


/* =========================================================
   12. FOOTER
   ========================================================= */

footer {
    padding: 45px 7%;

    background: #111111;
    color: #ffffff;

    text-align: center;
}

footer .logo {
    margin-bottom: 8px;

    color: #ffffff;
}

footer p {
    margin-top: 4px;

    color: #cccccc;

    font-size: 14px;
}


/* =========================================================
   13. СТРАНИЦА УСЛУГ
   ========================================================= */

.services-hero {
    padding: 90px 7%;

    background: #f3f5f7;

    text-align: center;
}

.services-hero h1 {
    margin-bottom: 15px;

    font-size: 50px;
    line-height: 1.12;
}

.services-hero h1 span {
    display: block;

    color: #1769ff;
}

.services-hero p {
    max-width: 750px;

    margin: 0 auto;

    color: #666666;

    font-size: 20px;
}

.all-services {
    max-width: 1200px;

    margin: 0 auto;

    padding: 80px 7%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-large {
    padding: 40px;

    background: #f5f5f5;

    border-radius: 16px;
}

.service-icon {
    margin-bottom: 15px;

    font-size: 42px;
}

.service-large h2 {
    margin-bottom: 15px;

    font-size: 25px;
}

.service-large p {
    color: #666666;
}

.service-link {
    display: inline-block;

    margin-top: 20px;

    color: #1769ff;

    text-decoration: none;
    font-weight: 700;
}

.service-link:hover {
    text-decoration: underline;
}


/* =========================================================
   14. СТРАНИЦА ЦЕН — HERO
   ========================================================= */

.price-hero {
    padding: 95px 7%;

    background: #f3f5f7;
}

.price-hero-content {
    max-width: 1050px;

    margin: 0 auto;
}

.price-hero h1 {
    max-width: 850px;

    margin-bottom: 25px;

    font-size: 58px;
    line-height: 1.08;
    letter-spacing: -1px;
}

.price-hero h1 span {
    display: block;

    margin-top: 8px;

    color: #1769ff;
}

.price-hero p {
    max-width: 720px;

    margin-bottom: 32px;

    color: #555555;

    font-size: 20px;
}


/* =========================================================
   15. СТРАНИЦА ЦЕН — ЗАГОЛОВКИ СЕКЦИЙ
   ========================================================= */

.section-heading {
    max-width: 750px;

    margin: 0 auto 45px;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 12px;

    font-size: 40px;
    line-height: 1.2;
}

.section-heading p {
    color: #666666;

    font-size: 17px;
}


/* =========================================================
   16. ЦЕНЫ — КАРТОЧКИ БРЕНДОВ
   ========================================================= */

.price-brands {
    padding: 90px 7%;

    background: #ffffff;
}

.price-brand-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.price-brand-card {
    display: block;

    padding: 30px;

    background: #f5f5f5;
    color: #222222;

    border-radius: 16px;

    text-decoration: none;

    transition: 0.2s;
}

.price-brand-card:hover {
    transform: translateY(-4px);

    background: #eef3ff;
}

.price-brand-name {
    margin-bottom: 10px;

    font-size: 24px;
    font-weight: 700;
}

.price-brand-value {
    margin-bottom: 14px;

    color: #1769ff;

    font-size: 28px;
    font-weight: 800;
}

.price-brand-card span {
    color: #666666;

    font-size: 14px;
}


/* =========================================================
   17. ЦЕНЫ — ОТ ЧЕГО ЗАВИСИТ СТОИМОСТЬ
   ========================================================= */

.price-factors {
    padding: 90px 7%;

    background: #f3f5f7;
}

.price-factor-grid {
    max-width: 1050px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.price-factor-card {
    padding: 34px 30px;

    background: #ffffff;

    border-radius: 16px;
}

.price-factor-icon {
    margin-bottom: 17px;

    font-size: 38px;
}

.price-factor-card h3 {
    margin-bottom: 10px;

    font-size: 21px;
}

.price-factor-card p {
    color: #666666;
}


/* =========================================================
   18. ЦЕНЫ — ВЫЕЗД
   ========================================================= */

.price-delivery {
    padding: 80px 7%;

    background: #ffffff;
}

.price-delivery-content {
    max-width: 1100px;

    margin: 0 auto;

    padding: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    background: #111111;
    color: #ffffff;

    border-radius: 20px;
}

.price-delivery-content > div {
    max-width: 700px;
}

.price-delivery h2 {
    margin-bottom: 12px;

    font-size: 34px;
    line-height: 1.2;
}

.price-delivery p {
    color: #cccccc;

    font-size: 17px;
}

.price-delivery .badge {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}


/* =========================================================
   19. СТРАНИЦА BUSINESS
   ========================================================= */

.business-content {
    max-width: 800px;
}

.business-info {
    max-width: 650px;

    margin-top: 35px;
    padding: 20px;

    background: #ffffff;

    border-left: 4px solid #1769ff;
    border-radius: 10px;
}

.business-info strong {
    font-size: 18px;
}

.business-info p {
    margin-top: 5px;

    color: #666666;

    font-size: 15px;
}

.business-info-section {
    padding: 90px 7%;
}

.business-info-section h2,
.business-process h2 {
    margin-bottom: 45px;

    text-align: center;

    font-size: 40px;
}

.business-cards {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.business-card {
    padding: 30px;

    background: #f5f5f5;

    border-radius: 14px;
}

.business-card h3 {
    margin-bottom: 12px;
}

.business-card p {
    color: #666666;
}

.business-process {
    padding: 90px 7%;

    background: #f3f5f7;
}


/* =========================================================
   20. СТРАНИЦЫ БРЕНДОВ
   ========================================================= */

.brand-hero {
    min-height: 500px;

    padding: 80px 7%;

    display: flex;
    align-items: center;

    background: #f3f5f7;
}

.brand-content {
    max-width: 850px;
}

.brand-hero h1 {
    margin-bottom: 25px;

    font-size: 54px;
    line-height: 1.08;
}

.brand-hero h1 span {
    display: block;

    color: #1769ff;
}

.brand-hero p {
    max-width: 680px;

    margin-bottom: 30px;

    color: #555555;

    font-size: 20px;
}

.brand-services {
    padding: 80px 7%;
}

.brand-services h2,
.brand-models h2 {
    margin-bottom: 40px;

    text-align: center;

    font-size: 40px;
}

.brand-services > p {
    margin-bottom: 35px;

    color: #666666;

    text-align: center;
}

.brand-services-grid {
    max-width: 1000px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.brand-models {
    padding: 80px 7%;

    background: #f3f5f7;

    text-align: center;
}

.brand-models p {
    margin-bottom: 30px;

    color: #666666;
}

.models {
    max-width: 850px;

    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.models span {
    padding: 12px 20px;

    background: #ffffff;

    border-radius: 8px;

    font-weight: 700;
}


/* =========================================================
   21. ПЕЧАТЬ ДОКУМЕНТОВ
   ========================================================= */

.document-hero {
    padding: 85px 7%;

    background: #f3f5f7;
}

.document-hero > div {
    max-width: 1050px;

    margin: 0 auto;
}

.document-hero h1 {
    margin: 18px 0 24px;

    font-size: 56px;
    line-height: 1.08;
}

.document-hero p {
    max-width: 700px;

    margin-bottom: 30px;

    color: #555555;

    font-size: 21px;
}

.document-services {
    padding: 85px 7%;

    background: #ffffff;
}

.document-services h2,
.document-formats h2,
.how-order h2 {
    margin-bottom: 45px;

    text-align: center;

    font-size: 40px;
}

.document-grid {
    max-width: 1000px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.document-formats {
    padding: 85px 7%;

    background: #f3f5f7;
}

.format-list {
    max-width: 700px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.format-list div {
    padding: 32px;

    background: #ffffff;

    border-radius: 14px;

    text-align: center;
}

.format-list strong {
    display: block;

    margin-bottom: 6px;

    font-size: 32px;
}

.format-list span {
    color: #666666;
}

.how-order {
    padding: 85px 7%;

    background: #ffffff;
}

.how-order .steps {
    max-width: 900px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

    text-align: center;
}

.how-order .steps > div {
    padding: 20px;
}

.how-order .steps strong {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1769ff;
    color: #ffffff;

    border-radius: 50%;

    font-size: 22px;
}

.how-order .steps p {
    color: #666666;
}


/* =========================================================
   22. ПЕЧАТЬ ПРОЕКТОВ
   ========================================================= */

.projects-hero {
    padding: 85px 7%;

    background: #f3f5f7;
}

.projects-content {
    max-width: 1050px;

    margin: 0 auto;
}

.projects-hero h1 {
    margin: 18px 0 24px;

    font-size: 56px;
    line-height: 1.08;
}

.projects-hero h1 span {
    display: block;

    color: #1769ff;
}

.projects-hero p {
    max-width: 700px;

    margin-bottom: 30px;

    color: #555555;

    font-size: 21px;
}

.project-types {
    padding: 85px 7%;
}

.project-types h2,
.project-formats h2,
.project-order h2 {
    margin-bottom: 45px;

    text-align: center;

    font-size: 40px;
}

.project-grid {
    max-width: 1000px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project-formats {
    padding: 85px 7%;

    background: #f3f5f7;
}

.project-format-list {
    max-width: 1000px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.project-format-list div {
    padding: 26px 15px;

    background: #ffffff;

    border-radius: 13px;

    text-align: center;
}

.project-format-list strong {
    display: block;

    margin-bottom: 7px;

    font-size: 30px;
}

.project-format-list span {
    color: #666666;

    font-size: 14px;
}

.project-order {
    padding: 85px 7%;
}

.project-steps {
    max-width: 950px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

    text-align: center;
}

.project-steps > div {
    padding: 20px;
}

.project-steps strong {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1769ff;
    color: #ffffff;

    border-radius: 50%;

    font-size: 22px;
}

.project-steps h3 {
    margin-bottom: 10px;
}

.project-steps p {
    color: #666666;
}


/* =========================================================
   23. ОБЩИЕ ШАГИ
   ========================================================= */

.how {
    padding: 80px 7%;

    background: #f3f5f7;
}

.how h2,
.order h2 {
    margin-bottom: 45px;

    text-align: center;

    font-size: 40px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

    text-align: center;
}

.steps strong {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1769ff;
    color: #ffffff;

    border-radius: 50%;

    font-size: 22px;
}


/* =========================================================
   24. ФОРМЫ
   ========================================================= */

.order {
    padding: 80px 7%;
}

.order > p {
    margin-top: -25px;
    margin-bottom: 35px;

    color: #666666;

    text-align: center;
}

form {
    max-width: 550px;

    margin: auto;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea,
select {
    width: 100%;

    padding: 15px;

    border: 1px solid #cccccc;
    border-radius: 8px;

    font-family: inherit;
    font-size: 16px;
}

button {
    padding: 15px;

    background: #1769ff;
    color: #ffffff;

    border: none;
    border-radius: 8px;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   25. ПЛАВАЮЩИЙ WHATSAPP
   ========================================================= */

.whatsapp-float {
    width: 58px;
    height: 58px;

    position: fixed;
    right: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);

    z-index: 9999;

    transition: 0.2s;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;

    fill: #ffffff;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}


/* =========================================================
   26. ПЛАНШЕТ
   ========================================================= */

@media (max-width: 900px) {

    .hero h1,
    .price-hero h1,
    .document-hero h1,
    .projects-hero h1,
    .brand-hero h1 {
        font-size: 46px;
    }

    .services-grid,
    .advantages-grid,
    .business-cards,
    .brand-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .price-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-factor-grid {
        grid-template-columns: 1fr;
    }

    .price-delivery-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-grid {
        max-width: 600px;

        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: auto;
    }

    .project-format-list {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   27. МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 600px) {

    body {
        overflow-x: hidden;
    }


    /* HEADER */

    header {
        min-height: auto;

        padding: 14px 5%;

        flex-wrap: wrap;
        gap: 12px;
    }

    .logo {
        font-size: 23px;
    }

    .phone {
        padding: 9px 13px;

        font-size: 14px;
    }

    nav {
        order: 3;

        width: 100%;

        margin: 0;

        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    nav a {
        font-size: 13px;
    }


    /* BUTTONS */

    .buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .buttons .button {
        width: 100%;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding: 65px 5%;
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 18px;
    }


    /* ОБЩИЕ СЕКЦИИ */

    .services,
    .brands,
    .advantages,
    .business-hero,
    .contact-new,
    .contact,
    .business-info-section,
    .business-process,
    .brand-services,
    .brand-models,
    .document-services,
    .document-formats,
    .how-order,
    .project-types,
    .project-formats,
    .project-order,
    .price-brands,
    .price-factors,
    .price-delivery {
        padding: 60px 5%;
    }


    /* ЗАГОЛОВКИ */

    .services > h2,
    .brands h2,
    .advantages h2,
    .contact h2,
    .business-info-section h2,
    .business-process h2,
    .brand-services h2,
    .brand-models h2,
    .document-services h2,
    .document-formats h2,
    .how-order h2,
    .project-types h2,
    .project-formats h2,
    .project-order h2,
    .section-heading h2 {
        font-size: 30px;
    }


    /* СЕТКИ */

    .services-grid,
    .advantages-grid,
    .business-cards,
    .brand-services-grid,
    .document-grid,
    .format-list,
    .how-order .steps,
    .project-grid,
    .project-format-list,
    .project-steps,
    .all-services,
    .steps,
    .price-brand-grid,
    .price-factor-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* SERVICES */

    .services-hero {
        padding: 60px 5%;
    }

    .services-hero h1 {
        font-size: 36px;
    }

    .services-hero p {
        font-size: 17px;
    }

    .all-services {
        padding: 55px 5%;
    }

    .service-large {
        padding: 28px;
    }


    /* BUSINESS */

    .business-hero h1,
    .business-hero h2 {
        font-size: 34px;
    }


    /* DOCUMENTS */

    .document-hero {
        padding: 65px 5%;
    }

    .document-hero h1 {
        font-size: 38px;
    }

    .document-hero p {
        font-size: 18px;
    }


    /* PROJECTS */

    .projects-hero {
        padding: 65px 5%;
    }

    .projects-hero h1 {
        font-size: 38px;
    }

    .projects-hero p {
        font-size: 18px;
    }


    /* BRAND */

    .brand-hero {
        min-height: auto;

        padding: 65px 5%;
    }

    .brand-hero h1 {
        font-size: 38px;
    }

    .brand-hero p {
        font-size: 18px;
    }


    /* PRICES */

    .price-hero {
        padding: 65px 5%;
    }

    .price-hero h1 {
        font-size: 38px;
    }

    .price-hero p {
        font-size: 18px;
    }

    .price-brand-card {
        padding: 26px;
    }

    .price-brand-value {
        font-size: 25px;
    }

    .price-delivery-content {
        padding: 30px 24px;

        border-radius: 16px;
    }

    .price-delivery h2 {
        font-size: 28px;
    }

    .price-delivery .button {
        width: 100%;
    }


    /* CONTACT */

    .contact-heading h2 {
        font-size: 32px;
    }

    .contact-heading p {
        font-size: 16px;
    }

    .contact-card {
        padding: 28px 22px;
    }

    .contact-phone {
        font-size: 18px;
    }


    /* WHATSAPP */

    .whatsapp-float {
        width: 52px;
        height: 52px;

        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

}