/* ============================================
   LTP FACTORY — HOMEPAGE STYLES
   Inspired by LecosFlow.com
   Dark Navy #181C2F | Accent #00a9e3
   ============================================ */

/* ===== SHARED UTILITIES ===== */
.ltp-section-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00a9e3;
    background: rgba(0, 169, 227, 0.1);
    border: 1px solid rgba(0, 169, 227, 0.25);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.ltp-section-badge--light {
    color: #00a9e3;
    background: rgba(0, 169, 227, 0.08);
    border-color: rgba(0, 169, 227, 0.2);
}

.ltp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ltp-btn--white {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: none;
}
.ltp-btn--white:hover {
    background-color: #f1f5f9;
    color: rgb(0, 0, 0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.ltp-btn--accent {
    background: #00a9e3;
    color: #fff;
    border-color: #00a9e3;
}
.ltp-btn--accent:hover {
    background: #0090c5;
    border-color: #0090c5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 169, 227, 0.35);
    color: #fff;
}

.ltp-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}
.ltp-btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    color: #fff;
}

.ltp-btn--accent-ghost {
    background: transparent;
    color: #00a9e3;
    border-color: #00a9e3;
    padding: 11px 26px;
}
.ltp-btn--accent-ghost:hover {
    background: #00a9e3;
    color: #fff;
}

.ltp-btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== HERO ===== */
.ltp-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #181C2F;
}

.ltp-hero__bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ltp-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.75;
    transition: opacity 0.5s ease;
}

.ltp-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(24, 28, 47, 0.45) 0%,
        rgba(24, 28, 47, 0.65) 70%,
        rgba(24, 28, 47, 0.85) 100%
    );
}

.ltp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    padding-top: 140px;
    padding-bottom: 70px;
    width: 100%;
}

.ltp-hero__badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #00a9e3;
    border: 1px solid rgba(0,169,227,0.5);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
    background: rgba(0,169,227,0.08);
}

.ltp-hero__title {
    display: inline-block;
    font-family: "League Spartan", Arial, Helvetica, sans-serif;
    font-size: 62px;
    font-weight: 400;
    line-height: 1.15;
    color: rgb(255, 255, 255);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

@media (max-width: 1279px) and (min-width: 768px) {
    .ltp-hero__title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .ltp-hero__title {
        font-size: 34px;
    }
}

.ltp-hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.ltp-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.ltp-hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 32px;
    max-width: 480px;
}

.ltp-hero__stat {
    display: flex;
    flex-direction: column;
    padding: 0 28px;
}

.ltp-hero__stat:first-child {
    padding-left: 0;
}

.ltp-hero__stat-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: #00a9e3;
    line-height: 1;
    margin-bottom: 4px;
}

.ltp-hero__stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ltp-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.18);
}

.ltp-hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.ltp-hero__scroll-hint span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    position: relative;
}

.ltp-hero__scroll-hint span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #00a9e3;
    border-radius: 2px;
    animation: scrollHint 1.8s ease infinite;
}

@keyframes scrollHint {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 18px; }
}

/* ===== ABOUT US ===== */
.ltp-about {
    background: #ffffff;
    padding: 80px 0 40px;
    position: relative;
}

.ltp-about__header {
    text-align: center;
    margin-bottom: 70px;
}

.ltp-about__main-title {
    display: inline-block;
    font-family: "League Spartan", Arial, Helvetica, sans-serif;
    font-size: 55px;
    font-weight: 700;
    color: #181C2F !important;
    text-transform: unset;
    letter-spacing: unset;
    margin: 0;
    box-sizing: border-box;
}

.ltp-about__title-line {
    width: 50px;
    height: 3px;
    background: #cbd5e1;
    margin: 16px auto 0;
    border-radius: 2px;
}

.ltp-about__blocks {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.ltp-about__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.ltp-about__col-img {
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ltp-about__block-img {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

.ltp-about__col-img:hover .ltp-about__block-img {
    transform: scale(1.02);
}

.ltp-about__block-title {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: rgb(24, 28, 47);
    margin-bottom: 24px;
    letter-spacing: normal;
    box-sizing: border-box;
}

.ltp-about__block-desc {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(0, 0, 0);
    letter-spacing: normal;
    margin: 0;
    box-sizing: border-box;
}

.ltp-about__block-desc p {
    margin: 0 0 12px 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

.ltp-about__block-desc p:last-child {
    margin-bottom: 0;
}

.ltp-about__bullet-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ltp-about__bullet-list li,
.ltp-about__bullet-list ul li {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(0, 0, 0);
    letter-spacing: normal;
}

.ltp-about__bullet-list ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ltp-about__quote {
    font-size: 1.1rem;
    font-weight: 700;
    color: #181C2F;
    margin-bottom: 16px;
    font-style: italic;
}

@media (max-width: 992px) {
    .ltp-about__row {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ltp-about__row--reverse .ltp-about__col-img {
        order: -1;
    }

    .ltp-about__col-img {
        padding: 4px;
        border-radius: 8px;
    }

    .ltp-about__block-img {
        max-height: 320px;
        height: auto;
    }
}

.ltp-about__accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00a9e3, transparent);
}

.ltp-about__media {
    position: relative;
}

.ltp-about__badge-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #00a9e3;
    color: #fff;
    padding: 16px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0,169,227,0.3);
}

.ltp-about__badge-float i {
    font-size: 1.5rem;
}

.ltp-about__badge-float strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.ltp-about__badge-float small {
    font-size: 0.72rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== PRODUCT CATEGORIES GRID ===== */
.ltp-products {
    background: #f8fafc;
    padding: 60px 0 90px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.ltp-cat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
}

.ltp-cat-card {
    position: relative;
    width: 500px;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #f1f5f9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ltp-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.ltp-cat-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ltp-cat-card:hover .ltp-cat-card__img {
    transform: scale(1.05);
}

.ltp-cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.48) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: background 0.3s ease;
}

.ltp-cat-card:hover .ltp-cat-card__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.ltp-cat-card__name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
    margin: 0;
    text-align: center;
    word-break: break-word;
}

@media (max-width: 768px) {
    .ltp-cat-grid {
        gap: 20px;
    }
    .ltp-cat-card {
        width: 100%;
        aspect-ratio: 16 / 10;
        height: auto;
    }
}

/* ===== WHY US (SERVICES) ===== */
.ltp-why-us {
    background: #ffffff;
    padding: 85px 0 100px;
    position: relative;
}

.ltp-why-us__header {
    text-align: center;
    margin-bottom: 60px;
}

.ltp-why-us__main-title {
    display: inline-block;
    font-family: "League Spartan", Arial, Helvetica, sans-serif;
    font-size: 55px;
    font-weight: 700;
    color: #181C2F !important;
    text-transform: unset;
    letter-spacing: unset;
    margin: 0;
    box-sizing: border-box;
}

.ltp-why-us__title-line {
    width: 50px;
    height: 3px;
    background: #cbd5e1;
    margin: 16px auto 0;
    border-radius: 2px;
}

.ltp-why-us__grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.ltp-why-us__col-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ltp-why-us__p {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(0, 0, 0);
    letter-spacing: normal;
    margin: 0;
    box-sizing: border-box;
}

.ltp-why-us__p p {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

.ltp-why-us__col-img {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ltp-why-us__img {
    width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.ltp-why-us__col-img:hover .ltp-why-us__img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .ltp-why-us__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ltp-why-us__img {
        aspect-ratio: 3 / 2;
        height: auto;
    }
}

.ltp-products__right-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ltp-products__top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 1;
}

.ltp-product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    background: #181C2F;
}

.ltp-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.4s ease;
    opacity: 0.85;
}

.ltp-product-card:hover img {
    transform: scale(1.06);
    opacity: 0.6;
}

.ltp-product-card--big {
    height: 520px;
}

.ltp-product-card--medium {
    height: 250px;
}

.ltp-product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24,28,47,0.9) 0%, rgba(24,28,47,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: background 0.3s ease;
}

.ltp-product-card:hover .ltp-product-card__overlay {
    background: linear-gradient(to top, rgba(0,169,227,0.5) 0%, rgba(24,28,47,0.4) 60%, transparent 100%);
}

.ltp-product-card__content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0;
}

.ltp-product-card__content p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    transform: translateY(6px);
    opacity: 0;
    transition: all 0.3s ease;
}

.ltp-product-card:hover .ltp-product-card__content p {
    opacity: 1;
    transform: translateY(0);
}

.ltp-products__cta {
    text-align: center;
    margin-top: 48px;
    padding-bottom: 20px;
}

/* ===== CORE BUSINESS SEGMENTS ===== */
.ltp-segments {
    background: #f0f0f0;
    padding: 65px 0 85px;
}

.ltp-segments__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ltp-segments__title {
    display: block;
    width: 100%;
    font-family: "League Spartan", Arial, Helvetica, sans-serif;
    font-size: 55px;
    font-weight: 700;
    color: #181C2F !important;
    text-transform: unset;
    letter-spacing: unset;
    margin-bottom: 50px;
    text-align: center;
    box-sizing: border-box;
}

.ltp-segments__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.ltp-segments__item {
    flex: 0 1 33.333%;
    box-sizing: border-box;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ltp-segments__item:first-child {
    padding-left: 20px;
}

.ltp-segments__item:last-child {
    padding-right: 20px;
}

.ltp-segments__item--bordered {
    border-left: 1px solid #cccccc;
}

.ltp-segments__icon {
    font-size: 4.2rem;
    color: #c82408;
    line-height: 1;
    margin-bottom: 24px;
}

.ltp-segments__name {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 18px;
    text-align: center;
}

.ltp-segments__desc {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #334155;
    letter-spacing: normal;
    margin: 0;
    text-align: left;
    box-sizing: border-box;
}

.ltp-segments__desc p {
    margin: 0 0 8px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.ltp-segments__desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .ltp-segments {
        padding: 50px 0 65px;
    }

    .ltp-segments__title {
        font-size: 36px !important;
        margin-bottom: 32px;
    }

    .ltp-segments__grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .ltp-segments__item {
        flex: 1 1 100%;
        width: 100%;
        max-width: 540px;
        background: #ffffff;
        border-radius: 12px;
        padding: 32px 24px;
        border: 1px solid #e2e8f0;
        border-left: 1px solid #e2e8f0 !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        box-sizing: border-box;
    }

    .ltp-segments__item:first-child {
        padding-left: 24px;
    }

    .ltp-segments__item:last-child {
        padding-right: 24px;
    }

    .ltp-segments__icon {
        font-size: 3.4rem;
        margin-bottom: 18px;
    }

    .ltp-segments__name {
        font-size: 1.25rem;
        margin-bottom: 14px;
    }

    .ltp-segments__desc {
        font-size: 15px;
        line-height: 1.65;
        color: #334155;
        text-align: left;
    }
}

/* ===== PARTNERS & CLIENTS SECTION ===== */
.ltp-partners {
    background: #ffffff;
    padding: 60px 0 70px;
    border-top: 1px solid #e2e8f0;
}

.ltp-partner-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 28px;
}

.ltp-partner-row:last-child {
    margin-bottom: 0;
}

.ltp-partner-row__label {
    width: 150px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ltp-partner-row__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.ltp-partner-row__line {
    width: 32px;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
    margin-top: 6px;
}

.ltp-partner-row__slider-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ltp-partner-row__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 6px;
}

.ltp-partner-row__track::-webkit-scrollbar {
    display: none;
}

.ltp-partner-box {
    flex-shrink: 0;
    width: 180px;
    height: 72px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ltp-partner-box:hover {
    border-color: #9ca3af;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ltp-partner-box img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

.ltp-partner-box__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #374151;
    text-align: center;
    line-height: 1.2;
}

.ltp-slider-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    padding: 0 10px;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.ltp-slider-btn:hover {
    color: #111827;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .ltp-partner-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .ltp-partner-row__label {
        width: 100%;
    }
    .ltp-partner-row__slider-wrap {
        width: 100%;
    }
}

/* ===== CONTACT SECTION ===== */
.ltp-contact {
    background: #f8fafc;
    padding: 85px 0 110px;
    border-top: 1px solid #e2e8f0;
}

.ltp-contact__header {
    text-align: center;
    margin-bottom: 60px;
}

.ltp-contact__main-title {
    display: inline-block;
    font-family: "League Spartan", Arial, Helvetica, sans-serif;
    font-size: 55px;
    font-weight: 700;
    color: #181C2F !important;
    text-transform: unset;
    letter-spacing: unset;
    margin: 0;
    box-sizing: border-box;
}

.ltp-contact__title-line {
    width: 50px;
    height: 3px;
    background: #cbd5e1;
    margin: 16px auto 0;
    border-radius: 2px;
}

.ltp-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

.ltp-contact__subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #181C2F;
    margin-bottom: 18px;
}

.ltp-contact__feel-free {
    font-size: 1rem;
    color: rgb(21, 21, 21);
    line-height: 1.7;
    margin-bottom: 28px;
}

.ltp-contact__company-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: rgb(21, 21, 21);
    margin-bottom: 12px;
}

.ltp-contact__text-lines p {
    font-size: 1rem;
    color: rgb(21, 21, 21);
    line-height: 1.7;
    margin: 0 0 6px 0;
}

.ltp-contact__hours-block {
    margin-top: 28px;
}

.ltp-contact__hours-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: rgb(21, 21, 21);
    margin-bottom: 12px;
}

.ltp-contact__hours-text {
    font-size: 0.98rem;
    color: rgb(21, 21, 21);
    line-height: 1.8;
}

.ltp-contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ltp-form-input,
.ltp-form-textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ltp-form-input::placeholder,
.ltp-form-textarea::placeholder {
    color: #64748b;
}

.ltp-form-input:focus,
.ltp-form-textarea:focus {
    border-color: #00a9e3;
    box-shadow: 0 0 0 3px rgba(0, 169, 227, 0.15);
}

.ltp-form-input.is-error,
.ltp-form-textarea.is-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.error-feedback {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 500;
    text-align: left;
}

.ltp-form-textarea {
    resize: vertical;
    min-height: 140px;
}

.ltp-contact__btn-send {
    width: 100%;
    height: 52px;
    background: #000000;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.ltp-contact__btn-send:hover {
    background: #27272a;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .ltp-about__grid {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .ltp-hero {
        min-height: 80vh;
    }

    .ltp-hero__content {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .ltp-about {
        padding: 72px 0;
    }

    .ltp-about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ltp-about__media {
        order: -1;
    }

    .ltp-about__img {
        height: 340px;
    }

    .ltp-about__badge-float {
        bottom: -15px;
        left: 10px;
    }

    .ltp-products__mosaic {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .ltp-product-card--big {
        height: 360px;
    }

    .ltp-segments__grid {
        flex-direction: column;
        gap: 16px;
    }

    .ltp-contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .ltp-about__main-title,
    .ltp-segments__title,
    .ltp-why-us__main-title,
    .ltp-contact__main-title {
        font-size: 38px !important;
    }

    .ltp-hero {
        min-height: 100svh;
    }

    .ltp-hero__content {
        padding-top: 90px;
    }

    .ltp-hero__title {
        font-size: 2rem;
    }

    .ltp-hero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .ltp-hero__actions .ltp-btn {
        width: 100%;
        justify-content: center;
    }

    .ltp-hero__stats {
        gap: 0;
    }

    .ltp-hero__stat {
        padding: 0 16px;
    }

    .ltp-hero__stat-num {
        font-size: 1.5rem;
    }

    .ltp-products__top-row {
        grid-template-columns: 1fr;
    }

    .ltp-product-card--medium {
        height: 220px;
    }

    .ltp-segment-card {
        padding: 32px 24px;
    }

    .ltp-contact__form-wrap {
        padding: 28px 20px;
    }

    .ltp-contact__info {
        padding: 0 20px;
    }

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

    /* Center about blocks text and titles consistently on mobile */
    .ltp-about__col-text {
        text-align: center;
    }

    .ltp-about__block-title {
        text-align: center !important;
        font-size: 26px !important;
        line-height: 32px !important;
        margin-bottom: 16px !important;
    }

    .ltp-about__block-desc {
        text-align: center !important;
    }

    .ltp-about__quote {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .ltp-about__bullet-list {
        display: inline-block !important;
        text-align: left !important;
        padding-left: 24px !important;
        margin: 0 auto !important;
    }
}

/* Contact info section label style */
.ltp-contact__info-label {
    display: block;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    color: rgb(21, 21, 21);
    letter-spacing: normal;
    line-height: 30px;
    margin-bottom: 8px;
    font-size: 24px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .ltp-contact__info-label {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .ltp-contact__info-label {
        font-size: 22px;
    }
}

@media (min-width: 1280px) {
    .ltp-contact__info-label {
        font-size: 22px;
    }
}

@media (min-width: 1536px) {
    .ltp-contact__info-label {
        font-size: 24px;
    }
}
