* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}


/* Верхня помаранчева панель */
.top-bar {
    width: 100%;
    background-color: #FF7A00;
    color: #fff;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    overflow-x: hidden; /* щоб нічого не вилазило */
}

/* Ліва частина */
.top-left span {
    font-weight: 600;
}

/* Права частина */
.top-right span {
    margin-left: 10px;
}

.phone {
    color: #fff;
}

/* +38 */
.prefix {
    user-select: none;
    opacity: 0.7;
    margin-right: 2px;
}

/* Адаптивність */
@media (max-width: 600px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 4px;
        padding: 8px 10px;
        font-size: 15px; /* трошки менше для телефонів */
    }
    .top-right span {
        margin-left: 5px;
    }


    
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #111;
    font-family: "Oswald", sans-serif;
}



/* --- Липка шапка --- */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 25px 60px;
    background-color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
}

/* --- Логотип --- */
.logo {
    font-size: 32px;
    font-weight: 600;
    color: white;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* --- Навігація --- */
.nav-right a {
    margin-left: 40px;
    font-size: 18px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    opacity: 0.85;
    position: relative;
    transition: 0.25s ease;
}

/* Ефект ховеру */
.nav-right a:hover {
    opacity: 1;
}

.nav-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #aaa;
    transition: 0.25s;
}

.nav-right a:hover::after {
    width: 100%;
}

/* Активна кнопка */
.nav-active::after {
    width: 100%;
}

/* --- Білий корпоративний hero --- *//* --- Білий корпоративний hero --- */
/* --- Білий корпоративний hero --- */
.hero-white {
    width: 100%;
    background-color: #fff;
    background-image:
        linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    padding: 90px 60px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-white h1 {
    font-size: 52px;
    font-weight: 700;
    color: #111;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-white p {
    font-size: 20px;
    color: #555;
    max-width: 600px;
    margin-bottom: 35px;
}

/* Кнопка */
.hero-white-btn {
    background: #FF7A00;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 40px;
    transition: 0.25s;
}

.hero-white-btn:hover {
    opacity: 0.85;
}

/* Блок іконок */
.hero-features {
    display: flex;
    gap: 50px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature .icon {
    font-size: 42px;
    margin-bottom: 8px;
}

.feature span {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}



.contact-wrapper{
    width:100%;
    background:#1b1b1b;
    border-top:3px solid #ff9900;
}

.contact-bar{
    max-width:1200px;
    margin:0 auto;
    padding:25px 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;

    
    border-bottom:1px solid rgba(255,255,255,.08);
}

.contact-box{
    flex:1;
    display:flex;
    align-items:center;
    gap:18px;
    position:relative;
    transition:.3s;
}

.contact-box:not(:last-child)::after{
    content:"";
    position:absolute;
    right:-15px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:45px;
    background:rgba(255,255,255,.12);
}

.contact-box i,
.contact-box img{
    width:34px;
    height:34px;
    font-size:30px;
    color:#ff9900;
    flex-shrink:0;
}

.contact-box img{
    filter: invert(63%) sepia(98%) saturate(1117%)
            hue-rotate(359deg) brightness(102%) contrast(103%);
}

.contact-box span{
    display:block;
    color:#a8a8a8;
    font-size:14px;
    margin-bottom:5px;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

.contact-box a,
.contact-box p{
    margin:0;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
    transition:.3s;
}

.contact-box:hover{
    transform:translateY(-3px);
}

.contact-box:hover i,
.contact-box:hover img{
    color:#ffb300;
    filter: invert(73%) sepia(94%) saturate(1234%)
            hue-rotate(357deg) brightness(104%) contrast(103%);
}

.contact-box:hover a{
    color:#ffb300;
}

/* Адаптив */
@media (max-width:768px){

    .contact-bar{
        display:flex;
        flex-direction:column;
        align-items:flex-start;

        gap:18px;

        padding:20px;
    }

    .contact-box{
        display:flex;
        align-items:center;
        gap:15px;
        width:100%;
    }

    .contact-box:not(:last-child)::after{
        display:none;
    }

    .contact-box i{
        color:#ff9900 !important;
        font-size:26px;
        min-width:30px;
    }

    .contact-box span{
        font-size:13px;
        color:#999;
    }

    .contact-box a,
    .contact-box p{
        margin:0;
        color:#fff;
        font-size:18px;
    }
}




/*  */
@media (max-width: 480px){

    .contact-bar{
        padding:18px 15px;
        gap:18px;
    }

    .contact-box{
        gap:12px;
    }

    .contact-box i{
        font-size:24px;
        min-width:30px;
    }

    .contact-box span{
        font-size:12px;
    }

    .contact-box a,
    .contact-box p{
        font-size:16px;
    }

}


/* Адаптивність */
@media (max-width: 850px) {
    .hero-white {
        padding: 60px 30px;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 25px;
    }
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* --- Послуги --- */
.services {
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    color: #111;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: 0.25s;
    /* Додаємо центрування вмісту всієї картки */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
}

.card .icon {
    /* Контейнер тепер не стискає вміст, а просто дає відступ */
    margin-bottom: 20px;
    height: 50px; /* Фіксуємо висоту, щоб текст під іконками був в одну лінію */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* СТИЛЬ САМЕ ДЛЯ ЛОГОТИПА */
.card .icon img {
    width: 55px; /* Регулюйте цей розмір, щоб підігнати під іконки */
    height: 55px;
    object-fit: contain;
    display: block;
}

/* СТИЛЬ ДЛЯ ІКОНОК-ШРИФТІВ (якщо використовуєте FontAwesome або подібне) */
.card .icon i {
    font-size: 60px;  /* Було 40, тепер 60 */
    color: #555; /* Іноді допомагає для правильного розрахунку розміру */
}


.price {
    background-color: #fff;
    background-image:
        linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    padding: 80px 20px;
}

.price-container {
    max-width: 900px;
    margin: 0 auto;
}

.price h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #111;
}

/* Таблиця */
.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
}

.price-table th {
    text-align: left;
    padding: 14px;
    border-bottom: 2px solid #ddd;
    color: #111;
}

.price-table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
    color: #444;
}

/* Ховер ефект */
.price-table tr:hover {
    background: #f7f7f7;
}

/* Адаптив */
@media (max-width: 600px) {
    .price-table {
        font-size: 16px;
    }
}

/* --- Вартість матеріалу
.materials {
    background: #fff;
    padding: 80px 20px;
}

.materials-title {
    font-size: 40px;
    font-weight: 700;
    color: #FF7A00;
    margin-bottom: 10px;
    text-align: left;
}

.materials .line {
    width: 100%;
    height: 1px;
    background: #dcdcdc;
    margin-bottom: 60px;
}

/* Сітка *//*
.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 120px;
}

/* Окрема картка *//*
.material-item h3 {
    font-size: 70px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 25px;
}

.material-sub {
    font-size: 28px;
    color: #555;
    margin-bottom: 20px;
}

.material-price {
    font-size: 20px;
    color: #444;
}

/* Адаптивність */
@media (max-width: 900px) {
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .material-item h3 {
        font-size: 55px;
    }

    .material-sub {
        font-size: 24px;
    }
}

.calc-section {
    background: #f8fafc;
    padding: 60px 20px;
    text-align: center;
}

.calc-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.drop-zone {
    border: 2px dashed #2563eb;
    padding: 30px;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: 0.3s;
}

.drop-zone:hover {
    background: #e0e7ff;
}

#viewer {
    height: 400px;
    background: linear-gradient(145deg, #0f172a, #020617);
    border-radius: 12px;
}

.calc-panel {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.calc-block {
    margin-bottom: 20px;
    text-align: left;
}

.calc-block label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.calc-block select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
}

.infill-buttons {
    display: flex;
    gap: 10px;
}

.infill-buttons button {
    flex: 1;
    padding: 10px;
    border: none;
    background: #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
}

.infill-buttons button.active {
    background: #2563eb;
    color: #fff;
}

.calc-result {
    font-size: 18px;
    margin-top: 20px;
}

.drop-zone {
    border: 2px dashed #2563eb;
    padding: 30px;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: 0.3s;
}

.drop-zone.active {
    background: #dbeafe;
    border-color: #1d4ed8;
    transform: scale(1.02);
}

/* --- Форма замовлення --- */
.order {
    background-color: #fff;
    background-image:
        linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    padding: 80px 20px;
}

.order h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.order form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Звичайні поля */
.order input[type="text"],
.order input[type="email"] {
    padding: 14px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}
.order input[type="text2"] {
    padding: 20px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

/* Кнопка */
.order button {
    background: #FF7A00;
    color: white;
    padding: 14px;
    font-size: 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.25s;
}

.order button:hover {
    opacity: 0.85;
}

/* Стиль поля файлу */
.file-upload {
    display: block;
    padding: 14px;
    border: 2px dashed #ccc;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
    font-size: 18px;
    color: #555;
}

.file-upload:hover {
    border-color: #FF7A00;
    color: #FF7A00;
}

.file-upload input {
    display: none;
}


/* --- Підвал --- */
.footer {
    background: #111;
    padding: 60px 20px;
    color: #ccc;
}

/* ОЦЕ ГОЛОВНЕ */
.footer-inner {
    max-width: 2000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Центр (але не flex-center!) */
.footer-center {
    margin-left: 44%; /* магія вирівнювання */
    text-align: center;
}

/* Правий блок */
.footer-right {
    width: 280px;
    text-align: left;
}
/* Кнопка */
.telegram-btn {
    display: inline-block;
    background: #2ea6da;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
}
.viber-btn {
    display: inline-block;
    background: #7360F2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer-center {
        margin-left: 0;
    }
}

/* перехід на нову сторінку */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 40px 60px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: fadeIn 0.3s ease;
}

.modal-content h2 {
    font-size: 28px;
    color: #111;
}

 /*кнопка закриття */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    cursor: pointer;
}

 /*анімація */
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
}

/* FAQ page full white background */
body.faq-body {
    background: #ffffff !important;
    color: #111111 !important;
}

/* вся область сторінки */
body.faq-body,
body.faq-body html {
    background: #ffffff !important;
}

/* Корекція для зміщення вгору */
.faq-page {
    padding: 40px 20px !important; /* Менше відступ зверху */
    background: #ffffff;
}

.faq-container h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #111;
}

.faq-intro {
    margin-bottom: 30px;
    color: #666;
    font-size: 1.1rem;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #1d4ed8 !important; /* Синій колір для посилань/питань */
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    transition: 0.3s;
}

.faq-question:hover {
    color: #111 !important;
}

.faq-answer {
    padding-bottom: 20px;
    line-height: 1.6;
    color: #333;
    display: none; /* Якщо ваш faq.js керує відкриттям */
}

/* Блок заклику до дії */
.faq-cta {
    margin-top: 50px;
    padding: 40px;
    background: #111;
    color: #fff;
    text-align: center;
    border-radius: 4px;
}

.faq-cta h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.btn-order {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #FF7A00;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-order:hover {
    background: #2563eb;
    transform: translateY(-2px);
}
/* ===== MOBILE ADAPTIVE ===== */
@media (max-width: 768px) {

    /* шапка */
    .top-nav {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
        text-align: center;
    }

    .logo {
        font-size: 22px;
        line-height: 1.3;
    }

    .nav-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-right a {
        margin-left: 0;
        font-size: 16px;
    }

    /* hero */
    .hero-white {
        padding: 50px 20px;
    }

    .hero-white h1 {
        font-size: 32px;
        line-height: 1.25;
    }

    .hero-white p {
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-features {
        gap: 20px;
    }

    .feature span {
        font-size: 16px;
    }

    /* картки */
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 360px;
    }

    /* таблиця */
    .price-table {
        font-size: 14px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* форма */
    .order form {
        width: 100%;
    }

    .order input,
    .order textarea,
    .order button {
        font-size: 16px;
    }

    /* FAQ */
    .faq-container h1 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 18px;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 16px;
    }
}

.seo-boost {
    background: #ffffff;
    padding: 60px 20px;
}

.seo-boost h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.seo-boost p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.seo-boost ul {
    margin: 15px 0;
}

.seo-boost a {
    color: #1d4ed8;
}


```css id="z2m6s9"
```css
/* ===== BLOG NEW DESIGN ===== */

.blog-section {
    background: #111;
    padding: 60px 20px;
}

.blog-grid {
    max-width: 1500px;
    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, minmax(320px, 1fr));

    gap: 28px;
}

/* КАРТКА */

.blog-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 18px;

    overflow: hidden;

    transition: 0.25s ease;

    display: flex;
    flex-direction: column;

    position: relative;
}

.blog-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255,122,0,0.35);

    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* ФОТО */

.blog-image {
    width: 100%;
    height: 190px;

    overflow: hidden;

    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.4s ease;

    display: block;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* ГРАДІЄНТ */

.blog-image::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 100px;

    background: linear-gradient(
        to top,
        rgba(17,17,17,1),
        rgba(17,17,17,0)
    );
}

/* КОНТЕНТ */

.blog-content {
    padding: 22px;

    display: flex;
    flex-direction: column;

    flex-grow: 1;
}

/* ДАТА */

.blog-date {
    color: #888;

    font-size: 13px;

    letter-spacing: 0.5px;

    margin-bottom: 12px;

    text-transform: uppercase;
}

/* ЗАГОЛОВОК */

.blog-content h2 {
    color: #fff;

    font-size: 28px;

    line-height: 1.25;

    margin-bottom: 14px;

    transition: 0.2s;
}

.blog-card:hover h2 {
    color: #FF7A00;
}

/* ТЕКСТ */

.blog-content p {
    color: #b5b5b5;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 22px;
}

/* КНОПКА */

.blog-read {
    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #FF7A00;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;

    transition: 0.2s;
}

.blog-read:hover {
    gap: 16px;
}

/* ПОМАРАНЧЕВА ЛІНІЯ */

.blog-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #FF7A00,
        #ff9d42
    );
}

/* ===== MOBILE ===== */

@media (max-width: 1150px) {

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 760px) {

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-content h2 {
        font-size: 24px;
    }

}
```
```css
/* ===== BLOG NEW DESIGN ===== */

.blog-section {
    background: #111;
    padding: 60px 20px;
}

.blog-grid {
    max-width: 1500px;
    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, minmax(320px, 1fr));

    gap: 28px;
}

/* КАРТКА */

.blog-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 18px;

    overflow: hidden;

    transition: 0.25s ease;

    display: flex;
    flex-direction: column;

    position: relative;
}

.blog-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255,122,0,0.35);

    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* ФОТО */

.blog-image {
    width: 100%;
    height: 190px;

    overflow: hidden;

    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.4s ease;

    display: block;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* ГРАДІЄНТ */

.blog-image::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 100px;

    background: linear-gradient(
        to top,
        rgba(17,17,17,1),
        rgba(17,17,17,0)
    );
}

/* КОНТЕНТ */

.blog-content {
    padding: 22px;

    display: flex;
    flex-direction: column;

    flex-grow: 1;
}

/* ДАТА */

.blog-date {
    color: #888;

    font-size: 13px;

    letter-spacing: 0.5px;

    margin-bottom: 12px;

    text-transform: uppercase;
}

/* ЗАГОЛОВОК */

.blog-content h2 {
    color: #fff;

    font-size: 28px;

    line-height: 1.25;

    margin-bottom: 14px;

    transition: 0.2s;
}

.blog-card:hover h2 {
    color: #FF7A00;
}

/* ТЕКСТ */

.blog-content p {
    color: #b5b5b5;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 22px;
}

/* КНОПКА */

.blog-read {
    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #FF7A00;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;

    transition: 0.2s;
}

.blog-read:hover {
    gap: 16px;
}

/* ПОМАРАНЧЕВА ЛІНІЯ */

.blog-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #FF7A00,
        #ff9d42
    );
}

.article-page {
    width: 100%;
    background: #fff;
    padding: 90px 60px;
    text-align: top-left;
    display: flex;
    justify-content: left;
}

/* ===== MOBILE ===== */

@media (max-width: 1150px) {

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 760px) {

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-content h2 {
        font-size: 24px;
    }

}

/* ===== ARTICLE FLEX BLOCKS ===== */

.article-block {
    display: flex;

    align-items: flex-start;

    gap: 60px;

    margin: 80px 0;
}

/* РЕВЕРС */

.article-block.reverse {
    flex-direction: row-reverse;
}

/* ТЕКСТ */
.article-meta {
    margin-top: 4px;
    margin-bottom: 20px;

    
}
.article-title h1 {

     margin-top: 20px;
}
.article-text-side {
    flex: 1;
}

.article-text-side h2 {
    font-size: 24px;

    color: #111;

    line-height: 1.2;

    margin-bottom: 25px;
}

.article-text-side p {
    font-size: 20px;

    color: #444;

    line-height: 1.9;

    margin-bottom: 25px;
}
.article-text-side ul li {
    font-size: 16px; 
    line-height: 1.6;
    margin-bottom: 4px;
}

/* ФОТО */

.article-image-side {
    width: 20%;






    
    flex-shrink: 0;
}

.article-image-side img {
    width: 100%;

    border-radius: 24px;

    display: block;

    object-fit: cover;

    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

/* ТЕМНИЙ БЛОК */

.article-dark {
    background: #111;

    border-radius: 30px;

    padding: 60px;

    margin: 100px 0;
}

.article-dark h2 {
    color: #fff;
}

.article-dark p {
    color: #c7c7c7;
}

/* ПОМАРАНЧЕВИЙ АКЦЕНТ */

.article-orange {
    color: #FF7A00;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

    /* 1. Верхня панель (Контакти) */
    .top-bar {
        flex-direction: column !important;
        text-align: center !important;
        padding: 10px !important;
        gap: 5px;
    }
    .top-bar .top-right {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .top-bar .top-right span {
        display: inline-block;
    }
    /* Ховаємо розділювач "|", бо він більше не потрібен у стовпчику */
    .top-bar .top-right span:nth-child(3) { 
        display: none !important; 
    }

    /* 2. Шапка та навігація */
    .top-nav {
        flex-direction: column !important;
        align-items: center !important;
        padding: 15px !important;
        gap: 15px;
    }
    .nav-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px !important;
    }

    /* 3. Контейнер статті та головне фото (Hero) */
    .article-container {
        padding: 0 10px !important; /* Зменшили відступи з 15px до 10px, щоб текст став ширшим */
        width: 100% !important;
        max-width: 100% !important;
    }

    .article-hero {
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    .article-hero img {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px; /* Трохи акуратніші кути для мобілок */
    }

    /* 4. Тексти та заголовок статті */
    .article-title {
        font-size: 22px !important; /* Зменшили заголовок (був 26px), щоб не займав багато місця */
        line-height: 1.2 !important;
        margin: 12px 0 !important;
    }

    .article-meta {
        font-size: 13px !important; /* Трохи менша дата публікації */
        margin-bottom: 15px !important;
    }

    .article-text p, 
    .article-text-side p {
        font-size: 15px !important; /* Зменшили сам текст (був 16px) */
        line-height: 1.5 !important; /* Трохи щільніший інтервал для компактності */
        margin-bottom: 12px !important; /* Менший відступ між абзацами */
        text-align: left; /* Можна змінити на justify, якщо хочете рівні краї по боках */
    }

    .article-text-side ul {
        padding-left: 15px !important; /* Зсунули список лівіше, щоб додати ширини тексту */
        margin-top: 5px !important;
    }

    .article-text-side ul li {
        font-size: 14px !important; /* Зменшили шрифт списку (був 15px) */
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }
}


.why {
  position: relative;
  padding: 96px 32px 104px;
  background-color: #FAF9F5;
  background-image:
    linear-gradient(#E7E4DA 1px, transparent 1px),
    linear-gradient(90deg, #E7E4DA 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
}
 
.why-inner {
  max-width: 1080px;
  margin: 0 auto;
}
 
.why-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 64px;
}
 
.why-head::before {
  content: "";
  width: 22px;
  height: 2px;
  background: #E07B0E;
  flex-shrink: 0;
  transform: translateY(-6px);
}
 
.why-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  letter-spacing: -0.01em;
  margin: 0;
  color: #211F1B;
}
 
.why-grid {
  display: flex;
  gap: 0;
}
 
.why-item {
  flex: 1;
  padding: 0 36px;
  border-left: 1px solid #D9D5C8;
  font-family: 'IBM Plex Sans', sans-serif;
}
 
.why-item:first-child {
  padding-left: 0;
  border-left: none;
}
.why-item:last-child {
  padding-right: 0;
}
 
.why-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  color: #211F1B;
}
 
.why-item p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #5C594F;
  margin: 0;
  max-width: 32ch;
}
 
.why-item .spec {
  color: #211F1B;
  font-weight: 500;
  border-bottom: 1.5px solid #F3D8B0;
}
 
.why-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  color: #E07B0E;
}
 
.why-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
 
@media (max-width: 760px) {
  .why {
    padding: 64px 22px 72px;
  }
  .why-grid {
    flex-direction: column;
    gap: 44px;
  }
  .why-item {
    padding: 0 0 0 20px;
    border-left: 2px solid #F3D8B0;
  }
  .why-item:first-child {
    padding-left: 20px;
    border-left: 2px solid #F3D8B0;
  }
}