:root {
    --primary: #ac0428;
    --primary-light: #d31a3f;
    --primary-dark: #7a021c;
    --blue-dark: #0d1b3d;
    --blue: #1a2f5c;
    --black: #0a0a0a;
    --text-light: #e8eef7;
    --card-bg: #ffffff;
    --text-dark: #0a0a0a;
    --text-muted: #6b7280;
    --shadow: 0 4px 12px rgba(13, 27, 61, 0.05);
}

* {
    box-sizing: border-box;
    /* border-radius: 0 !important; */
}

html,
body,
button,
input,
select,
textarea,
.btn,
h1, h2, h3, h4, h5, h6,
p, a, span, div, li {
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    /* background: var(--primary-dark); */
    color: #fff;
    overflow-x: hidden;
}

/* ========== TOP BAR ========== */
.lenus-topbar {
    background: var(--blue-dark);
    color: var(--text-light);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lenus-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 42px;
}

/* ----- Left: social media ----- */
.lenus-topbar__social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lenus-topbar__social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 13px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lenus-topbar__social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

/* ----- Right: contact info ----- */
.lenus-topbar__location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lenus-topbar__location i {
    color: var(--primary);
    font-size: 13px;
}

.lenus-topbar__location span {
    color: var(--text-light);
}

.lenus-topbar__contact {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
}

.lenus-topbar__contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lenus-topbar__contact i {
    color: var(--primary);
    font-size: 13px;
}

.lenus-topbar__contact a,
.lenus-topbar__contact span {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.25s ease;
}

.lenus-topbar__contact a:hover {
    color: var(--primary);
}

/* ========== HEADER ========== */
.site-header {
    background: #ffffff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.site-header .navbar {
    padding: 6px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #4d5f85;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 20px !important;
    transition: color 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.btn-cta {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, gap 0.25s ease;
}

.btn-cta:hover {
    background: var(--blue-dark);
    color: #fff;
    gap: 12px;
}

/* ----- Navbar search toggle ----- */
.nav-search-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: transparent;
    border: 1px solid rgba(13, 27, 61, 0.15);
    color: var(--blue-dark);
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.nav-search-btn:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

/* ========== SEARCH MODAL ========== */
.lenus-search {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lenus-search.is-open {
    opacity: 1;
    visibility: visible;
}

.lenus-search__backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(13, 27, 61, 0.78), rgba(10, 10, 10, 0.82));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lenus-search__dialog {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin-top: 9vh;
    background: #fff;
    color: var(--text-dark);
    box-shadow: 0 40px 100px rgba(10, 10, 10, 0.5);
    overflow: hidden;
    transform: translateY(-24px) scale(0.97);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.lenus-search.is-open .lenus-search__dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* ----- Header ----- */
.lenus-search__head {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 28px 22px;
    background: linear-gradient(120deg, var(--blue-dark) 0%, var(--blue) 100%);
    overflow: hidden;
}

.lenus-search__head::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(172, 4, 40, 0.45), transparent 70%);
    pointer-events: none;
}

.lenus-search__eyebrow {
    display: inline-block;
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.lenus-search__heading {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.lenus-search__close {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.lenus-search__close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* ----- Search field ----- */
.lenus-search__form {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 28px 0;
    padding: 14px 18px;
    background: #f5f7fb;
    border: 1px solid #e4e9f2;
    border-bottom: 2px solid var(--primary);
}

.lenus-search__icon {
    font-size: 20px;
    color: var(--primary);
}

.lenus-search__input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    background: transparent;
    padding: 2px 0;
}

.lenus-search__input::placeholder {
    color: #9aa3b2;
}

/* ----- Category chips ----- */
.lenus-search__chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 16px 28px 0;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.lenus-search__chips::-webkit-scrollbar {
    display: none;
}

.lenus-search__chip {
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid #e0e5ee;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lenus-search__chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lenus-search__chip.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ----- Results ----- */
.lenus-search__results {
    margin: 12px 14px 8px;
    padding: 0 6px;
    max-height: 46vh;
    overflow-y: auto;
}

.lenus-search__results::-webkit-scrollbar {
    width: 6px;
}

.lenus-search__results::-webkit-scrollbar-thumb {
    background: #d4dae6;
}

.lenus-search__group-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 12px 8px 6px;
    margin: 0;
}

.lenus-search__hint {
    color: var(--text-muted);
    font-size: 14px;
    padding: 24px 8px;
    margin: 0;
    text-align: center;
}

.lenus-search__hint i {
    display: block;
    font-size: 34px;
    color: #cdd5e3;
    margin-bottom: 10px;
}

.lenus-search__hint a {
    color: var(--primary);
    font-weight: 600;
}

.lenus-search__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--blue-dark);
    border-left: 3px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    animation: lenusSearchItemIn 0.32s ease both;
}

@keyframes lenusSearchItemIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lenus-search__item:hover,
.lenus-search__item.is-active {
    background: #f5f7fb;
    border-left-color: var(--primary);
    color: var(--blue-dark);
}

.lenus-search__thumb {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e8ecf3;
    overflow: hidden;
}

.lenus-search__thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lenus-search__item-body {
    flex: 1;
    min-width: 0;
}

.lenus-search__item-name {
    font-weight: 600;
    font-size: 15px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lenus-search__item-name mark {
    background: rgba(172, 4, 40, 0.12);
    color: var(--primary);
    padding: 0;
}

.lenus-search__item-cat {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lenus-search__item-price {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    white-space: nowrap;
}

.lenus-search__item-arrow {
    flex: 0 0 auto;
    color: #c2cad8;
    font-size: 15px;
    transform: translateX(-4px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}

.lenus-search__item:hover .lenus-search__item-arrow,
.lenus-search__item.is-active .lenus-search__item-arrow {
    color: var(--primary);
    transform: translateX(0);
    opacity: 1;
}

/* ----- Footer ----- */
.lenus-search__foot {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 28px;
    background: #f5f7fb;
    border-top: 1px solid #e8ecf3;
    font-size: 12px;
    color: var(--text-muted);
}

.lenus-search__foot span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lenus-search__count {
    margin-left: auto;
    font-weight: 600;
    color: var(--blue-dark);
}

.lenus-search__kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #fff;
    border: 1px solid #d8dee9;
    border-bottom-width: 2px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--blue-dark);
    line-height: 1;
}

/* ========== COMMON SECTION BADGE / EYEBROW ========== */
.lenus-badge {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 14px;
    background: var(--blue-dark);
    border-left: 3px solid var(--black);
    display: none;
}

/* ========== COMMON SECTION HEADING ========== */
.lenus-heading {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

.lenus-heading span {
    color: var(--black);
}

/* ========== HERO SLIDER (Swiper) ========== */
.lenus-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(
  ellipse at 92% 50%,
  #ffffff 0%,
  #f5f5f5 40%,
  #e2e2e2 75%,
  #cfcfcf 100%
);
    /* background: linear-gradient(180deg, #ffffff 0%, #f9f3f3 45%, #e7e7e7 100%); */
    /* background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 45%, #f8fafc 100%); */
}

/* Autoplay progress bar — top of hero, just under navbar */
.lenus-hero__progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1.3px;
    background: rgba(13, 27, 61, 0.08);
    z-index: 20;
    overflow: hidden;
}

.lenus-hero__progress span {
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform-origin: left center;
    transform: scaleX(var(--lenus-progress, 0));
    transition: transform 120ms linear;
    box-shadow: 0 0 10px rgba(172, 4, 40, 0.20);
}

.lenus-hero__slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gradient overlay (left → right). Alternates per slide so consecutive slides feel distinct. */
/* .lenus-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
} */

/* Odd slides — warm white with subtle red/brand tint at start */
.lenus-hero__slide:nth-child(odd) .lenus-hero__overlay {
    background: linear-gradient(
        to right,
        rgba(255, 240, 243, 0.96) 0%,
        rgba(255, 250, 251, 0.88) 50%,
        rgba(255, 255, 255, 0.70) 100%
    );
}

/* Even slides — cool white with subtle blue/brand tint at start */
.lenus-hero__slide:nth-child(even) .lenus-hero__overlay {
    background: linear-gradient(
        to right,
        rgba(228, 234, 245, 0.96) 0%,
        rgba(241, 245, 251, 0.88) 50%,
        rgba(255, 255, 255, 0.70) 100%
    );
}

.lenus-hero__slide .container {
    position: relative;
    z-index: 2;
}

.lenus-hero__row {
    min-height: 100vh;
    padding: 40px 0 130px;
}

/* ----- Decorative grayscale background elements ----- */
/* .lenus-hero__decor {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    filter: grayscale(100%);
} */

.lenus-hero__shape {
    position: absolute;
    display: block;
    opacity: 0.55;
    will-change: transform;
}

/* Large soft circle — top right */
/* .lenus-hero__shape--circle-lg {
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(120, 120, 120, 0.35), rgba(120, 120, 120, 0) 70%);
    animation: lenusFloat 9s ease-in-out infinite;
} */

/* Small filled circle — mid left */
/* .lenus-hero__shape--circle-sm {
    top: 38%;
    left: 6%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(80, 80, 80, 0.12);
    animation: lenusFloat 6s ease-in-out infinite reverse;
} */

/* Outlined ring — bottom right */
/* .lenus-hero__shape--ring {
    bottom: 14%;
    right: 12%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px dashed rgba(80, 80, 80, 0.28);
    animation: lenusSpin 22s linear infinite;
} */

/* Dot grid — bottom left */
/* .lenus-hero__shape--dots {
    bottom: 8%;
    left: 4%;
    width: 120px;
    height: 80px;
    background-image: radial-gradient(rgba(60, 60, 60, 0.35) 1.5px, transparent 1.6px);
    background-size: 14px 14px;
    opacity: 0.45;
    animation: lenusDrift 12s ease-in-out infinite;
} */

/* Cross / plus icon — top middle */
/* .lenus-hero__shape--cross {
    top: 16%;
    left: 42%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(60, 60, 60, 0.45);
    font-size: 28px;
    animation: lenusFloat 7s ease-in-out infinite;
} */

/* Thin pill bar — top left */
/* .lenus-hero__shape--pill {
    top: 22%;
    left: -30px;
    width: 140px;
    height: 6px;
    background: linear-gradient(90deg, rgba(80, 80, 80, 0) 0%, rgba(80, 80, 80, 0.4) 50%, rgba(80, 80, 80, 0) 100%);
    animation: lenusPulse 5s ease-in-out infinite;
} */

/* Triangle accent — right middle */
/* .lenus-hero__shape--triangle {
    top: 56%;
    right: 32%;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid rgba(80, 80, 80, 0.18);
    animation: lenusSpin 18s linear infinite reverse;
} */

/* Differentiate odd vs even slides slightly */
/* .lenus-hero__slide:nth-child(even) .lenus-hero__shape--circle-lg {
    top: auto;
    right: auto;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle at 70% 70%, rgba(120, 120, 120, 0.32), rgba(120, 120, 120, 0) 70%);
}

.lenus-hero__slide:nth-child(even) .lenus-hero__shape--ring {
    bottom: auto;
    right: auto;
    top: 12%;
    left: 38%;
} */

/* @keyframes lenusFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    50%      { transform: translateY(-18px) translateX(6px); }
}

@keyframes lenusDrift {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(14px); }
}

@keyframes lenusSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes lenusPulse {
    0%, 100% { opacity: 0.25; transform: scaleX(0.85); }
    50%      { opacity: 0.65; transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
    .lenus-hero__shape,
    .lenus-hero__image-wrapper::before,
    .lenus-hero__image-ring {
        animation: none !important;
    }
} */

.lenus-hero__content {
    color: var(--blue-dark);
}

.lenus-hero__title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 18px;
    color: var(--blue-dark);
}

.lenus-hero__title span {
    color: var(--black);
}

.lenus-hero__text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    /* max-width: 540px; */
    line-height: 1.75;
}

.lenus-hero__iso-img {
    height: 55px;
    width: auto;
}

.lenus-hero__stats .col-4:not(:last-child) {
    border-right: 1px solid #d1d5db;
}

.lenus-hero__stat-number {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--blue-dark);
    line-height: 1.1;
}

.lenus-hero__stat-label {
    font-size: 13px;
    color: #4d5f85;
    margin-bottom: 0;
}

.lenus-hero__rating .bi-star-fill,
.lenus-hero__rating .bi-star-half {
    color: #f5b400;
    font-size: 16px;
}

.lenus-hero__rating-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue-dark);
}

.lenus-hero__rating-text {
    font-size: 14px;
    color: #4d5f85;
}

.lenus-hero__image-wrapper {
    position: relative;
    z-index: 2;
    padding: 30px 0;
    isolation: isolate;
}

/* Main hero shape — deep blue disc with soft inner depth */
/* .lenus-hero__image-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 30px 60px rgba(13, 27, 61, 0.16);
    animation: lenusHeroDisc 9s ease-in-out infinite;
} */

/* Thin offset outline ring — sits slightly off-center behind the disc */
/* .lenus-hero__image-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 86%;
    aspect-ratio: 1 / 1;
    transform: translate(-46%, -54%);
    border: 2px solid rgba(13, 27, 61, 0.30);
    border-radius: 50%;
    z-index: -2;
} */

/* Circular image badge — attached to the image container */
/* .lenus-hero__image-wrapper .lenus-hero__image-badge {
    position: absolute;
    bottom: 8%;
    left: 4%;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    border: 5px solid #ffffff;
    box-shadow: 0 14px 30px rgba(13, 27, 61, 0.22);
    z-index: 3;
} */

/* Top-right variant */
/* .lenus-hero__image-wrapper .lenus-hero__image-badge--tr {
    bottom: auto;
    left: auto;
    top: 4%;
    right: 0;
    width: 104px;
    height: 104px;
}

.lenus-hero__image-wrapper .lenus-hero__image-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */

/* Dot grid — bottom-left of the image */
.lenus-hero__image {
    position: relative;
    width: 100%;
    height: 360px;
    object-fit: contain;
    /* filter: drop-shadow(0 18px 36px rgba(13, 27, 61, 0.28)); */
    /* will-change: transform; */
}
/* .lenus-hero__image.cliping{
    transform: rotate(60deg);
    max-width: 70%;
} */

@keyframes lenusHeroDisc {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-50%, -50%) scale(1.03); }
}

/* Swiper controls wrapper — keeps pagination + arrows aligned with the container */
.lenus-hero__controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 150px;
    z-index: 10;
    pointer-events: none;
}

.lenus-hero__controls .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.lenus-hero__controls > .container > * { pointer-events: auto; }

/* Swiper navigation — paired horizontal arrows */
.lenus-hero__nav-prev,
.lenus-hero__nav-next {
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--blue-dark);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    display: none;
}

.lenus-hero__nav-prev { margin-right: 8px; }

.lenus-hero__nav-prev:hover,
.lenus-hero__nav-next:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.lenus-hero__nav-group {
    display: inline-flex;
}

/* Swiper pagination — JS-positioned at the bottom-center of the active slide's image */
.lenus-hero__pagination {
    position: absolute !important;
    top: 0;
    left: 0;
    width: auto !important;
    white-space: nowrap;
    z-index: 10;
    transform: translateX(-50%);
    text-align: center !important;
}

.lenus-hero__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(13, 27, 61, 0.25);
    opacity: 1;
    border-radius: 50%;
    transition: background-color 0.3s ease, width 0.3s ease;
    margin: 0 5px !important;
}

.lenus-hero__pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Slide animations */
.lenus-hero__slide .lenus-hero__content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.lenus-hero__slide.swiper-slide-active .lenus-hero__content {
    opacity: 1;
    transform: translateY(0);
}

.lenus-hero__slide .lenus-hero__image-wrapper {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.lenus-hero__slide.swiper-slide-active .lenus-hero__image-wrapper {
    opacity: 1;
    transform: translateX(0);
}

/* ========== FEATURE HIGHLIGHTS (overlaps hero) ========== */
.lenus-features {
    position: relative;
    z-index: 5;
    margin-top: -90px;
    padding-bottom: 50px;
    background: transparent;
}

.lenus-features__row {
    position: relative;
}

.lenus-feature {
    position: relative;
    background: #ffffff;
    padding: 22px 22px 20px;
    box-shadow: var(--shadow);
    height: 100%;
    overflow: hidden;
    border-top: 3px solid var(--primary);
    transition: transform 0.35s ease;
}

.lenus-feature:hover {
    transform: translateY(-6px);
}

/* Large faded number watermark in the top-right corner */
.lenus-feature__num {
    position: absolute;
    top: -10px;
    right: 8px;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(172, 4, 40, 0.14);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* Soft brand-tinted circle in the bottom-right for depth */
/* .lenus-feature::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(172, 4, 40, 0.10) 0%, rgba(172, 4, 40, 0) 70%);
    z-index: 0;
    pointer-events: none;
} */

.lenus-feature__head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.lenus-feature__icon {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    font-size: 14px;
    box-shadow: 0 8px 16px rgba(172, 4, 40, 0.15);
    border-radius: 4px;
}

.lenus-feature__icon::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(172, 4, 40, 0.20);
    z-index: -1;
    border-radius: 4px;
}

.lenus-feature__body {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.lenus-feature__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 0;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.lenus-feature__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 10px;
}

.lenus-feature__link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.lenus-feature__link i {
    transition: transform 0.25s ease;
}

.lenus-feature__link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.lenus-feature__link:hover i {
    transform: translateX(2px);
}

/* ========== WHY CHOOSE US ========== */
.lenus-why {
    position: relative;
    overflow: hidden;
    padding: 50px 0 50px;
    background: #f7f8fb;
}

/* Faint decorative background shapes */
.lenus-why__bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.lenus-why__bg-shape--dots-tr {
    top: 60px;
    right: -40px;
    width: 180px;
    height: 120px;
    background-image: radial-gradient(rgba(172, 4, 40, 0.22) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.6;
}

.lenus-why__bg-shape--dots {
    bottom: 60px;
    left: -40px;
    width: 180px;
    height: 120px;
    background-image: radial-gradient(rgba(172, 4, 40, 0.22) 1.5px, transparent 1.6px);
    background-size: 16px 16px;
    opacity: 0.6;
}

.lenus-why .container {
    position: relative;
    z-index: 1;
}

/* Intro column */
.lenus-why__intro {
    color: var(--blue-dark);
}

.lenus-why__text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Feature rows — deliberately not a card grid, so this reads differently from .lenus-feature */
.lenus-why-card {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 20px;
    row-gap: 6px;
    padding: 26px 10px 26px 16px;
    border-bottom: 1px solid rgba(13, 27, 61, 0.12);
    transition: padding-left 0.3s ease, border-color 0.3s ease;
}

.lenus-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}

.lenus-why-card:hover {
    padding-left: 24px;
    border-color: var(--primary);
}

.lenus-why-card:hover::before {
    height: 100%;
}

.lenus-why-card__icon {
    grid-row: 1 / 3;
    align-self: start;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(172, 4, 40, 0.25);
    color: var(--primary);
    font-size: 22px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border-radius: 4px;
}

.lenus-why-card:hover .lenus-why-card__icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.lenus-why-card__title {
    grid-column: 2;
    font-size: 18px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 0;
}

.lenus-why-card__text {
    grid-column: 2;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* ========== PRODUCTS CAROUSEL ========== */
.lenus-products {
    padding: 50px 0 50px;
    background: #ffffff;
}


.lenus-products__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Swiper container */
.lenus-products__swiper {
    padding: 10px 4px;
    overflow: hidden;
}

/* Product card */
.lenus-product {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    box-shadow: var(--shadow);
    height: 100%;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
}

.lenus-product:hover {
    transform: translateY(-6px);
    border-color: rgba(172, 4, 40, 0.30);
}

.lenus-product__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

/* .lenus-product__media::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(172, 4, 40, 0.10) 0%, rgba(172, 4, 40, 0) 70%);
} */

.lenus-product__media img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.lenus-product:hover .lenus-product__media img {
    transform: scale(1.06);
}

.lenus-product__body {
    padding: 20px 22px 22px;
    border-top: 1px solid rgba(13, 27, 61, 0.06);
}

.lenus-product__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.lenus-product__name {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 10px;
    letter-spacing: 0;
    line-height: 1.3;
}

.lenus-product__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.lenus-product__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.lenus-product__link i { transition: transform 0.25s ease; }

.lenus-product__link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.lenus-product__link:hover i { transform: translateX(2px); }

/* Carousel chrome */
.lenus-products__carousel {
    position: relative;
    /* padding: 0 60px; */
}

.lenus-products__swiper .swiper-slide {
    height: auto;
    display: flex;
}

.lenus-products__swiper .swiper-slide > .lenus-product {
    width: 100%;
}

.lenus-products__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--blue-dark);
    border: 1px solid rgba(13, 27, 61, 0.15);
    cursor: pointer;
    font-size: 18px;
    z-index: 2;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lenus-products__nav:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.lenus-products__nav--prev { left: 0; }
.lenus-products__nav--next { right: 0; }

.lenus-products__nav.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.lenus-products__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.lenus-products__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(13, 27, 61, 0.2);
    opacity: 1;
    transition: background-color 0.25s ease, width 0.25s ease;
    cursor: pointer;
}

.lenus-products__pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 10px;
}

/* ========== TRUST STATUS (light, airy stat strip) ========== */
.lenus-trust {
    position: relative;
    overflow: hidden;
    padding: 50px 0 50px;
    background: #f7f8fb;
}

.lenus-trust .container {
    position: relative;
    z-index: 1;
}

/* Faint decorative background shapes */
.lenus-trust__shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.lenus-trust__shape--ring {
    top: -100px;
    right: -120px;
    width: 340px;
    height: 340px;
    border: 2px dashed rgba(172, 4, 40, 0.16);
    border-radius: 50%;
}

.lenus-trust__shape--dots {
    bottom: 40px;
    left: -40px;
    width: 190px;
    height: 140px;
    background-image: radial-gradient(rgba(13, 27, 61, 0.16) 2px, transparent 2px);
    background-size: 18px 18px;
}

.lenus-trust__text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* Stats — single-line bar below the content */
.lenus-trust__stats {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.12);
    /* border-top: 3px solid var(--primary); */
}

.lenus-trust__stat {
    flex: 1 1 240px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px 34px;
    transition: background-color 0.3s ease;
}

.lenus-trust__stat + .lenus-trust__stat {
    border-left: 1px solid rgba(13, 27, 61, 0.10);
}

.lenus-trust__stat:hover {
    background: #fafbfd;
}

.lenus-trust__stat-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #AB0428;
    color: #ffffff;
    font-size: 24px;
    border-radius: 4px;
}

.lenus-trust__stat-num {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    color: #0d1b3d;
    line-height: 1;
    letter-spacing: -1px;
}

.lenus-trust__stat-label {
    margin: 5px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== TESTIMONIALS ========== */
.lenus-testimonials {
    position: relative;
    padding: 50px 0 50px;
    background: #ffffff;
}

.lenus-testimonials__intro {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.lenus-testimonials__lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 0;
}

.lenus-testimonial {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.10);
    padding: 32px 28px 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.lenus-testimonial:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.lenus-testimonial__mark {
    display: none;
}

.lenus-testimonial__rating {
    display: inline-flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 14px;
}

.lenus-testimonial__body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 24px;
}

.lenus-testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(13, 27, 61, 0.08);
}

.lenus-testimonial__avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(172, 4, 40, 0.08);
    color: var(--primary);
    font-size: 20px;
}

.lenus-testimonial__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.lenus-testimonial__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-dark);
    line-height: 1.3;
}

.lenus-testimonial__role {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Carousel chrome */
.lenus-testimonials__carousel {
    position: relative;
    padding: 0 60px;
}

.lenus-testimonials__swiper {
    overflow: hidden;
    padding: 10px 4px 50px;
}

.lenus-testimonials__swiper .swiper-slide {
    height: auto;
    display: flex;
}

.lenus-testimonials__swiper .swiper-slide > .lenus-testimonial {
    width: 100%;
}

.lenus-testimonials__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--blue-dark);
    border: 1px solid rgba(13, 27, 61, 0.15);
    cursor: pointer;
    font-size: 18px;
    z-index: 2;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lenus-testimonials__nav:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.lenus-testimonials__nav--prev { left: 0; }
.lenus-testimonials__nav--next { right: 0; }

.lenus-testimonials__nav.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.lenus-testimonials__pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.lenus-testimonials__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(13, 27, 61, 0.2);
    opacity: 1;
    transition: background-color 0.25s ease, width 0.25s ease;
    cursor: pointer;
}

.lenus-testimonials__pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 10px;
}

/* ========== PAGE HEAD ========== */
.lenus-pagehead {
    position: relative;
    background: var(--primary-dark);
    color: #ffffff;
    padding: 30px 0;
    overflow: hidden;
}

.lenus-pagehead__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 92% 30%, rgba(211, 26, 63, 0.50), transparent 60%),
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 2px);
    background-size: auto, 22px 22px;
    pointer-events: none;
}

.lenus-pagehead__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 ;
    color: var(--blue-dark);
}

.lenus-pagehead__crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--blue-dark);
}

.lenus-pagehead__crumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

.lenus-pagehead__crumb a:hover {
    color: #ffb84d;
}

.lenus-pagehead__crumb i {
    font-size: 11px;
}

/* ========== SHOP ========== */
.lenus-shop {
    background: #f4f5f9;
    padding: 30px 0 70px;
}

/* ----- Sidebar ----- */
.lenus-shop__sidebar {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    padding: 4px 22px 24px;
    position: sticky;
    top: 90px;
}

.lenus-filter {
    padding: 20px 0;
    border-bottom: 1px solid rgba(13, 27, 61, 0.08);
}

.lenus-filter:last-of-type {
    border-bottom: none;
}

.lenus-filter__title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue-dark);
    margin: 0 0 14px;
}

.lenus-filter__title::before {
    content: "";
    width: 3px;
    height: 14px;
    background: var(--primary);
}

.lenus-shop-search-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.lenus-shop-search {
    position: relative;
    flex: 1;
}

.lenus-shop-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
}

.lenus-shop-search input {
    width: 100%;
    padding: 11px 12px 11px 36px;
    border: 1px solid rgba(13, 27, 61, 0.15);
    background: #ffffff;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.25s ease;
}

.lenus-shop-search input:focus {
    border-color: var(--primary);
}

.lenus-filter__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.lenus-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #44506b;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lenus-check:hover {
    color: var(--primary);
}

.lenus-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.lenus-check span {
    flex: 1;
}

.lenus-check em {
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: #f4f5f9;
    padding: 2px 9px;
}

.lenus-shop__select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(13, 27, 61, 0.15);
    background: #ffffff;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
    transition: border-color 0.25s ease;
}

.lenus-shop__select:focus {
    border-color: var(--primary);
}

.lenus-filter__reset {
    flex-shrink: 0;
    width: 44px;
    background: var(--blue-dark);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.lenus-filter__reset:hover {
    background: var(--primary);
}

.lenus-filter__reset[hidden] {
    display: none;
}

/* ----- Toolbar (count + sort) ----- */
.lenus-shop__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-left: 3px solid var(--primary);
    padding: 13px 18px;
    margin-bottom: 24px;
}

.lenus-shop__count {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

.lenus-shop__sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lenus-shop__sort label {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-dark);
    white-space: nowrap;
}

.lenus-shop__sort .lenus-shop__select {
    width: auto;
    min-width: 190px;
}

/* ----- Product card ----- */
.lenus-pcard {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.lenus-pcard:hover {
    transform: translateY(-5px);
    border-color: rgba(172, 4, 40, 0.30);
}

.lenus-pcard__media {
    position: relative;
    height: 240px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.lenus-pcard__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.lenus-pcard:hover .lenus-pcard__media img {
    transform: scale(1.06);
}

.lenus-pcard__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 18px 18px;
    border-top: 1px solid rgba(13, 27, 61, 0.06);
}

.lenus-pcard__category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}

.lenus-pcard__name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--blue-dark);
    margin: 0 0 10px;
}

.lenus-pcard__desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.lenus-pcard__price {
    font-size: 19px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 14px;
}

.lenus-pcard__price small {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.lenus-pcard__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.lenus-pcard__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 10px;
    border: 1px solid;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lenus-pcard__btn--ghost {
    background: #ffffff;
    color: var(--blue-dark);
    border-color: rgba(13, 27, 61, 0.20);
}

.lenus-pcard__btn--ghost:hover {
    background: var(--blue-dark);
    color: #ffffff;
    border-color: var(--blue-dark);
}

.lenus-pcard__btn--solid {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.lenus-pcard__btn--solid:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
}

/* ----- Empty state ----- */
.lenus-shop__empty {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    padding: 60px 20px;
    text-align: center;
    color: var(--text-muted);
}

.lenus-shop__empty i {
    font-size: 34px;
    color: rgba(13, 27, 61, 0.25);
}

.lenus-shop__empty p {
    margin: 14px 0 0;
    font-size: 15px;
}

/* ----- Pagination ----- */
.lenus-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.lenus-pagination button {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.12);
    border-radius: 6px;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lenus-pagination button:hover:not(:disabled):not(.is-active) {
    border-color: var(--primary);
    color: var(--primary);
}

.lenus-pagination button.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.lenus-pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ========== PRODUCT DETAIL ========== */
.lenus-pdp {
    background: #f4f5f9;
    padding: 30px 0 56px;
}

.lenus-pdp__card {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    padding: 28px;
}

/* ----- Gallery ----- */
@media (min-width: 992px) {
    .lenus-pdp__gallery {
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }
}

.lenus-pdp__main {
    position: relative;
    height: 420px;
    background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
    border: 1px solid rgba(13, 27, 61, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.lenus-pdp__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lenus-pdp__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.lenus-pdp__thumb {
    width: 86px;
    height: 86px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease;
}

.lenus-pdp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lenus-pdp__thumb:hover {
    border-color: rgba(172, 4, 40, 0.40);
}

.lenus-pdp__thumb.is-active {
    border-color: var(--primary);
}

.lenus-pdp__catalogue {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 16px;
    background: #f4f5f9;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-left: 3px solid var(--primary);
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.lenus-pdp__catalogue:hover {
    background: #eceef4;
}

.lenus-pdp__catalogue > .bi-file-earmark-pdf-fill {
    font-size: 28px;
    color: var(--primary);
}

.lenus-pdp__catalogue-body {
    display: flex;
    flex-direction: column;
}

.lenus-pdp__catalogue-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-dark);
}

.lenus-pdp__catalogue-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.lenus-pdp__catalogue > .bi-download {
    margin-left: auto;
    font-size: 17px;
    color: var(--blue-dark);
}

/* ----- Info ----- */
.lenus-pdp__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.lenus-pdp__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--blue-dark);
    margin: 8px 0 14px;
}

.lenus-pdp__price {
    font-size: 26px;
    font-weight: 600;
    color: var(--blue-dark);
}

.lenus-pdp__price small {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.lenus-pdp__certs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-dark);
    background: #f4f5f9;
    border-left: 3px solid var(--primary);
    padding: 7px 12px;
    margin: 14px 0;
}

.lenus-pdp__certs i {
    color: var(--primary);
    font-size: 14px;
}

.lenus-pdp__lead {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.lenus-pdp__highlights {
    list-style: none;
    margin: 18px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lenus-pdp__highlights li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #44506b;
}

.lenus-pdp__highlights i {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.lenus-pdp__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0;
}

.btn-outline-cta {
    background: #ffffff;
    color: var(--blue-dark);
    border: 1px solid rgba(13, 27, 61, 0.20);
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-outline-cta:hover {
    background: var(--blue-dark);
    color: #ffffff;
    border-color: var(--blue-dark);
}

.btn-fill-blue {
    background: var(--blue-dark);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.25s ease, gap 0.25s ease;
}

.btn-fill-blue:hover {
    background: var(--primary);
    color: #fff;
    gap: 12px;
}

.lenus-pdp__divider {
    height: 1px;
    background: rgba(13, 27, 61, 0.10);
    margin: 22px 0;
}

.lenus-pdp__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lenus-pdp__meta li {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lenus-pdp__meta-label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.lenus-pdp__meta-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-dark);
}

/* ----- Assurance / certification panel ----- */
.lenus-assurance__grid {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lenus-assurance__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #44506b;
}

.lenus-assurance__item i {
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.lenus-assurance__certs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lenus-cert-badge {
    width: 72px;
    height: 72px;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(13, 27, 61, 0.12);
    background: #ffffff;
}

.lenus-cert-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ----- Description / Specification tabs ----- */
.lenus-pdp-tabs {
    background: #f4f5f9;
    padding: 0 0 56px;
}

.lenus-pdp-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    border-bottom: 2px solid rgba(13, 27, 61, 0.10);
}

.lenus-pdp-tabs__btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.lenus-pdp-tabs__btn:hover {
    color: var(--blue-dark);
}

.lenus-pdp-tabs__btn.is-active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background-color: #ffffff;
}

.lenus-pdp-tabs__panel {
    display: none;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-top: none;
    padding: 30px;
}

.lenus-pdp-tabs__panel.is-active {
    display: block;
}

.lenus-pdp-tabs__panel h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue-dark);
    margin: 0 0 14px;
}

.lenus-pdp-tabs__panel p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 14px;
}

.lenus-pdp-tabs__panel p:last-child {
    margin-bottom: 0;
}

.lenus-spec {
    width: 100%;
    border-collapse: collapse;
}

.lenus-spec tr {
    border-bottom: 1px solid rgba(13, 27, 61, 0.08);
}

.lenus-spec tr:last-child {
    border-bottom: none;
}

.lenus-spec th,
.lenus-spec td {
    text-align: left;
    padding: 12px 16px;
    font-size: 14px;
    vertical-align: top;
}

.lenus-spec th {
    width: 38%;
    background: #f4f5f9;
    color: var(--blue-dark);
    font-weight: 600;
}

.lenus-spec td {
    color: #44506b;
}

/* ----- Related products ----- */
.lenus-related {
    background: #ffffff;
    border-top: 1px solid rgba(13, 27, 61, 0.08);
    padding: 56px 0 64px;
}

.lenus-related__head {
    margin-bottom: 26px;
}

.lenus-related__title {
    font-size: 28px;
    font-weight: 600;
    color: var(--blue-dark);
    margin: 6px 0 0;
}

.lenus-related__carousel {
    position: relative;
}

.lenus-related__swiper .swiper-slide {
    height: auto;
    display: flex;
}

.lenus-related__swiper .swiper-slide > .lenus-pcard {
    width: 100%;
}

.lenus-related__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--blue-dark);
    border: 1px solid rgba(13, 27, 61, 0.15);
    cursor: pointer;
    font-size: 18px;
    z-index: 2;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lenus-related__nav:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.lenus-related__nav--prev { left: 0; }
.lenus-related__nav--next { right: 0; }

.lenus-related__nav.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.lenus-related__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.lenus-related__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(13, 27, 61, 0.2);
    opacity: 1;
    transition: background-color 0.25s ease, width 0.25s ease;
    cursor: pointer;
}

.lenus-related__pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 10px;
}

/* ----- Warranty & Support tab ----- */
.lenus-warranty {
    list-style: none;
    margin: 18px 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lenus-warranty li {
    display: flex;
    gap: 12px;
}

.lenus-warranty li i {
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.lenus-warranty li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lenus-warranty li strong {
    font-size: 14px;
    color: var(--blue-dark);
}

.lenus-warranty li span {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
}

.lenus-warranty__note {
    margin: 0;
}

.lenus-warranty__note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.lenus-warranty__note a:hover {
    text-decoration: underline;
}

/* ========== CUSTOMER REVIEWS ========== */
.lenus-reviews {
    background: #f4f5f9;
    border-top: 1px solid rgba(13, 27, 61, 0.08);
    padding: 56px 0 60px;
}

.lenus-reviews__head {
    margin-bottom: 26px;
}

/* ----- Rating summary ----- */
.lenus-reviews__summary {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    padding: 28px 24px;
    text-align: center;
}

.lenus-reviews__score {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: var(--blue-dark);
}

.lenus-reviews__stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    font-size: 16px;
    color: #ffb84d;
    margin: 10px 0 6px;
}

.lenus-reviews__count {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 20px;
}

.lenus-reviews__bars {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lenus-reviews__bars li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.lenus-reviews__bars li > i {
    font-size: 11px;
    color: #ffb84d;
}

.lenus-reviews__bar {
    flex: 1;
    height: 6px;
    background: rgba(13, 27, 61, 0.08);
}

.lenus-reviews__bar span {
    display: block;
    height: 100%;
    background: var(--primary);
}

.lenus-reviews__bars em {
    font-style: normal;
    min-width: 20px;
    text-align: right;
}

/* ----- Review cards ----- */
.lenus-reviews__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lenus-review {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-left: 3px solid var(--primary);
    padding: 20px 22px;
}

.lenus-review__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.lenus-review__avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-dark);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.lenus-review__id {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lenus-review__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-dark);
}

.lenus-review__role {
    font-size: 12px;
    color: var(--text-muted);
}

.lenus-review__date {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

.lenus-review__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    color: #ffb84d;
    margin-bottom: 10px;
}

.lenus-review__verified {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #1a7d4b;
}

.lenus-review__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #44506b;
}

.lenus-reviews__cta {
    margin-top: 18px;
}

/* ========== ABOUT BANNER ========== */
.lenus-about-banner {
    position: relative;
    padding: 75px 0;
    background: var(--primary-dark);
    color: #ffffff;
    overflow: hidden;
}

.lenus-about-banner > .container {
    position: relative;
    z-index: 2;
}

.lenus-about-banner__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 88% 30%, rgba(211, 26, 63, 0.55), transparent 62%),
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 2px);
    background-size: auto, 22px 22px;
    pointer-events: none;
}

.lenus-about-banner__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lenus-about-banner__shape {
    position: absolute;
}

.lenus-about-banner__shape--ring {
    width: 180px;
    height: 180px;
    border: 22px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -70px;
    left: -60px;
}

.lenus-about-banner__shape--cross {
    top: 60px;
    right: 44%;
    color: rgba(255, 184, 77, 0.55);
    font-size: 26px;
}

.lenus-about-banner__shape--dot {
    width: 90px;
    height: 90px;
    bottom: -30px;
    right: 8%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 2px, transparent 3px);
    background-size: 16px 16px;
}

.lenus-about-banner__crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.55);
}

.lenus-about-banner__crumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.25s ease;
}

.lenus-about-banner__crumb a:hover {
    color: #ffb84d;
}

.lenus-about-banner__crumb i {
    font-size: 11px;
}

.lenus-about-banner__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffb84d;
    margin-bottom: 8px;
}

.lenus-about-banner__title {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 16px;
}

.lenus-about-banner__title span {
    color: #ffb84d;
}

.lenus-about-banner__text {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 24px;
    /* max-width: 560px; */
}

.lenus-about-banner__actions {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.lenus-about-banner__link {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 2px solid #ffb84d;
    padding-bottom: 3px;
    transition: color 0.25s ease;
}

.lenus-about-banner__link:hover {
    color: #ffb84d;
}

.lenus-about-banner__media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lenus-about-banner__media-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
    pointer-events: none;
}

.lenus-about-banner__illustration {
    position: relative;
    width: 100%;
    max-width: 375px;
    height: auto;
}

.lenus-about-banner__media-bleed {
    position: absolute;
    inset: 0;
    left: 55%;
    z-index: 1;
    overflow: hidden;
}

.lenus-about-banner__media-bleed::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, var(--primary-dark) 0%, rgba(13, 27, 61, 0.35) 22%, transparent 55%);
    pointer-events: none;
}

.lenus-about-banner__media-bleed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== ABOUT PILLARS ========== */
.py-lg-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

/* ========== ABOUT BENTO PILLARS (modern asymmetric grid) ========== */
.lenus-bento {
    background:
        radial-gradient(circle at 15% 10%, rgba(172, 4, 40, 0.06), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(13, 27, 61, 0.07), transparent 45%),
        #f1f2f6;
    padding: 50px 0px 60px 0px;
}

.lenus-bento__sub {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.lenus-bento__cell {
    position: relative;
    padding: 48px 36px 40px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.07);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.lenus-bento__cell:hover {
    transform: translateY(-4px);
    border-color: rgba(172, 4, 40, 0.30);
}

/* Top red accent — 56px stub that grows to full width on hover */
.lenus-bento__cell--light::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: var(--primary);
    transition: width 0.45s ease;
}

.lenus-bento__cell--light:hover::before {
    width: 100%;
}

/* Outlined number aligned with the title row (top-right) */
.lenus-bento__cell--light::after {
    content: attr(data-num);
    position: absolute;
    top: 40px;
    right: 36px;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(13, 27, 61, 0.22);
    pointer-events: none;
    transition: -webkit-text-stroke-color 0.35s ease;
}

.lenus-bento__cell--light:hover::after {
    -webkit-text-stroke-color: var(--primary);
}

@media (max-width: 575.98px) {
    .lenus-bento__cell {
        padding: 36px 24px 28px;
    }

    .lenus-bento__cell--light::after {
        font-size: 30px;
        top: 36px;
        right: 24px;
    }

    .lenus-bento__title {
        margin-right: 60px;
    }
}

/* ---------- Generic head row (number + icon) ---------- */
.lenus-bento__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.lenus-bento__num {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.lenus-bento__num--light {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.45) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lenus-bento__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(172, 4, 40, 0.10);
    color: var(--primary);
    font-size: 22px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.lenus-bento__cell--light:hover .lenus-bento__icon {
    background: var(--primary);
    color: #ffffff;
}

.lenus-bento__icon--gold {
    background: rgba(255, 184, 77, 0.18);
    color: #ffb84d;
}

.lenus-bento__icon--white {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.lenus-bento__title {
    position: relative;
    z-index: 1;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--blue-dark);
    margin: 0 80px 14px 0;
    transition: color 0.3s ease;
}

.lenus-bento__cell--light:hover .lenus-bento__title {
    color: var(--primary);
}

.lenus-bento__text {
    position: relative;
    z-index: 1;
}

.lenus-bento__title--light {
    color: #ffffff;
}

.lenus-bento__text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 20px;
    margin-bottom: 0;
}

.lenus-bento__text--light {
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- Chips (Pillar 01) ---------- */
.lenus-bento__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.lenus-bento__chips li {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-dark);
    padding: 6px 14px;
    background: #f4f5f9;
    border: 1px solid rgba(13, 27, 61, 0.08);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lenus-bento__chips--light li {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

/* ---------- Dark variant (Pillar 02) ---------- */
.lenus-bento__cell--dark {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: #ffffff;
}

.lenus-bento__glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(172, 4, 40, 0.40), transparent 65%);
    pointer-events: none;
}

.lenus-bento__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(13, 27, 61, 0.10);
}

.lenus-bento__stats > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lenus-bento__stat-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 1px;
}

.lenus-bento__stat-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Accent variant (Pillar 03) ---------- */
.lenus-bento__cell--accent {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    background-image:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.16), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.18), transparent 50%);
}

.lenus-bento__cell--accent .lenus-bento__title,
.lenus-bento__cell--accent .lenus-bento__text {
    color: #ffffff;
}

.lenus-bento__cell--accent .lenus-bento__text {
    color: rgba(255, 255, 255, 0.82);
}

/* ---------- Responsive type tuning ---------- */
@media (max-width: 991.98px) {
    .lenus-bento__heading {
        font-size: 34px;
    }

    .lenus-bento__title {
        font-size: 26px;
    }

    .lenus-bento__num {
        font-size: 48px;
    }
}

@media (max-width: 575.98px) {
    .lenus-bento__heading {
        font-size: 28px;
    }

    .lenus-bento__title {
        font-size: 22px;
    }

    .lenus-bento__num {
        font-size: 42px;
    }

    .lenus-bento__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .lenus-bento__stat-num {
        font-size: 18px;
    }
}


.lenus-about-pillars {
    background: #f7f8fb;
}

.lenus-about-pillars__num {
    font-size: 38px;
    color: rgba(172, 4, 40, 0.10);
    line-height: 1;
}

/* ========== COMPANY PROFILE — OVERVIEW SLIDER ========== */
.lenus-cp-slider {
    background: #ffffff;
    overflow: hidden;
    padding: 50px 0 60px;
}

.lenus-cp-swiper {
    position: relative;
    padding-bottom: 10px;
}

.lenus-cp-slide {
    position: relative;
    height: 100%;
    min-height: 380px;
    padding: 36px 32px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-top: 3px solid var(--primary);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.lenus-cp-slide:hover {
    transform: translateY(-6px);
    border-color: rgba(172, 4, 40, 0.30);
}

.lenus-cp-slide__num {
    position: absolute;
    top: 14px;
    right: 22px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(13, 27, 61, 0.20);
    pointer-events: none;
}

.lenus-cp-slide__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.lenus-cp-slide__head-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lenus-cp-slide__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(172, 4, 40, 0.10);
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.lenus-cp-slide:hover .lenus-cp-slide__icon {
    background: var(--primary);
    color: #ffffff;
}

.lenus-cp-slide__lbl {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0;
    line-height: 1;
}

.lenus-cp-slide__val {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--blue-dark);
    margin: 0;
    word-break: break-word;
    flex: 1;
    min-width: 0;
}

.lenus-cp-slide__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 18px;
}

.lenus-cp-slide__list {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(13, 27, 61, 0.08);
}

.lenus-cp-slide__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-dark);
    line-height: 1.55;
    padding: 6px 0;
}

.lenus-cp-slide__list li i {
    color: var(--primary);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.lenus-cp-swiper .swiper-slide {
    height: auto;
}

/* Swiper wrap — anchors the floating prev/next buttons */
.lenus-cp-swiper-wrap {
    position: relative;
}

/* Floating prev / next buttons centered on the slider edges */
.lenus-cp-swiper__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--blue-dark);
    border: 1px solid rgba(13, 27, 61, 0.12);
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.lenus-cp-swiper__prev {
    left: -22px;
}

.lenus-cp-swiper__next {
    right: -22px;
}

.lenus-cp-swiper__btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.lenus-cp-swiper__btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Pagination dots — centered below the slider */
.lenus-cp-swiper__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 36px;
}

.lenus-cp-swiper__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(13, 27, 61, 0.20);
    opacity: 1;
    border-radius: 0;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.lenus-cp-swiper__pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 28px;
}

@media (max-width: 767.98px) {
    .lenus-cp-swiper__btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lenus-cp-swiper__prev {
        left: 6px;
    }

    .lenus-cp-swiper__next {
        right: 6px;
    }
}

@media (max-width: 575.98px) {
    .lenus-cp-slide {
        padding: 28px 24px;
        min-height: 240px;
    }

    .lenus-cp-slide__val {
        font-size: 19px;
    }
}

/* ========== COMPANY PROFILE — MISSION & VISION ========== */
.lenus-cp-mv {
    /* background: #ffffff; */
    padding: 80px 0px;
}

.lenus-cp-mv__card {
    position: relative;
    padding: 40px 36px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.10);
    border-left: 3px solid var(--primary);
    transition: border-left-color 0.3s ease;
}

.lenus-cp-mv__card:hover {
    border-left-color: var(--blue-dark);
}

.lenus-cp-mv__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.lenus-cp-mv__head-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lenus-cp-mv__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(172, 4, 40, 0.10);
    color: var(--primary);
    font-size: 30px;
    flex-shrink: 0;
}

.lenus-cp-mv__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1;
}

.lenus-cp-mv__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: var(--blue-dark);
    margin: 0;
    word-break: break-word;
}

.lenus-cp-mv__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}

@media (max-width: 575.98px) {
    .lenus-cp-mv__card {
        padding: 32px 24px;
    }

    .lenus-cp-mv__title {
        font-size: 22px;
    }
}

/* ========== KEY FACTS — asymmetric brand-sheet split ========== */
.key_fact {
    padding: 80px 0px;
    background: #ffffff;
}

.key_fact__panel {
    border: 1px solid rgba(13, 27, 61, 0.10);
    overflow: hidden;
}

/* ---------- Left: brand identity panel ---------- */
.key_fact__brand {
    position: relative;
    height: 100%;
    padding: 48px 40px;
    background: #f7f8fb;
    border-right: 1px solid rgba(13, 27, 61, 0.08);
    display: flex;
    flex-direction: column;
}

.key_fact__logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
    align-self: flex-start;
}

.key_fact__brand-name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--blue-dark);
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.key_fact__brand-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 0 24px;
}

.key_fact__brand-meta i {
    color: var(--primary);
    font-size: 14px;
}

.key_fact__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.key_fact__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.10);
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.key_fact__badge i {
    color: var(--primary);
    font-size: 13px;
}

.key_fact__badge--status {
    color: #1e8c3a;
    border-color: rgba(30, 140, 58, 0.30);
}

.key_fact__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1e8c3a;
    box-shadow: 0 0 0 0 rgba(30, 140, 58, 0.55);
    animation: keyFactPulse 2s ease-out infinite;
    flex-shrink: 0;
}

@keyframes keyFactPulse {
    0%   { box-shadow: 0 0 0 0 rgba(30, 140, 58, 0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(30, 140, 58, 0); }
    100% { box-shadow: 0 0 0 0 rgba(30, 140, 58, 0); }
}

.key_fact__brand-note {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(13, 27, 61, 0.08);
}

/* ---------- Right: definition-list facts ---------- */
.key_fact__sheet {
    padding: 40px 40px 32px;
    background: #ffffff;
}

.key_fact__sheet-head {
    margin-bottom: 24px;
}

.key_fact__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.key_fact__sheet-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--blue-dark);
    letter-spacing: -0.3px;
    margin: 0;
}

.key_fact__list {
    margin: 0;
}

.key_fact__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(13, 27, 61, 0.15);
    align-items: baseline;
}

.key_fact__row:last-child {
    border-bottom: none;
}

.key_fact__row dt {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
}

.key_fact__row dd {
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-dark);
    margin: 0;
    line-height: 1.45;
    word-break: break-word;
}

.key_fact__mono {
    font-family: "Courier New", Consolas, monospace;
    letter-spacing: 0.5px;
}

@media (max-width: 991.98px) {
    .key_fact__brand {
        border-right: none;
        border-bottom: 1px solid rgba(13, 27, 61, 0.08);
        padding: 40px 32px;
    }

    .key_fact__sheet {
        padding: 32px 32px;
    }
}

@media (max-width: 575.98px) {
    .key_fact__brand {
        padding: 32px 24px;
    }

    .key_fact__sheet {
        padding: 28px 24px;
    }

    .key_fact__row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px 0;
    }
}


/* ========== FAQ PAGE ========== */
.faq_page{
    padding: 70px 0;
    background: #ffffff;
}

.faq_page .sticky{
    position: sticky;
    top: 100px;
}

.faq_page .sidebar_contact{
    padding: 36px 32px;
    background: var(--blue-dark);
    color: #ffffff;
    border-left: 3px solid var(--primary);
}

.faq_page .sidebar_contact h5{
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px;
}

.faq_page .sidebar_contact p{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.faq_page .sidebar_contact h6{
    margin: 24px 0 0;
    font-size: 18px;
    font-weight: 600;
}
.faq_page .sidebar_contact h6 a{
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.faq_page .sidebar_contact h6 a:hover{
    color: #ffb84d;
}

.faq_page .sidebar_contact__icon{
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 16px;
}

.faq_page .timing_section{
    padding: 36px 32px;
    background: #f7f8fb;
    border-left: 3px solid var(--primary);
    margin-top: 20px;
}

.faq_page .timing_section i{
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 16px;
}

.faq_page .timing_section h5{
    font-size: 22px;
    font-weight: 600;
    color: var(--blue-dark);
    margin: 0;
}
.faq_page .timing_section ul {
    margin-top: 16px;
    padding: 0;
}

.faq_page .timing_section ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(13, 27, 61, 0.10);
    list-style: none;
}
.faq_page .timing_section ul li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq_page .accordion-item{
    margin-bottom: 16px;
    border-radius: 0;
    border: 1px solid rgba(13, 27, 61, 0.10);
    overflow: hidden;
    background: #ffffff;
}

.faq_page .accordion-item:last-child{
    margin-bottom: 0;
}

.faq_page .accordion-button{
    border: none;
    border-radius: 0 !important;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--blue-dark);
    background: #ffffff;
}

.faq_page .accordion-button:focus{
    box-shadow: none;
    border-color: var(--primary);
}

.faq_page .accordion-button:not(.collapsed){
    background: #ffffff;
    box-shadow: none;
    font-weight: 600;
    color: var(--primary);
}

.faq_page .accordion-body{
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    padding: 0 24px 22px;
}

/* Replace Font Awesome chevron with Bootstrap Icons chevron */
.faq_page .accordion-button::after{
    background-image: none;
    background-color: var(--primary);
    content: "\F282"; /* bi-chevron-down */
    font-family: "bootstrap-icons" !important;
    color: #ffffff;
    text-align: center;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 0;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq_page .accordion-button:not(.collapsed)::after{
    transform: rotate(180deg);
    background-color: var(--blue-dark);
}

.features-list li{
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-muted);
    list-style: none;
}
/* ========== CTA BANNER (contained gradient card) ========== */
.lenus-cta {
    position: relative;
    padding: 60px 0;
    color: #ffffff;
}

.lenus-cta__inner {
    position: relative;
    padding: 56px;
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary) 45%, var(--primary) 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.lenus-cta__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 90% at 100% 0%, rgba(255, 255, 255, 0.10), transparent 60%),
        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(0, 0, 0, 0.30), transparent 65%);
    pointer-events: none;
}

/* Subtle decorative shapes */
.lenus-cta__shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.lenus-cta__shape--ring {
    top: -60px;
    right: -60px;
    left: auto;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.lenus-cta__shape--rule {
    display: none;
}

.lenus-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 20px;
    border-radius: 4px;
}

.lenus-cta__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 14px;
    padding-left: 38px;
    position: relative;
    opacity: 0.85;
}

.lenus-cta__eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 1px;
    background: #ffffff;
}

.lenus-cta__title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: #ffffff;
    margin: 0 0 4px;
    max-width: none;
    white-space: nowrap;
}

.lenus-cta__text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    /* max-width: 560px; */
}

.lenus-cta__aside {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.lenus-cta__contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 28px;
    margin-top: 10px;
}

.lenus-cta__contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.lenus-cta__contact i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    font-size: 13px;
    flex-shrink: 0;
}

.lenus-cta__contact:hover {
    color: #ffffff;
}

.lenus-cta__btn {
    background: #ffffff;
    color: var(--blue-dark);
    padding: 16px 34px;
    font-size: 16px;
}

.lenus-cta__btn:hover {
    background: var(--blue-dark);
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .lenus-cta__inner {
        padding: 48px 36px;
    }

    .lenus-cta__title {
        font-size: 26px;
        max-width: 100%;
        white-space: normal;
    }

    .lenus-cta__text {
        max-width: 100%;
    }

    .lenus-cta__contacts {
        justify-content: center;
    }

    .lenus-cta__aside {
        justify-content: center;
        margin-top: 28px;
    }
}

@media (max-width: 575.98px) {
    .lenus-cta {
        padding: 40px 0;
    }

    .lenus-cta__inner {
        padding: 40px 24px;
    }

    .lenus-cta__title {
        font-size: 26px;
    }
}


.out_journey{
    padding: 80px 0px;
}

.out_journey h2{
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
}

.out_journey p{
    font-size: 15px;
    font-weight: 300;
    opacity: 0.7;
    color: #000000;
}

.out_journey p.line{
    padding-left: 20px;
    border-left: 2px solid #ac0428;
    font-weight: 400;
}

.lenus-journey__carousel {
    position: relative;
}

.lenus-journey__swiper .swiper-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.lenus-journey__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 18px;
    z-index: 2;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lenus-journey__nav:hover {
    background: #ac0428;
    color: #ffffff;
    border-color: #ac0428;
}

.lenus-journey__nav--prev { left: 12px; }
.lenus-journey__nav--next { right: 12px; }

.lenus-journey__nav.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.lenus-journey__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.lenus-journey__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: background-color 0.25s ease, width 0.25s ease;
    cursor: pointer;
}

.lenus-journey__pagination .swiper-pagination-bullet-active {
    background: #ac0428;
    width: 10px;
}

.global_reach{
    padding: 80px 0px;
}

.global_reach h2{
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
}

.global_reach p{
    font-size: 15px;
    font-weight: 300;
    opacity: 0.7;
    color: #000000;
}
.global_reach ul li{
    list-style: none;
    margin-top: 20px;
}

.global_reach ul li i{
    color: #AB0428;
}
.global_reach ul li h6{
    font-size: 20px;
    color: #000000;
}

.responsible_practice{
    padding: 70px 0px;
    background: var(--primary-dark);
    max-width: calc(100% - 80px);
    margin: 0 auto 40px;
}
.responsible_practice h2{
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
    color: white;
}
.responsible_practice p{
    font-size: 15px;
    font-weight: 300;
    opacity: 0.7;
    color: white;
}

.responsible_practice .card{
    background: #ffffff;
    padding: 30px;
    height: 100%;
    border: none;
    border-radius: 0;
    border-top: 3px solid var(--primary);
}

.responsible_practice .card p{
    color: black;
    margin: 0px;
}

.commitment{
    padding: 80px 0px;
}

.commitment .wraper{
    padding: 20px;
    background: #ffedf1;
    max-width: 90%;
    margin: auto;
    border-left: 3px solid var(--primary);
}
.commitment .wraper img{
    width: 220px;
}

.commitment .wraper h5{
    font-size: 30px;
    font-weight: 600;
    color: #ac0428;
}

.commitment .wraper p{
    font-size: 15px;
    opacity: 0.6;
    margin: 0px;
}

.why_choose_us2{
    padding: 80px 0px;
    background: linear-gradient(rgba(255,255,255,0.5),rgba(255,255,255,0.5)), url(../images/bg.webp);
    background-size: cover;
    overflow: hidden;
}

.why_choose_us2 .title{
    margin-bottom: 40px;
}

.why_choose_us2 h2{
    margin-bottom: 0;
}

.why_choose_single{
    background: #ffffff;
    padding: 32px 28px;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-top: 3px solid var(--primary);
    border-radius: 0;
    box-shadow: none;
    min-height: 250px;
    transition: transform 0.3s ease, border-top-color 0.3s ease;
}

.why_choose_single:hover{
    transform: translateY(-6px);
    border-top-color: var(--blue-dark);
}

.why_choose_single h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.why_choose_single h5 span{
    min-width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 0;
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.why_choose_single p{
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    opacity: 1;
    margin: 0;
}

/* Swiper slides — let cards use full slide height */
.why_choose_us2 .swiper-slide{
    height: auto;
}

.why_choose_us2 .swiper-slide .why_choose_single{
    height: 100%;
}
/* ========== CONTACT PAGE HEADING (inside contact section) ========== */
.lenus-contact-heading__sub {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== CONTACT (modern split card) ========== */
.lenus-contact {
    position: relative;
    padding: 50px 0 50px;
    background: #f4f5f9;
    overflow: hidden;
}

/* Decorative offset block behind the card */
/* .lenus-contact::before {
    content: "";
    position: absolute;
    top: 60px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(172, 4, 40, 0.06);
    pointer-events: none;
} */

.lenus-contact .container {
    position: relative;
    z-index: 1;
}

.lenus-contact__card {
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* ----- Brand info panel (left) ----- */
.lenus-contact__info {
    position: relative;
    height: 100%;
    padding: 40px 34px 34px;
    background: var(--primary);
    color: #ffffff;
    overflow: hidden;
}

.lenus-contact__info::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
    pointer-events: none;
}

.lenus-contact__mark {
    position: absolute;
    bottom: -50px;
    right: 10px;
    font-family: 'Georgia', serif;
    font-size: 260px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.10);
    pointer-events: none;
    user-select: none;
}

.lenus-contact__badge {
    display: inline-block;
    position: relative;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
}

.lenus-contact__badge::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    vertical-align: middle;
    margin-right: 10px;
}

.lenus-contact__title {
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.2;
}

.lenus-contact__title span {
    color: #ffffff;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.lenus-contact__lead {
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 22px;
    max-width: 340px;
}

.lenus-contact__meta {
    position: relative;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 14px;
}

.lenus-contact__meta-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.lenus-contact__meta-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 15px;
}

.lenus-contact__meta-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.lenus-contact__meta-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.lenus-contact__meta-value {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.5;
    transition: opacity 0.25s ease;
}

a.lenus-contact__meta-value:hover {
    opacity: 0.75;
    color: #ffffff;
}

.lenus-contact__social {
    position: relative;
    display: flex;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.lenus-contact__social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.lenus-contact__social a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary);
}

/* ----- Form (right) ----- */
.lenus-contact__form {
    padding: 40px 38px 34px;
    margin: 0;
}

.lenus-contact__form-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--blue-dark);
    margin: 0 0 4px;
}

.lenus-contact__form-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 20px;
}

/* Toast notification — fixed to viewport, slides in from the right */
.lenus-toast {
    position: fixed;
    top: 110px;
    right: 24px;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 360px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border-left: 4px solid var(--blue-dark);
    box-shadow: 0 16px 40px rgba(13, 27, 61, 0.22);
    padding: 16px 14px 16px 18px;
    transform: translateX(calc(100% + 32px));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.lenus-toast.is-visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.lenus-toast__icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.lenus-toast__text {
    flex: 1;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--blue-dark);
}

.lenus-toast__close {
    background: transparent;
    border: 0;
    color: rgba(13, 27, 61, 0.35);
    cursor: pointer;
    font-size: 13px;
    padding: 3px;
    flex-shrink: 0;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.lenus-toast__close:hover {
    color: var(--blue-dark);
    background: rgba(13, 27, 61, 0.06);
}

.lenus-toast--success {
    border-left-color: #1c7a3d;
}

.lenus-toast--success .lenus-toast__icon {
    color: #1c7a3d;
}

.lenus-toast--error {
    border-left-color: var(--primary);
}

.lenus-toast--error .lenus-toast__icon {
    color: var(--primary);
}

@media (max-width: 480px) {
    .lenus-toast {
        top: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        max-width: none;
        transform: translateY(-120%);
    }

    .lenus-toast.is-visible {
        transform: translateY(0);
    }
}

input.lenus-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Floating-label field — outlined modern look */
.lenus-field {
    position: relative;
}

.lenus-field__input {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.18);
    padding: 15px 14px 8px;
    font-size: 14px;
    color: var(--blue-dark);
    font-family: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lenus-field__input:hover {
    border-color: rgba(13, 27, 61, 0.35);
}

.lenus-field__input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(172, 4, 40, 0.08);
}

.lenus-field__input--textarea {
    resize: vertical;
    min-height: 78px;
    padding-top: 18px;
}

.lenus-field__label {
    position: absolute;
    left: 14px;
    top: 13px;
    padding: 0 4px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(13, 27, 61, 0.55);
    background: #ffffff;
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, font-size 0.2s ease, color 0.2s ease, letter-spacing 0.2s ease;
}

.lenus-field__input:focus + .lenus-field__label,
.lenus-field__input:not(:placeholder-shown) + .lenus-field__label {
    top: -7px;
    left: 10px;
    font-size: 10px;
    color: var(--blue-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Select variant — chevron + always-floated label */
.lenus-field--select {
    position: relative;
}

.lenus-field__input--select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 38px;
    background: #ffffff;
    color: var(--blue-dark);
    cursor: pointer;
}

.lenus-field--select::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--blue-dark);
    border-bottom: 2px solid var(--blue-dark);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
    transition: border-color 0.25s ease;
}

.lenus-field--select:hover::after {
    border-color: var(--primary);
}

/* Select label is always in the floated position (since a select always shows something) */
.lenus-field--select .lenus-field__label {
    top: -7px;
    left: 10px;
    font-size: 10px;
    color: rgba(13, 27, 61, 0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.lenus-field__input--select:focus + .lenus-field__label {
    color: var(--blue-dark);
}

/* ========== MAP (standalone section) ========== */
.lenus-map {
    padding: 0 0 80px;
    background: #f4f5f9;
}

.lenus-map__inner {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.10);
    line-height: 0;
    overflow: hidden;
}

.lenus-map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(0.15) contrast(1.05);
}

.lenus-map__pin {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 14px;
    background: #ffffff;
    border-left: 3px solid var(--primary);
    color: var(--blue-dark);
    text-decoration: none;
    line-height: 1.3;
    transition: transform 0.25s ease;
}

.lenus-map__pin:hover {
    transform: translateY(-2px);
    color: var(--blue-dark);
}

.lenus-map__pin i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.lenus-map__pin span {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    color: var(--text-muted);
}

.lenus-map__pin strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 1px;
}

@media (max-width: 575.98px) {
    .lenus-map iframe {
        height: 320px;
    }
}

/* ========== MAP — embedded inside the contact card (index.html) ========== */
.lenus-contact__map {
    position: relative;
    background: #ffffff;
    line-height: 0;
    overflow: hidden;
    border-top: 1px solid rgba(13, 27, 61, 0.10);
}

.lenus-contact__map iframe {
    display: block;
    width: 100%;
    height: 340px;
    border: 0;
    filter: grayscale(0.15) contrast(1.05);
}

.lenus-contact__map-pin {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 12px;
    background: #ffffff;
    border-left: 3px solid var(--primary);
    color: var(--blue-dark);
    text-decoration: none;
    line-height: 1.3;
    transition: transform 0.25s ease;
}

.lenus-contact__map-pin:hover {
    transform: translateY(-2px);
    color: var(--blue-dark);
}

.lenus-contact__map-pin i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.lenus-contact__map-pin span {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    color: var(--text-muted);
}

.lenus-contact__map-pin strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 1px;
}

@media (max-width: 575.98px) {
    .lenus-contact__map iframe {
        height: 280px;
    }
}

/* ========== PRIVACY POLICY ========== */
.lenus-policy {
    padding: 60px 0 80px;
    background: #ffffff;
}

/* Content sections */
.lenus-policy__content {
    color: var(--text-muted);
}

.lenus-policy__section {
    position: relative;
    padding: 32px;
    margin-bottom: 18px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    scroll-margin-top: 100px;
}

.lenus-policy__section:last-child {
    margin-bottom: 0;
}

.lenus-policy__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--blue-dark);
    margin: 0 0 14px;
}

.lenus-policy__subtitle {
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-dark);
    margin: 18px 0 10px;
    letter-spacing: 0.2px;
}

.lenus-policy__content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 14px;
}

.lenus-policy__content p:last-child {
    margin-bottom: 0;
}

.lenus-policy__content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    transition: color 0.3s ease;
}

.lenus-policy__content a:hover {
    color: var(--blue-dark);
}

.lenus-policy__list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.lenus-policy__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--blue-dark);
    font-weight: 500;
}

.lenus-policy__list li i {
    color: var(--primary);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Contact section variant */
.lenus-policy__section--contact {
    background: #f7f8fb;
}

.lenus-policy__contact-list {
    margin-top: 14px;
}

.lenus-policy__contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-dark);
    border-bottom: 1px solid rgba(13, 27, 61, 0.08);
}

.lenus-policy__contact-list li:last-child {
    border-bottom: none;
}

.lenus-policy__contact-list li i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(172, 4, 40, 0.10);
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.lenus-policy__contact-list li a {
    color: var(--blue-dark);
    border-bottom: none;
}

.lenus-policy__contact-list li a:hover {
    color: var(--primary);
}

@media (max-width: 575.98px) {
    .lenus-policy__section {
        padding: 24px 20px;
    }

    .lenus-policy__title {
        font-size: 19px;
    }
}

/* ========== FOOTER ========== */
.lenus-footer {
    background: #e9ebf0;
    color: var(--text-muted);
    padding: 70px 0 0;
}

.lenus-footer__top {
    padding-bottom: 50px;
}

.lenus-footer__brand {
    display: inline-block;
    margin-bottom: 18px;
}

.lenus-footer__brand img {
    height: 45px;
    width: auto;
}

.lenus-footer__about {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 22px;
    max-width: 320px;
}

.lenus-footer__social {
    display: flex;
    gap: 10px;
    display: none;
}

.lenus-footer__social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 27, 61, 0.05);
    color: var(--blue-dark);
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(13, 27, 61, 0.15);
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    border-radius: 4px;
}

.lenus-footer__social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.lenus-footer__title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-dark);
    margin: 0 0 22px;
    position: relative;
    padding-bottom: 12px;
}

.lenus-footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--primary);
}

.lenus-footer__links,
.lenus-footer__contact {
    margin: 0;
    padding: 0;
}

.lenus-footer__links li,
.lenus-footer__contact li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.lenus-footer__links a,
.lenus-footer__contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.lenus-footer__links a:hover,
.lenus-footer__contact a:hover {
    color: var(--primary);
}

.lenus-footer__contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.lenus-footer__contact i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Company trust / credentials list (Company Info column) */
.lenus-footer__creds {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lenus-footer__cred {
    font-size: 13px;
    line-height: 1.6;
}

.lenus-footer__cred-label {
    font-weight: 600;
    color: var(--text-muted);
}

.lenus-footer__cred-label::after {
    content: ": ";
}

.lenus-footer__cred-value {
    font-weight: 600;
    color: var(--blue-dark);
    word-break: break-word;
}

.lenus-footer__bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(13, 27, 61, 0.10);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.lenus-footer__copy {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.lenus-footer__legal {
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.lenus-footer__legal a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.lenus-footer__legal a:hover {
    color: var(--primary);
}
