


.hero-section--home {
    display: flex;
    align-items: center;
    min-height: auto;
    padding: 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.12), transparent 24rem),
        linear-gradient(125deg, #0b786e 0%, #075e5d 48%, #102f4c 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero-section--home::after {
    right: -7rem;
    top: -8rem;
    width: 30rem;
    height: 30rem;
    background: rgba(255, 255, 255, 0.07);
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: -1;
}

.home-hero-slider {
    position: relative;
    width: 100%;
}

.home-hero-state {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: var(--site-hero-min-height);
    padding: var(--site-hero-padding-top) 0 var(--site-hero-padding-bottom);
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transform: translateX(3%);
    transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s;
    visibility: hidden;
}

.home-hero-state--main {
    position: relative;
    overflow: hidden;
}

.home-hero-main-media,
.home-hero-main-media picture,
.home-hero-main-media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.home-hero-main-media img {
    object-fit: cover;
    object-position: center 56%;
}

.home-hero-state--main::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 18, 26, 0.92) 0%, rgba(7, 25, 30, 0.76) 38%, rgba(7, 25, 30, 0.18) 72%, rgba(7, 25, 30, 0.08) 100%),
        linear-gradient(0deg, rgba(3, 14, 20, 0.36), transparent 52%);
    pointer-events: none;
}

.home-hero-main-container {
    z-index: 2;
}

.home-hero-state--latest {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.home-hero-state.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
}

.home-hero-latest-media {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-hero-latest-media--count-1 {
    grid-template-columns: 1fr;
}

.home-hero-latest-media--count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-hero-latest-media picture,
.home-hero-latest-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.home-hero-latest-media img {
    object-fit: cover;
}

.home-hero-state--latest::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(3, 36, 48, 0.88), rgba(5, 53, 58, 0.68), rgba(3, 36, 48, 0.82));
    pointer-events: none;
}

.home-hero-latest-content {
    z-index: 2;
    text-align: center;
}

.home-hero-latest-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
    text-wrap: balance;
}

.home-hero-latest-content p {
    max-width: 620px;
    margin: 0.9rem auto 1.15rem;
    color: #d7f8f1;
    font-size: 1.02rem;
}

.hero-home-content {
    position: relative;
    text-align: left;
    z-index: 3;
}

.hero-home-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -0.035em;
    max-width: 12ch;
    margin: 0;
    text-wrap: balance;
}

.hero-home-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 520px;
    margin: 0.75rem 0 0;
}

.home-hero-state--main .badge-soft--light {
    padding: 0.4rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.home-hero-state--main .badge-soft--light::after {
    content: "";
    display: inline-block;
    width: 3.5rem;
    height: 1px;
    margin-left: 0.75rem;
    background: var(--accent);
    vertical-align: middle;
}

.hero-section--home .hero-actions {
    justify-content: flex-start;
}

.hero-trust-strip {
    display: flex;
    align-items: stretch;
    width: fit-content;
    max-width: 100%;
    margin-top: 1.05rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    padding: 0 1.05rem;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.hero-trust-item:first-child {
    padding-left: 0;
}

.hero-trust-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.hero-trust-item svg {
    flex: 0 0 1.75rem;
    width: 1.75rem;
    height: 1.75rem;
    fill: currentColor;
}

.hero-trust-item strong,
.hero-trust-item small {
    display: block;
    white-space: nowrap;
}

.hero-trust-item strong {
    font-size: 0.75rem;
}

.hero-trust-item small {
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.64rem;
}

.hero-scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-decoration: none;
    text-transform: uppercase;
}

.hero-scroll-cue span {
    position: relative;
    width: 1.15rem;
    height: 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
}

.hero-scroll-cue span::after {
    content: "";
    position: absolute;
    top: 0.38rem;
    left: 50%;
    width: 3px;
    height: 5px;
    border-radius: 999px;
    background: #ffffff;
    transform: translateX(-50%);
}


.slider-wrap {
    position: relative;
}

.slider-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px; 
    padding-top: 4px;
    cursor: grab;
}

.slider-track::-webkit-scrollbar {
    display: none;
}


.cat-slider-track > .category-card {
    flex-shrink: 0;
    width: calc(25% - 0.75rem);   
    scroll-snap-align: start;
    cursor: grab;
}

.cat-slider-track > .category-card:active {
    cursor: grabbing;
}


.prod-slider-track > .prod-slide {
    flex-shrink: 0;
    width: calc(25% - 0.75rem);   
    scroll-snap-align: start;
    cursor: grab;
}

.prod-slider-track > .prod-slide:active {
    cursor: grabbing;
}

@media (max-width: 991.98px) {
    .cat-slider-track > .category-card,
    .prod-slider-track > .prod-slide {
        width: calc(33.333% - 0.667rem); 
    }
}

@media (max-width: 575.98px) {
    .cat-slider-track > .category-card {
        width: 82%;
    }

    .prod-slider-track > .prod-slide {
        width: calc(50% - 0.5rem);       
    }

    .cat-slider-track {
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    .category-card-label {
        font-size: 0.9rem;
        padding: 0.68rem 0.5rem 0.78rem;
    }
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(13, 37, 64, 0.08);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.category-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 16%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 42%),
        radial-gradient(circle at 84% 78%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 46%),
        linear-gradient(140deg, color-mix(in srgb, var(--cat-color, #0f766e) 86%, #ffffff 14%), var(--cat-color, #0f766e));
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-img img {
    transform: scale(1.06);
}

.category-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
}

.category-card-label {
    width: 100%;
    padding: 0.72rem 0.6rem 0.8rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.01em;
    line-height: 1.25;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}


.why-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.why-card {
    background: var(--surface);
    border: 1px solid rgba(13, 37, 64, 0.08);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.4rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.why-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6f7f5, #bdeee8);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
}


.intl-cta {
    background: linear-gradient(110deg, #0f1728, #17263d);
    padding: 4.5rem 0;
    color: #dce8f8;
}

.intl-cta-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7ec8f5;
    margin-bottom: 0.5rem;
}

.intl-cta-heading {
    color: #ffffff;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 0.9rem;
}

.intl-cta-desc {
    color: #a8c0dc;
    max-width: 560px;
    margin-bottom: 0;
    font-size: 0.975rem;
    line-height: 1.65;
}


.testimonials-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

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

.testimonial-card {
    background: var(--surface);
    border: 1px solid rgba(13, 37, 64, 0.08);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.testimonial-text {
    color: var(--ink);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--line);
    padding-top: 0.85rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), #0d5a54);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--ink);
    line-height: 1.2;
}

.testimonial-location {
    font-size: 0.78rem;
    color: var(--muted);
}


@media (max-width: 991.98px) {

    .hero-home-title {
        max-width: 12ch;
    }

    .hero-home-desc {
        margin-left: 0;
        margin-right: 0;
    }

    .home-hero-latest-content h2 {
        font-size: clamp(2.1rem, 7vw, 3.25rem);
    }

}

@media (max-width: 575.98px) {

    .hero-section--home .hero-home-title {
        max-width: 18ch;
        font-size: clamp(1.8rem, 8.6vw, 2.15rem);
        line-height: 0.96;
    }

    .hero-home-desc {
        display: none;
    }

    .hero-section--home .hero-actions {
        justify-content: flex-start;
        margin-top: 0.35rem;
    }

    .hero-section--home .hero-actions .btn {
        min-height: 38px;
        padding: 0.4rem 0.75rem;
        font-size: 0.82rem;
    }

    .home-hero-state--main .badge-soft--light {
        font-size: 0.56rem;
        letter-spacing: 0.18em;
    }

    .home-hero-main-media img {
        object-position: 58% center;
    }

    .hero-trust-strip {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        margin-top: 0.65rem;
    }

    .hero-trust-item {
        justify-content: center;
        gap: 0.3rem;
        padding: 0 0.4rem;
    }

    .hero-trust-item:first-child {
        padding-left: 0;
    }

    .hero-trust-item:last-child {
        padding-right: 0;
    }

    .hero-trust-item svg {
        flex-basis: 1.05rem;
        width: 1.05rem;
        height: 1.05rem;
    }

    .hero-trust-item strong {
        font-size: 0.54rem;
        white-space: normal;
    }

    .hero-trust-item small,
    .hero-scroll-cue {
        display: none;
    }

    .home-hero-latest-media {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero-latest-media picture:nth-child(3) {
        display: none;
    }

    .home-hero-latest-media--count-1 {
        grid-template-columns: 1fr;
    }

    .home-hero-latest-content h2 {
        font-size: clamp(1.65rem, 8vw, 1.95rem);
    }

    .home-hero-latest-content p {
        display: none;
    }

    .home-hero-latest-content {
        transform: none;
    }

    .home-hero-latest-content .btn {
        min-height: 40px;
        margin-top: 0.65rem;
        padding: 0.45rem 0.9rem;
    }

}

@media (max-width: 575.98px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .intl-cta {
        padding: 2.8rem 0;
        text-align: center;
    }

    .intl-cta-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .intl-cta .d-flex {
        justify-content: center;
    }
}

.slider-motion-toggle {
    border: 1px solid currentColor;
    border-radius: 999px;
    background: transparent;
    color: inherit;
    padding: 0.2rem 0.55rem;
    font-size: 0.72rem;
    line-height: 1.2;
}

.slider-motion-toggle {
    display: block;
    margin: 0 0 0.5rem auto;
    color: var(--brand-ink);
}

@media (prefers-reduced-motion: reduce) {
    .slider-track {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

@media (max-width: 359.98px) {
    .home-products-grid {
        grid-template-columns: 1fr;
    }
}
