@font-face {
    font-family: 'TTHoves';
    src: url('../static/fonts/TTHoves/TTHoves-ExtraLight.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'TTHoves', 'Roboto', sans-serif;
    line-height: 1.6;
    height: 100%;
}

/* для SEO-h1, чтобы не ломать дизайн */
.visually-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Фиксированный верхний бар */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.4rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-bar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-logo img {
    height: 26px;
    width: auto;
    display: block;
}

.top-bar-tagline {
    display: none;
    font-size: 0.8rem;
    opacity: 0.8;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .top-bar-tagline {
        display: block;
    }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar-phone-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    white-space: nowrap;
    margin-right: 0.75rem;
}

.top-bar-phone-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.top-bar-phone {
    display: none;
    font-size: 0.85rem;
    opacity: 0.85;
}

@media (min-width: 900px) {
    .top-bar-phone {
        display: block;
    }
}

/* Кнопка Telegram в шапке (круглая иконка) */
.top-bar-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0088cc;
    text-decoration: none;
    flex-shrink: 0;
}

.top-bar-telegram svg {
    width: 17px;
    height: 17px;
    fill: #ffffff;
}

.top-bar-telegram:hover {
    filter: brightness(1.1);
}

.cta-button {
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #fff;
    color: #000;
}

.cta-button:active {
    opacity: 0.85;
}

/* Hero Slider Styles - без стрелок */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slider-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
}

.slider-slide picture,
.slider-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-slide img {
    transform: scale(1);
    transition: transform 6s ease;
}

.slider-slide.active img {
    transform: scale(1.06);
}

/* Отдельный элемент для виньетки - всегда на месте */
.slide-vignette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.55) 35%,
        rgba(0,0,0,0.18) 65%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Базовые стили для контента слайда */
.slide-content {
    position: absolute;
    bottom: 80px;
    padding: 2rem;
    color: white;
    max-width: 800px;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
    box-sizing: border-box;
}

.slider-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* Выравнивание по центру */
.slide-content-center {
    left: 50%;
    transform: translateX(-50%) translateY(28px);
    text-align: center;
}

.slider-slide.active .slide-content-center {
    transform: translateX(-50%) translateY(0);
}

/* Выравнивание по правому краю */
.slide-content-right {
    right: 5%; /* Отступ от правого края */
    left: auto; /* Отменяем left */
    text-align: right; /* Весь текст выровнен по правому краю */
    width: auto; /* Автоматическая ширина по содержимому */
    max-width: 800px; /* Максимальная ширина */
    margin-left: auto; /* Автоматический отступ слева */
    margin-right: 0; /* Нет отступа справа */
    transform: translateY(28px);
}

.slider-slide.active .slide-content-right {
    transform: translateY(0);
}

/* Выравнивание по левому краю (на будущее) */
.slide-content-left {
    left: 5%;
    right: auto;
    text-align: left;
    transform: translateY(28px);
}

.slider-slide.active .slide-content-left {
    transform: translateY(0);
}

.slide-title,
.slide-description {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slider-slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.slider-slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.28s;
}

.slide-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Заголовок */
.slide-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 500;
    margin: 0 0 0.5rem;
    padding: 0; /* Убираем возможные внутренние отступы */
    display: block; /* Блочный элемент */
    width: 100%; /* Полная ширина */
    line-height: 1.1;
}

/* Описание */
.slide-description {
    font-size: clamp(0.875rem, 3vw, 1.125rem);
    opacity: 0.9;
    margin: 0;
    padding: 0; /* Убираем возможные внутренние отступы */
    display: block; /* Блочный элемент */
    width: 100%; /* Полная ширина */
}

/* Точки (индикаторы) - единственный способ навигации */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 30;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .slide-eyebrow {
        margin-bottom: 0.5rem;
        font-size: 0.78rem;
        letter-spacing: 0.1em;
    }

    .slide-content {
        bottom: 70px;
        padding: 1.25rem;
    }

    .slide-title {
        line-height: 1.05;
    }

    .slide-description {
        line-height: 1.35;
    }
    
    .slide-content-right {
        right: 0;
        left: 0;
        margin: 0 auto;
        text-align: center; /* На мобильных лучше по центру */
        width: 90%;
    }
    
    .slide-content-center {
        left: 50%;
        width: 90%;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
        padding: 6px 12px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slide-vignette {
        height: 65%;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .slide-content {
        bottom: 50px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        aspect-ratio: auto;
        height: 70vh;
        min-height: 420px;
    }
    .slide-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
}

.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.hero picture,
.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Заголовок адаптивный */
h2 {
    text-align: center;
    font-size: clamp(1rem, 5vw, 2rem);
    font-weight: 500;
    margin: 2rem 0 1.5rem;
}

.offer-grid-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 2.5rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.offer-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.14);
}

.offer-card-media {
    background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.offer-card-media picture,
.offer-card-media img {
    display: block;
    width: 100%;
}

.offer-card-media img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
}

.offer-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.25rem 1.25rem 1.35rem;
    height: 100%;
}

.offer-card-kicker {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.offer-card h3 {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.offer-card-lead {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
    color: #111;
    font-weight: 500;
}

.offer-card-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
}

.offer-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 0.2rem;
}

.offer-card-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.48rem 0.78rem;
    border-radius: 999px;
    background: #f3f3f3;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #333;
    font-size: 0.8rem;
    line-height: 1.35;
}

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

@media (max-width: 640px) {
    .offer-grid-section {
        padding: 0 0.75rem 2rem;
    }

    .offer-grid {
        gap: 1rem;
    }

    .offer-card {
        border-radius: 16px;
    }

    .offer-card-media {
        padding: 0.8rem;
    }

    .offer-card-media img {
        border-radius: 12px;
    }

    .offer-card-body {
        padding: 1rem 1rem 1.15rem;
    }

    .offer-card-tags span {
        width: 100%;
        border-radius: 12px;
    }
}

footer {
    background: #000;
    color: #fff;
    padding: 1.25rem 0;
    font-size: clamp(0.75rem, 2vw, 0.95rem);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Telegram в футере: иконка + ник */
.footer-telegram {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-telegram:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-telegram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0088cc;
    flex-shrink: 0;
}

.footer-telegram-icon svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
}

.material-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tile {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 160px;
}

.tile img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    margin: 0 1rem;
    border-radius: 8px;
}

.tile-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tile-content h3 {
    margin: 0 0 0.5rem;
    font-size: clamp(1rem, 4vw, 1.25rem);
}

.tile-content p {
    margin: 0;
    font-size: clamp(0.875rem, 3vw, 1rem);
    line-height: 1.4;
}

@media (max-width: 600px) {
    .tile {
        flex-direction: column;
        text-align: center;
    }

    .tile img {
        max-width: 100%;
        margin: 1rem auto 0;
    }

    .tile-content {
        padding: 1rem 0.75rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .material-tiles {
        grid-template-columns: 1fr;
    }
}

/* Блок с финальной картинкой */
.in-progress {
    position: relative;
    margin: 2rem 0 0 0;
}

.in-progress img {
    width: 100%;
    height: auto;
    display: block;
}

.in-progress .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 1.8rem 1.2rem;
    width: min(95%, 1000px);
    border-radius: 18px;
    line-height: 1.5;
}

/* --- Контактная форма внутри оверлея (современный стиль) --- */
.contact-section {
    padding: 0;
    margin: 0;
}

.contact-card {
    max-width: 640px;
    margin: 0 auto;
    background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92),
            rgba(245, 245, 245, 0.86)
    );
    color: #000;
    border-radius: 20px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-section h2 {
    margin: 0 0 0.25rem;
    text-align: left;
    font-size: clamp(1.05rem, 3vw, 1.5rem);
}

.contact-section-subtitle {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: #555;
}

.contact-section-subtitle a {
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    font-weight: 500;
}

.contact-section-subtitle a:hover {
    border-bottom-color: rgba(0, 0, 0, 0.6);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
}

.contact-form .full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    color: #444;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font: inherit;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, transform 0.08s ease;
}

.contact-form textarea {
    border-radius: 16px;
    min-height: 110px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
    font-size: 0.85rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
    background-color: #fff;
    transform: translateY(-1px);
}

/* скрываем настоящий input file */
#files {
    display: none;
}

/* кастомный выбор файла — просто кнопка */
.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.3rem;
}

.file-upload-button {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: none;
    background: #111;
    color: #fff !important;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: opacity 0.15s ease;
}

.file-upload-button:hover {
    opacity: 0.85;
}

.file-upload-button:active {
    opacity: 0.75;
}

.file-upload-text {
    font-size: 0.8rem;
    color: #444;
}

/* подсветка ошибок */
.input-error {
    border-color: #b3261e !important;
    box-shadow: 0 0 0 1px rgba(179, 38, 30, 0.4) !important;
}

.contact-form button {
    padding: 0.7rem 1.8rem;
    border-radius: 999px;
    border: none;
    background: #111;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: none;
    transition: opacity 0.15s ease;
}

.contact-form button span.arrow {
    font-size: 1rem;
    transform: translateY(1px);
}

.contact-form button:hover:not(:disabled) {
    opacity: 0.85;
}

.contact-form button:active:not(:disabled) {
    opacity: 0.75;
}

.contact-form button:disabled {
    opacity: 0.45;
    cursor: default;
}

.contact-status {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.contact-status.success {
    color: #1a7f37;
}

.contact-status.error {
    color: #b3261e;
}

.contact-form small {
    font-size: 0.72rem;
    color: #777;
}

@media (max-width: 640px) {
    .in-progress .overlay {
        padding: 1.2rem 0.8rem;
    }

    .contact-card {
        padding: 1.1rem 1.2rem 1.4rem;
        border-radius: 16px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .file-upload-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-height: 600px) {
    .in-progress .overlay {
        top: 45%;
    }
}

/* honeypot прячем */
.hp-field {
    position: absolute;
    left: -9999px;
    visibility: hidden;
    height: 0;
    width: 0;
    overflow: hidden;
}

.cookie-notice {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 640px);
    background: rgba(0,0,0,0.9);
    color: #fff;
    border-radius: 14px;
    z-index: 2000;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    padding: 0.8rem 1rem;
}

.cookie-notice-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-notice button {
    border: none;
    background: #fff;
    color: #000;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-notice button:hover {
    opacity: 0.85;
}

@media (max-width: 640px) {
    .cookie-notice-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-notice button {
        align-self: flex-end;
    }
}

.footer-policy {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-policy:hover {
    opacity: 1;
    text-decoration: underline;
}

.industry-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 2.5rem;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.industry-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 1.4rem 1.4rem 1.5rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.industry-icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.industry-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.industry-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

@media (max-width: 900px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.advantages-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 2.75rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.advantage-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.advantage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.12);
}

.advantage-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin-bottom: 0.9rem;
    padding: 0 0.75rem;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.advantage-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
}

.advantage-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
}

.advantages-note {
    margin-top: 1.4rem;
    padding: 1.25rem 1.3rem;
    border-radius: 18px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.advantages-note p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.advantages-cta {
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: 1px solid #fff;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.advantages-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.advantages-cta:active {
    opacity: 0.82;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-note {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .advantages-section {
        padding: 0 0.75rem 2.25rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .advantage-card {
        border-radius: 16px;
        padding: 1.15rem;
    }

    .advantages-note {
        border-radius: 16px;
        padding: 1rem;
    }

    .advantages-cta {
        width: 100%;
        justify-content: center;
    }
}

.workflow-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 2.75rem;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.workflow-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 1.35rem 1.25rem 1.4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.workflow-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.12);
}

.workflow-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    margin-bottom: 0.9rem;
    padding: 0 0.8rem;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.workflow-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
}

.workflow-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
}

.workflow-note {
    margin-top: 1.4rem;
    padding: 1.2rem 1.3rem;
    border-radius: 18px;
    background: #f4f4f4;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.workflow-note p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.workflow-cta {
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: none;
    background: #111;
    color: #fff;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.workflow-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.workflow-cta:active {
    opacity: 0.82;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .workflow-section {
        padding: 0 0.75rem 2.25rem;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .workflow-card {
        border-radius: 16px;
        padding: 1.15rem;
    }

    .workflow-note {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 16px;
        padding: 1rem;
    }

    .workflow-cta {
        width: 100%;
    }
}

.faq-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem 2.75rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
}

.faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 1.15rem 3.25rem 1.15rem 1.2rem;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 500;
    color: #111;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 1.15rem;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-answer {
    padding: 0 1.2rem 1.2rem;
}

.faq-answer p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
}

.faq-note {
    margin-top: 1.4rem;
    padding: 1.2rem 1.3rem;
    border-radius: 18px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-note p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.faq-cta {
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: 1px solid #fff;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.faq-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.faq-cta:active {
    opacity: 0.82;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .faq-section {
        padding: 0 0.75rem 2.25rem;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-item summary {
        padding: 1rem 3rem 1rem 1rem;
        font-size: 0.96rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    .faq-note {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 16px;
        padding: 1rem;
    }

    .faq-cta {
        width: 100%;
    }
}

.industry-note-text {
    text-align:center;
    margin-top:20px;
}

.tile-subtitle {
    color: #777; 
    font-size: 0.9em;
}

.top-bar-nav {
    display: none;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
    margin-right: 1.5rem;
}

.top-bar-nav a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.top-bar-nav a:hover {
    color: #fff;
    opacity: 1;
}

.top-bar-nav {
    gap: 1rem;
    margin-right: 1rem;
}

@media (min-width: 980px) {
    .top-bar-nav {
        display: flex;
    }
}

#products,
#materials,
#faq,
#contact {
    scroll-margin-top: 90px;
}