
:root {
    --home-primary: #06275b;       
    --home-primary-dark: #041d45;  
    --home-accent: #ea550a;        
    --home-accent-dark: #c4470a;   
    --home-secondary: #0e76bc;     
    --home-text: #555;             
    --home-heading: #111;          
    --home-white: #fff;
    --home-bg: #ffffff;            
    --home-bg-alt: #f7f8fa;        
    --home-bg-dark: #06275b;       
    --home-border: #e5e7eb;        
    --home-border-dark: rgba(255, 255, 255, 0.12); 

    --home-section-pad: 48px 0;    
    --home-container-max: 1200px;
    --home-gap: 20px;              

    --home-radius-sm: 6px;
    --home-radius-md: 12px;
    --home-radius-lg: 20px;

    --home-transition: 0.3s ease;
    --home-transition-slow: 0.5s ease;

    --home-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --home-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --home-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --home-shadow-hover: 0 8px 30px rgba(6, 39, 91, 0.15);
}

.home-section {
    padding: var(--home-section-pad);
    overflow-x: hidden;
}

.home-section--dark {
    background-color: var(--home-bg-dark);
    color: rgba(255, 255, 255, 0.85);
}

.home-section--dark .home-section-head h2,
.home-section--dark .home-section-head h3 {
    color: var(--home-white);
}

.home-section--alt {
    background-color: var(--home-bg-alt);
}

.home-container {
    width: 100%;
    max-width: var(--home-container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.home-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.home-section-head--left {
    text-align: left;
    margin-left: 0;
}

.home-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--home-accent);
    margin-bottom: 12px;
}

.home-section--dark .home-eyebrow {
    color: var(--home-accent);
}

.home-section-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--home-heading);
    margin: 0 0 16px;
}

.home-section--dark .home-section-title {
    color: var(--home-white);
}

.home-section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--home-text);
    margin: 0;
}

.home-section--dark .home-section-desc {
    color: rgba(255, 255, 255, 0.75);
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--home-radius-sm);
    transition: var(--home-transition);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1.4;
}

.home-btn--primary {
    background-color: var(--home-accent);
    color: var(--home-white);
    border-color: var(--home-accent);
}

.home-btn--primary:hover {
    background-color: var(--home-accent-dark);
    border-color: var(--home-accent-dark);
    color: var(--home-white);
    transform: translateY(-2px);
    box-shadow: var(--home-shadow-md);
}

.home-btn--secondary {
    background-color: transparent;
    color: var(--home-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.home-btn--secondary:hover {
    background-color: var(--home-white);
    color: var(--home-primary);
    border-color: var(--home-white);
}

.home-btn--outline {
    background-color: transparent;
    color: var(--home-primary);
    border-color: var(--home-primary);
}

.home-btn--outline:hover {
    background-color: var(--home-primary);
    color: var(--home-white);
    border-color: var(--home-primary);
}

.home-btn i {
    font-size: 18px;
}

.home-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--home-primary-dark);
}

.home-hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.home-hero__slide {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

/* 首屏 slide 的 LCP 背景图：绝对定位铺满，与原 background-image 视觉一致 */
.home-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.home-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 39, 91, 0.92) 0%, rgba(6, 39, 91, 0.75) 50%, rgba(6, 39, 91, 0.6) 100%);
    z-index: 1;
}

.home-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--home-container-max);
    margin: 0 auto;
    padding: 100px 20px 80px;
}

.home-hero__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--home-accent);
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(234, 85, 10, 0.15);
    border: 1px solid rgba(234, 85, 10, 0.4);
    border-radius: var(--home-radius-sm);
}

.home-hero__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--home-white);
    margin: 0 0 20px;
    max-width: 800px;
}

.home-hero__title span {
    color: var(--home-accent);
}

.home-hero__subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
    max-width: 640px;
}

.home-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-hero__slider .slick-prev,
.home-hero__slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--home-white);
    cursor: pointer;
    opacity: 0.9;
    transition: background var(--home-transition), border-color var(--home-transition), color var(--home-transition), opacity var(--home-transition);
}

.home-hero__slider .slick-prev { left: 16px; }
.home-hero__slider .slick-next { right: 16px; }

.home-hero__slider .slick-prev::before,
.home-hero__slider .slick-next::before {
    font-family: "IcoFont";
    font-size: 22px;
    line-height: 1;
    color: inherit;
    opacity: 1;
}

.home-hero__slider .slick-prev::before { content: "\ea9d"; } 
.home-hero__slider .slick-next::before { content: "\eaa0"; } 

.home-hero__slider .slick-prev:hover,
.home-hero__slider .slick-next:hover {
    background: var(--home-accent);
    border-color: var(--home-accent);
    color: var(--home-white);
    opacity: 1;
}

.home-hero__slider .slick-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-hero__slider .slick-dots li {
    margin: 0;
}

.home-hero__slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    background: transparent;
    color: transparent;
    cursor: pointer;
    outline: none;
    transition: width var(--home-transition), background var(--home-transition), border-color var(--home-transition), border-radius var(--home-transition);
}

.home-hero__slider .slick-dots li button:before {
    content: none;
}

.home-hero__slider .slick-dots li button:hover {
    border-color: var(--home-accent);
}

.home-hero__slider .slick-dots li.slick-active button {
    width: 28px;
    border-radius: 6px;
    background: var(--home-accent);
    border-color: var(--home-accent);
}

.home-trust {
    background-color: var(--home-primary);
    padding: 40px 0;
}

.home-trust__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

.home-trust__item {
    padding: 16px 12px;
}

.home-trust__number {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--home-white);
    line-height: 1;
    margin: 0 0 8px;
}

.home-trust__number span {
    color: var(--home-accent);
}

.home-trust__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.home-trust__note {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 8px 0 0;
}

.home-clients__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.home-clients__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    margin: 0;
    padding: 28px 20px;
    background-color: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    transition: border-color var(--home-transition), box-shadow var(--home-transition);
}

.home-clients__item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.65;
    transition: filter var(--home-transition), opacity var(--home-transition);
}

.home-clients__item:hover {
    border-color: var(--home-primary);
    box-shadow: var(--home-shadow-hover);
}

.home-clients__item:hover img {
    filter: none;
    opacity: 1;
}

.home-clients__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

@media (hover: none) {
    .home-clients__item img {
        filter: none;
        opacity: 1;
    }
}

.home-capacity__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.home-capacity__text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--home-text);
    margin: 0 0 16px;
}

.home-capacity__text p:last-child {
    margin-bottom: 0;
}

.home-capacity__tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.home-capacity__tile {
    background-color: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: border-color var(--home-transition), box-shadow var(--home-transition), transform var(--home-transition);
}

.home-capacity__tile:hover {
    border-color: var(--home-primary);
    box-shadow: var(--home-shadow-hover);
    transform: translateY(-2px);
}

.home-capacity__icon {
    display: block;
    font-size: 24px;
    color: var(--home-accent);
    margin-bottom: 12px;
}

.home-capacity__number {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--home-primary);
    line-height: 1;
    margin: 0 0 8px;
}

.home-capacity__number span {
    font-size: 18px;
    color: var(--home-accent);
}

.home-capacity__label {
    font-size: 13px;
    color: var(--home-text);
    line-height: 1.4;
    margin: 0;
}

.home-company__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.home-company__media {
    position: relative;
    border-radius: var(--home-radius-md);
    overflow: hidden;
    box-shadow: var(--home-shadow-md);
}

.home-company__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-company__video {
    position: relative;
    display: block;
}

.home-company__video img {
    transition: var(--home-transition-slow);
}

.home-company__video:hover img {
    transform: scale(1.05);
}

.home-company__video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--home-accent);
    color: var(--home-white);
    font-size: 30px;
    transition: var(--home-transition);
    animation: home-company-video-pulse 2.4s ease-out infinite;
}

.home-company__video-play i {
    margin-left: 4px; 
}

.home-company__video:hover .home-company__video-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--home-accent-dark);
}

@keyframes home-company-video-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 85, 10, 0.45);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(234, 85, 10, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(234, 85, 10, 0);
    }
}

.home-company__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--home-white);
    padding: 16px 24px;
    border-radius: var(--home-radius-sm);
    box-shadow: var(--home-shadow-md);
    text-align: center;
}

.home-company__badge-number {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--home-primary);
    line-height: 1;
    display: block;
}

.home-company__badge-text {
    font-size: 12px;
    color: var(--home-text);
    margin: 4px 0 0;
    display: block;
}

.home-company__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--home-text);
    margin: 0 0 16px;
}

.home-company__scope {
    list-style: none;
    padding: 0;
    margin: 24px 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.home-company__scope li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--home-heading);
    line-height: 1.5;
}

.home-company__scope i {
    color: var(--home-accent);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.home-company__brands {
    font-size: 13px;
    color: var(--home-text);
    margin: 0 0 28px;
    line-height: 1.7;
}

.home-company__brands strong {
    display: block;
    color: var(--home-primary);
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: 0.3px;
}


.home-solutions__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.home-solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--home-border-dark);
    border-radius: var(--home-radius-md);
    padding: 32px 24px;
    transition: var(--home-transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.home-solution-card:hover {
    background: rgba(234, 85, 10, 0.1);
    border-color: var(--home-accent);
    transform: translateY(-4px);
}

.home-solution-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 85, 10, 0.15);
    border-radius: var(--home-radius-sm);
    margin-bottom: 20px;
}

.home-solution-card__icon i {
    font-size: 28px;
    color: var(--home-accent);
}

.home-solution-card__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--home-white);
    margin: 0 0 12px;
}

.home-solution-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px;
}

.home-solution-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--home-accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-solution-card__link i {
    font-size: 16px;
    transition: var(--home-transition);
}

.home-solution-card:hover .home-solution-card__link i {
    transform: translateX(4px);
}

.home-products__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--home-gap);
}

.home-product-card {
    position: relative;
    background: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    overflow: hidden;
    transition: var(--home-transition);
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: var(--home-shadow-sm);
}

.home-product-card:hover {
    box-shadow: var(--home-shadow-hover);
    transform: translateY(-4px);
    border-color: var(--home-accent);
}

.home-product-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--home-bg-alt);
}

.home-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--home-transition-slow);
}

.home-product-card:hover .home-product-card__media img {
    transform: scale(1.08);
}

.home-product-card__body {
    padding: 20px;
}

.home-product-card__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--home-heading);
    margin: 0 0 8px;
    line-height: 1.4;
}

.home-product-card:hover .home-product-card__title {
    color: var(--home-accent);
}

.home-product-card__title a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
}

.home-product-card__title a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home-product-card__excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: var(--home-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.home-products__cta {
    text-align: center;
    margin-top: 40px;
}

.home-products__empty {
    text-align: center;
    padding: 40px 20px;
    grid-column: 1 / -1;
}

.home-products__empty p {
    color: var(--home-text);
    margin: 0 0 20px;
}

.case-machine {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 40px;
    flex-wrap: wrap;
    background: var(--home-white);
    border: 1px solid var(--home-border);
    border-left: 4px solid var(--home-accent);
    border-radius: var(--home-radius-md);
    padding: 24px 28px;
    box-shadow: var(--home-shadow-sm);
}

.case-machine__note {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--home-text);
    max-width: 560px;
}

.case-machine__link {
    display: block;
    margin-bottom: 8px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--home-heading);
    text-decoration: none;
    transition: var(--home-transition);
}

.case-machine__link:hover {
    color: var(--home-accent);
}

.case-machine__more {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--home-text);
    text-decoration: none;
    transition: var(--home-transition);
}

.case-machine__more:hover {
    color: var(--home-accent);
}

.home-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.home-why-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--home-radius-md);
    background: var(--home-white);
    border: 1px solid var(--home-border);
    transition: var(--home-transition);
}

.home-why-card:hover {
    box-shadow: var(--home-shadow-hover);
    border-color: var(--home-secondary);
}

.home-why-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--home-primary), var(--home-secondary));
    border-radius: 50%;
}

.home-why-card__icon i {
    font-size: 28px;
    color: var(--home-white);
}

.home-why-card__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--home-heading);
    margin: 0 0 12px;
}

.home-why-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--home-text);
    margin: 0;
}

.home-factory__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.home-factory__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--home-radius-md);
    aspect-ratio: 4 / 3;
}

.home-factory__item--large {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.home-factory__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--home-transition-slow);
}

.home-factory__item:hover img {
    transform: scale(1.1);
}

.home-factory__item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(6, 39, 91, 0.9), transparent);
    color: var(--home-white);
    font-size: 14px;
    font-weight: 600;
}

.home-apps__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.home-app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px;
    background: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    transition: var(--home-transition);
    text-decoration: none;
    color: inherit;
}

.home-app-card:hover {
    box-shadow: var(--home-shadow-hover);
    transform: translateY(-4px);
    border-color: var(--home-secondary);
}

.home-app-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--home-bg-alt);
    border-radius: 50%;
    margin-bottom: 16px;
}

.home-app-card:hover .home-app-card__icon {
    background: var(--home-primary);
}

.home-app-card__icon i {
    font-size: 24px;
    color: var(--home-primary);
    transition: var(--home-transition);
}

.home-app-card:hover .home-app-card__icon i {
    color: var(--home-white);
}

.home-app-card__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--home-heading);
    margin: 0;
}

.home-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.home-faq__item {
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--home-white);
    transition: var(--home-transition);
}

.home-faq__item:hover {
    border-color: var(--home-secondary);
}

.home-faq__item.is-open {
    border-color: var(--home-accent);
}

.home-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--home-heading);
    line-height: 1.5;
}

.home-faq__question i {
    font-size: 18px;
    color: var(--home-accent);
    flex-shrink: 0;
    transition: var(--home-transition);
}

.home-faq__item.is-open .home-faq__question i {
    transform: rotate(180deg);
}

.home-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.home-faq__answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--home-text);
}

.home-cta {
    position: relative;
    background-color: var(--home-primary-dark);
    overflow: hidden;
}

.home-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.home-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.home-cta__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--home-white);
    line-height: 1.3;
    margin: 0 0 16px;
}

.home-cta__subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px;
}

.home-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.home-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    :root {
        --home-section-pad: 64px 0;
    }

    .home-hero__slide {
        min-height: 560px;
    }

    .home-hero__content {
        padding: 120px 20px 100px;
    }

    .home-hero__slider .slick-prev,
    .home-hero__slider .slick-next {
        width: 50px;
        height: 50px;
    }

    .home-hero__slider .slick-prev { left: 28px; }
    .home-hero__slider .slick-next { right: 28px; }

    .home-hero__eyebrow {
        font-size: 14px;
    }

    .home-hero__title {
        font-size: 44px;
    }

    .home-hero__subtitle {
        font-size: 17px;
    }

    .home-section-title {
        font-size: 32px;
    }

    .home-section-desc {
        font-size: 17px;
    }

    .home-btn {
        padding: 16px 36px;
        font-size: 16px;
    }

    .home-trust__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-clients__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-clients__item:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .home-capacity__grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .home-capacity__number {
        font-size: 36px;
    }

    .home-trust__number {
        font-size: 42px;
    }

    .home-company__grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .home-company__scope {
        grid-template-columns: 1fr 1fr;
    }

    .home-solutions__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-factory__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .home-factory__item--large {
        grid-column: span 2;
    }

    .home-factory__item {
        aspect-ratio: auto;
    }

    .home-apps__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-cta__title {
        font-size: 34px;
    }

}

@media (min-width: 992px) {
    :root {
        --home-section-pad: 80px 0;
    }

    .home-hero__slide {
        min-height: 640px;
    }

    .home-hero__content {
        padding: 170px 20px 120px;
    }

    .home-hero__slider .slick-prev,
    .home-hero__slider .slick-next {
        width: 56px;
        height: 56px;
    }

    .home-hero__slider .slick-prev::before,
    .home-hero__slider .slick-next::before {
        font-size: 24px;
    }

    .home-hero__title {
        font-size: 52px;
    }

    .home-hero__subtitle {
        font-size: 18px;
    }

    .home-section-title {
        font-size: 36px;
    }

    .home-trust__number {
        font-size: 48px;
    }

    .home-clients__grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .home-solutions__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-why__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-factory__grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 190px;
    }

    .home-factory__item--large {
        grid-column: span 2;
    }

    .home-apps__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-cta__title {
        font-size: 38px;
    }

}

@media (min-width: 1200px) {
    :root {
        --home-section-pad: 100px 0;
    }

    .home-factory__grid {
        grid-auto-rows: 210px;
    }

    .home-hero__title {
        font-size: 56px;
    }

    .home-section-title {
        font-size: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-product-card:hover .home-product-card__media img,
    .home-factory__item:hover img,
    .home-solution-card:hover,
    .home-product-card:hover,
    .home-app-card:hover,
    .home-why-card:hover,
    .home-btn--primary:hover {
        transform: none;
    }

    .home-hero__slider .slick-slide {
        transition: none;
    }
}

.pro-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 40px;
}

.pro-cat {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--home-text);
    background: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: 100px;
    text-decoration: none;
    transition: var(--home-transition);
}

.pro-cat:hover {
    color: var(--home-primary);
    border-color: var(--home-primary);
}

.pro-cat.is-active {
    color: var(--home-white);
    background: var(--home-primary);
    border-color: var(--home-primary);
}

.pro-cats--cases {
    margin-bottom: 12px;
}

.pro-cats--cases + .pro-cats--cases {
    margin-bottom: 40px;
}

.pro-cats__label {
    align-self: center;
    margin-right: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--home-text);
    opacity: 0.7;
}

.pro-cat__count {
    margin-left: 6px;
    font-size: 11px;
    font-weight: 700;
    opacity: 0.65;
}


.pro-matrix__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--home-heading);
    margin: 8px 0 24px;
}

.pro-pagination {
    margin-top: 48px;
}

.pro-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-pagination ul.page-numbers li {
    margin: 0;
}

.pro-pagination a.page-numbers,
.pro-pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--home-text);
    background: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-sm);
    text-decoration: none;
    transition: var(--home-transition);
}

.pro-pagination a.page-numbers:hover {
    color: var(--home-white);
    background: var(--home-primary);
    border-color: var(--home-primary);
}

.pro-pagination span.page-numbers.current {
    color: var(--home-white);
    background: var(--home-accent);
    border-color: var(--home-accent);
}

.pro-pagination span.page-numbers.dots {
    border: none;
    background: transparent;
}


.home-section.pro-single {
    overflow: visible;
}

.pro-single__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 56px;
}

.pro-single__info {
    align-self: start;
}

.pro-single__main-img {
    border-radius: var(--home-radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--home-shadow-md);
    background: var(--home-bg-alt);
    border: 1px solid var(--home-border);
    aspect-ratio: 4 / 3;
}

.pro-single__main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.pro-single__main-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--home-primary);
    cursor: pointer;
    box-shadow: var(--home-shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.pro-single__main-arrow--prev {
    left: 14px;
}

.pro-single__main-arrow--next {
    right: 14px;
}

.pro-single__main-arrow i {
    font-size: 20px;
    line-height: 1;
}

.pro-single__main-arrow:hover {
    color: var(--home-accent);
}

.pro-single__main-img:hover .pro-single__main-arrow,
.pro-single__main-arrow:focus-visible {
    opacity: 1;
    pointer-events: auto;
}

@supports not (aspect-ratio: 1) {
    .pro-single__main-img img {
        height: auto;
    }
}

.pro-single__thumbs {
    display: grid;
    position: relative;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.pro-single__thumb {
    padding: 0;
    aspect-ratio: 4 / 3;
    border: 2px solid var(--home-border);
    border-radius: var(--home-radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: var(--home-white);
    transition: var(--home-transition);
}

.pro-single__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pro-single__thumb-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--home-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--home-primary);
    cursor: pointer;
    box-shadow: var(--home-shadow-sm);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pro-single__thumb-side--prev {
    left: 8px;
}

.pro-single__thumb-side--next {
    right: 8px;
}

.pro-single__thumb-side i {
    font-size: 14px;
    line-height: 1;
}

.pro-single__thumb-side:hover {
    color: var(--home-accent);
    border-color: var(--home-accent);
}

.pro-single__thumbs:hover .pro-single__thumb-side,
.pro-single__thumb-side:focus-visible {
    opacity: 1;
    pointer-events: auto;
}

.pro-single__thumbs:hover .pro-single__thumb-side[disabled],
.pro-single__thumb-side:focus-visible[disabled] {
    opacity: 0.35;
    pointer-events: none;
}

@media (hover: none) {
    .pro-single__thumb-side,
    .pro-single__main-arrow {
        opacity: 1;
        pointer-events: auto;
    }

    .pro-single__thumb-side[disabled] {
        opacity: 0.35;
        pointer-events: none;
    }
}

.pro-single__thumb:hover {
    border-color: var(--home-secondary);
}

.pro-single__thumb.is-active {
    border-color: var(--home-accent);
}

.pro-single__panel {
    background: var(--home-bg-alt);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    padding: 28px 24px;
}

.pro-single__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.pro-single__cat {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--home-primary);
    background: rgba(6, 39, 91, 0.08);
    border: 1px solid rgba(6, 39, 91, 0.15);
    padding: 5px 12px;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--home-transition);
}

.pro-single__cat:hover {
    background: var(--home-primary);
    color: var(--home-white);
}

.pro-single__title {
    font-size: 26px;
    line-height: 1.25;
    color: var(--home-heading);
    margin: 0 0 14px;
}

.pro-single__excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: var(--home-text);
    margin: 0 0 22px;
}

.pro-single__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pro-single__wa {
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    justify-content: flex-start;
}

.pro-single__wa .con-wa-icon {
    color: #25d366;
    flex-shrink: 0;
}

.pro-single__facts {
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
    border-top: 1px solid var(--home-border);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.pro-single__facts li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--home-heading);
    line-height: 1.5;
}

.pro-single__facts i {
    color: var(--home-accent);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.page-body {
    border-top: 1px solid var(--home-border);
    padding-top: 40px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--home-text);
    max-width: 860px;
}

.page-body h2,
.page-body h3,
.page-body h4 {
    color: var(--home-heading);
    margin: 32px 0 14px;
}

.page-body h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 40px 0 16px;
    padding-left: 14px;
    border-left: 4px solid var(--home-accent);
}

.page-body > h2:first-child {
    margin-top: 0;
}

.page-body h3 {
    font-size: 20px;
}

.page-body p {
    margin: 0 0 16px;
}

.page-body ul,
.page-body ol {
    margin: 0 0 16px;
    padding-left: 22px;
}

.page-body li {
    margin-bottom: 8px;
}

.page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 24px;
    font-size: 14px;
}

.page-body th,
.page-body td {
    border: 1px solid var(--home-border);
    padding: 10px 14px;
    text-align: left;
}

.page-body th {
    background: var(--home-bg-alt);
    color: var(--home-heading);
    font-weight: 600;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--home-radius-sm);
}

.page-body a {
    color: var(--home-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease;
}

.page-body a:hover,
.page-body a:focus {
    color: var(--home-accent-dark);
}
.page-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 48px;
    border-top: 1px solid var(--home-border);
    padding-top: 32px;
}

.page-nav__item {
    display: block;
    background: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    padding: 18px 22px;
    text-decoration: none;
    transition: var(--home-transition);
}

.page-nav__item:hover {
    border-color: var(--home-accent);
    box-shadow: var(--home-shadow-sm);
}

.page-nav__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--home-accent);
    margin-bottom: 6px;
}

.page-nav__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--home-heading);
    line-height: 1.4;
}

.page-nav__item--next {
    text-align: right;
}

.page-nav__empty {
    display: none;
}

.page-body__wrap {
    display: block;
}

.page-toc {
    display: none;
}

.page-toc__title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--home-primary);
    margin-bottom: 14px;
}

.page-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}

.page-toc__item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 7px 10px;
    border-radius: var(--home-radius-sm);
    text-decoration: none;
    font-size: 14px;
    color: var(--home-text);
    transition: var(--home-transition);
}

.page-toc__item:hover {
    color: var(--home-primary);
    background: var(--home-bg-alt);
}

.page-toc__item.is-active {
    color: var(--home-primary);
    background: rgba(6, 39, 91, 0.06);
    font-weight: 600;
}

.page-toc__no {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--home-accent);
    flex-shrink: 0;
}

.page-toc__label {
    line-height: 1.45;
}

.news-card__meta {
    margin-bottom: 8px;
}

.news-card__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--home-text);
}

.news-card__date i {
    color: var(--home-accent);
    font-size: 14px;
}

.news-card__loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--home-text);
}

.news-card__loc i {
    color: var(--home-accent);
    font-size: 14px;
}

.news-single__loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--home-text);
    text-decoration: none;
    transition: var(--home-transition);
}

.news-single__loc i {
    color: var(--home-accent);
    font-size: 15px;
}

.news-single__loc:hover {
    color: var(--home-primary);
}

.news-single__article {
    max-width: 860px;
    margin: 0 auto;
}

.news-single__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.news-single__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-single__date,
.news-single__author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--home-text);
}

.news-single__date i,
.news-single__author i {
    color: var(--home-accent);
    font-size: 15px;
}

.news-single__title {
    font-size: 30px;
    line-height: 1.25;
    color: var(--home-heading);
    margin: 0 0 24px;
    max-width: 760px;
}

.news-single__hero {
    border-radius: var(--home-radius-md);
    overflow: hidden;
    box-shadow: var(--home-shadow-md);
    margin: 0 0 40px;
    background: var(--home-bg-alt);
}

.news-single__hero img {
    width: 100%;
    height: auto;
    display: block;
}

.news-single__body {
    border-top: none;
    padding-top: 0;
    max-width: none;
}


.svc-sales__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

.svc-sales__card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    transition: var(--home-transition);
}

.svc-sales__card:hover {
    box-shadow: var(--home-shadow-hover);
    border-color: var(--home-secondary);
}

.svc-sales__card--featured {
    background: linear-gradient(135deg, var(--home-primary), var(--home-primary-dark));
    border-color: var(--home-primary);
    color: rgba(255, 255, 255, 0.82);
}

.svc-sales__card--featured:hover {
    border-color: var(--home-accent);
    box-shadow: var(--home-shadow-lg);
}

.svc-sales__icon {
    width: 60px;
    height: 60px;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--home-primary), var(--home-secondary));
}

.svc-sales__card--featured .svc-sales__icon {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.svc-sales__icon i {
    font-size: 26px;
    color: var(--home-white);
}

.svc-sales__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--home-heading);
    margin: 0 0 12px;
}

.svc-sales__card--featured .svc-sales__title {
    color: var(--home-white);
}

.svc-sales__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--home-text);
    margin: 0 0 14px;
}

.svc-sales__card--featured .svc-sales__text {
    color: rgba(255, 255, 255, 0.78);
}

.svc-sales__points {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}

.svc-sales__points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--home-radius-sm);
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--home-white);
}

.svc-sales__points li i {
    font-size: 18px;
    color: var(--home-accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.svc-manual__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.svc-manual__subhead {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--home-heading);
    margin: 0 0 16px;
}

.svc-manual__subhead i {
    font-size: 24px;
    color: var(--home-accent);
}

.svc-manual__text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--home-text);
    margin: 0 0 14px;
}

.svc-manual__params {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.svc-manual__param {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--home-primary);
    background: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: 100px;
}

.svc-manual__param::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--home-accent);
}

.svc-manual__steps {
    list-style: none;
    counter-reset: svc-step;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.svc-manual__step {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 0 0 24px 0;
}

.svc-manual__step::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: var(--home-border);
}

.svc-manual__step:last-child {
    padding-bottom: 0;
}

.svc-manual__step:last-child::before {
    display: none;
}

.svc-manual__step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--home-white);
    background: var(--home-primary);
    border: 2px solid var(--home-white);
    box-shadow: 0 0 0 1px var(--home-border);
    z-index: 1;
}

.svc-manual__step-body {
    padding-top: 2px;
}

.svc-manual__step-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--home-heading);
    margin: 0 0 6px;
}

.svc-manual__step-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--home-text);
    margin: 0;
}

@media (min-width: 768px) {
    .svc-sales__grid {
        grid-template-columns: 1fr 1fr;
    }

    .svc-sales__card--featured {
        grid-column: 1 / -1;
    }

    .svc-manual__grid {
        gap: 56px;
    }
}

@media (min-width: 992px) {
    .svc-sales__grid {
        grid-template-columns: 1.5fr 1fr;
        grid-auto-rows: 1fr;
    }

    .svc-sales__card--featured {
        grid-column: auto;
        grid-row: span 2;
    }

    .svc-manual__grid {
        grid-template-columns: 1fr 1fr;
    }
}


.con-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.con-form-wrap {
    padding: 32px 28px;
    background: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    box-shadow: var(--home-shadow-md);
}

.con-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 16px;
}

.con-field {
    margin-bottom: 18px;
}

.con-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--home-heading);
    margin-bottom: 8px;
}

.con-req {
    color: var(--home-accent);
}

.con-field input,
.con-field textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--home-heading);
    background: var(--home-bg-alt);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-sm);
    transition: var(--home-transition);
    resize: vertical;
}

.con-field input::placeholder,
.con-field textarea::placeholder {
    color: #9aa1ab;
}

.con-field input:focus,
.con-field textarea:focus {
    outline: none;
    background: var(--home-white);
    border: 1px solid var(--home-primary);
    box-shadow: 0 0 0 3px rgba(6, 39, 91, 0.1) !important;
}

#im-form.was-validated .con-field input:invalid,
#im-form.was-validated .con-field textarea:invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

#im-form.was-validated .con-field input:invalid:focus,
#im-form.was-validated .con-field textarea:invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.con-invalid {
    display: none;
    margin-top: 6px;
    font-size: 12.5px;
    color: #dc3545;
}

#im-form.was-validated .con-field input:invalid ~ .con-invalid,
#im-form.was-validated .con-field textarea:invalid ~ .con-invalid {
    display: block;
}

.con-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.form-messege {
    margin: 16px 0 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    min-height: 20px;
}

.form-messege.success {
    color: #1e7e34;
}

.form-messege.error {
    color: #dc3545;
}

.con-info {
    padding: 32px 28px;
    background: linear-gradient(135deg, var(--home-primary), var(--home-primary-dark));
    border-radius: var(--home-radius-md);
    color: rgba(255, 255, 255, 0.82);
}

.con-info__company {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--home-white);
    margin: 0 0 24px;
}

.con-info__list {
    font-style: normal;
    display: grid;
    gap: 18px;
}

.con-info__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.con-info__item i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--home-white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.con-info__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 2px;
}

.con-info__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.con-info__value {
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--home-white);
}

.con-info__link {
    color: var(--home-white);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 3px;
    transition: var(--home-transition);
}

.con-info__link:hover {
    color: var(--home-accent);
    text-decoration-color: var(--home-accent);
}

.con-info__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.con-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--home-transition);
}

.con-btn--whatsapp {
    background: #25d366;
    color: var(--home-white);
}

.con-btn--whatsapp:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: var(--home-shadow-md);
}

.con-btn--mail {
    background: transparent;
    color: var(--home-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.con-btn--mail:hover {
    background: var(--home-white);
    color: var(--home-primary);
    border-color: var(--home-white);
}

.con-btn i {
    font-size: 17px;
}

.con-wa-icon {
    display: inline-flex;
    font-size: 17px;
    line-height: 1;
}

.con-wa-icon:before {
    font-family: IcoFont;
    content: "\e957";
    font-style: normal;
    font-weight: normal;
}

@media (min-width: 768px) {
    .con-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .con-grid {
        grid-template-columns: 1.6fr 1fr;
        gap: 40px;
        align-items: stretch;
    }

    .con-info {
        padding: 36px 32px;
    }
}



.con-map-wrap {
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    overflow: hidden;
    box-shadow: var(--home-shadow-md);
    background: var(--home-white);
    line-height: 0;
}

.con-map {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

.con-map-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 24px;
    margin: 18px 0 0;
    font-size: 14px;
    color: var(--home-text);
    line-height: 1.6;
}

.con-map-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--home-text);
    text-decoration: none;
    transition: var(--home-transition);
}

.con-map-link i {
    font-size: 17px;
    color: var(--home-accent);
}

.con-map-link:hover {
    color: var(--home-primary);
}

.con-map-link:hover i {
    color: var(--home-primary);
}

.con-map-link--btn {
    padding: 9px 20px;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--home-white);
    background: var(--home-primary);
    border: 1px solid var(--home-primary);
    border-radius: var(--home-radius-sm);
    transition: var(--home-transition);
}

.con-map-link--btn i {
    font-size: 15px;
    color: var(--home-white);
}

.con-map-link--btn:hover {
    color: var(--home-white);
    background: var(--home-accent);
    border-color: var(--home-accent);
}

.con-map-link--btn:hover i {
    color: var(--home-white);
}

@media (min-width: 768px) {
    .con-map {
        height: 440px;
    }
}

@media (min-width: 992px) {
    .page-body__wrap {
        display: grid;
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 48px;
        align-items: start;
    }

    .page-toc {
        display: block;
        position: sticky;
        top: 110px;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        border-left: 3px solid var(--home-accent);
        padding-left: 18px;
    }
}

@media (min-width: 768px) {
    .pro-single__facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-nav {
        grid-template-columns: 1fr 1fr;
    }

    .page-nav .page-nav__empty {
        display: block;
    }

    .news-single__title {
        font-size: 34px;
    }
}

@media (min-width: 992px) {
    .pro-single__grid {
        grid-template-columns: minmax(0, 1fr) 480px;
        gap: 44px;
    }

    .pro-single__info {
        position: sticky;
        top: 110px;
    }

    .pro-single__title {
        font-size: 30px;
    }

    .pro-single__thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .pro-single__panel {
        padding: 32px;
    }
}

.page-404 {
    padding-top: 40px;
}

.page-404__inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    padding: 12px 20px 4px;
}

.page-404__code {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 88px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    color: var(--home-primary);
    margin: 0 0 16px;
    user-select: none;
}

.page-404__code em {
    font-style: normal;
    color: var(--home-accent);
}

.page-404__search {
    max-width: 520px;
    margin: 0 auto 26px;
}

.page-404__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 4px;
}

.page-404__actions .home-btn {
    padding: 12px 26px;
}

.page-404__links {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 12px;
    font-size: 14px;
}

.page-404__links-label {
    font-weight: 600;
    color: var(--home-primary);
}

.page-404__links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #eef1f6;
    color: var(--home-primary);
    font-weight: 600;
    text-decoration: none;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.page-404__links a:hover {
    background: #ffffff;
    border-color: var(--home-accent);
    color: var(--home-accent);
}

.page-404__links i {
    font-size: 13px;
}

@media (min-width: 768px) {
    .page-404 {
        padding-top: 56px;
    }

    .page-404__code {
        font-size: 120px;
    }
}

@media (min-width: 992px) {
    .page-404 {
        padding-top: 72px;
    }

    .page-404__inner {
        padding-top: 20px;
    }

    .page-404__code {
        font-size: 144px;
        margin-bottom: 20px;
    }
}
