@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap);
*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    --cl--1--: #f5f5f5;
    --cl--2--: #292f36;
    --cl--3--: #4d5053;
    --cl--4--: #7b9fc5;
    --cl--5--: #678fb9;
    --gap--: clamp(1rem, 5vw, 5rem);
    background-color: var(--cl--1--);
    max-width: 100%;
    overflow-x: hidden;
    padding-top: 135px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: var(--cl--2--);
}
:root {
    --marquee-height-desktop: 50px;
    --marquee-height-mobile: 38px;
    --header-gap-desktop: 0px;
    --header-gap-mobile: 0px;


    --hero-bg: var(--cl--1--);
    --hero-text: var(--cl--2--);
    --hero-muted: var(--cl--3--);
    --hero-accent: var(--cl--5--);
    --hero-accent-soft: var(--cl--4--);

    --hero-white: rgba(255, 255, 255, 0.68);
    --hero-white-strong: rgba(255, 255, 255, 0.9);
    --hero-border: rgba(255, 255, 255, 0.76);

    --hero-gold: #f3b61f;
    --hero-gold-soft: #ffd86b;
    --hero-sale: #ef6b57;
    --hero-sale-dark: #d94f3a;
    --hero-price: #d62939;

    --hero-shadow: 0 20px 55px rgba(41, 47, 54, 0.10);
    --hero-shadow-soft: 0 10px 25px rgba(41, 47, 54, 0.06);

    --hero-radius-xl: 30px;
    --hero-radius-lg: 22px;
    --hero-radius-md: 18px;
}


img {
    display: block;
    max-width: 100%;
}
a {
    display: inline-block;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}
ul {
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", serif;
    text-transform: none;
    line-height: 125%;
}
.row {
    display: flex;
}
.flex {
    flex-wrap: wrap;
    gap: var(--gap--);
}
.flex > * {
    flex: 1 1 30rem;
}
.column {
    display: grid;
}
.grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap--);
}

.container {
    min-height: 10vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}
header#acasa.container {
    position: fixed;
    top: calc(var(--marquee-height-desktop) + var(--header-gap-desktop));
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px) !important;
    max-width: 1880px !important;
    margin: 0 !important;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.2rem;
    height: 90px;
    min-height: 90px;
    max-height: 90px;
    padding: 0 2.6rem !important;
    background: rgba(245, 245, 245, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}



header#acasa::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
   background: linear-gradient(
  90deg,
  transparent 0%,
  color-mix(in srgb, var(--cl--5--) 18%, transparent) 12%,
  color-mix(in srgb, var(--cl--5--) 55%, transparent) 50%,
  color-mix(in srgb, var(--cl--5--) 18%, transparent) 88%,
  transparent 100%
);
}

header#acasa::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 8%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
 background: radial-gradient(
  circle,
  color-mix(in srgb, var(--cl--4--) 12%, transparent) 0%,
  color-mix(in srgb, var(--cl--4--) 5%, transparent) 35%,
  color-mix(in srgb, var(--cl--4--) 0%, transparent) 72%
);
    pointer-events: none;
    filter: blur(10px);
}

.logo {
    position: relative;
    padding-left: 18px;
    z-index: 2;
    justify-self: start;
}

.logo::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--cl--4--), var(--cl--5--));
  box-shadow: 
  0 0 0 6px color-mix(in srgb, var(--cl--4--) 10%, transparent),
  0 0 18px color-mix(in srgb, var(--cl--4--) 28%, transparent);
}

.logo::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, var(--cl--4--), transparent);
}

.logo h3 {
    position: relative;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--cl--2--);
}

nav.navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    padding: 0 1.2rem;
    z-index: 2;
    justify-self: center;
}

nav.navigation::before,
nav.navigation::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 52px;
    height: 1px;
    transform: translateY(-50%);
    pointer-events: none;
}

nav.navigation::before {
    left: -6px;
    background: linear-gradient(90deg, transparent, rgba(133, 164, 86, 0.55));
}

nav.navigation::after {
    right: -6px;
    background: linear-gradient(90deg, rgba(133, 164, 86, 0.55), transparent);
}

nav.navigation a {
    position: relative;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.45rem 0.1rem;
    color: var(--cl--2--);
    fill: transparent;
    stroke: var(--cl--2--);
    letter-spacing: 0.2px;
}

nav.navigation a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--cl--4--),
        var(--cl--5--),
        transparent
    );
    transition: width 0.35s ease-in-out;
}

nav.navigation a::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    background: var(--cl--5--);
    box-shadow: 0 0 12px rgba(133, 164, 86, 0.35);
    transition: 0.35s ease-in-out;
}

nav.navigation a:hover,
nav.navigation a.active {
    color: var(--cl--5--);
    stroke: var(--cl--5--);
    transform: translateY(-1px);
}

nav.navigation a:hover::before,
nav.navigation a.active::before {
    width: 115%;
}

nav.navigation a:hover::after,
nav.navigation a.active::after {
    transform: translateX(-50%) scale(1);
}

nav.navigation a svg {
    transition: 0.35s ease-in-out;
}

nav.navigation a:hover svg,
nav.navigation a.active svg {
    transform: rotate(45deg);
}

.header-side {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 1rem;
    z-index: 2;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.34),
        rgba(255, 255, 255, 0.16)
    );
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 0 -1px 0 rgba(255, 255, 255, 0.18),
        0 10px 26px rgba(0, 0, 0, 0.06),
        0 2px 10px rgba(133, 164, 86, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.header-side::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.22),
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.18)
    );
    pointer-events: none;
    opacity: 0.8;
}

.header-benefits {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding-right: 1rem;
    border-right: 1px solid rgba(133, 164, 86, 0.22);
    position: relative;
    z-index: 2;
}

.header-benefits span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.42),
        rgba(255, 255, 255, 0.18)
    );
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        0 6px 14px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(133, 164, 86, 0.04);
    transition: 0.28s ease;
    -webkit-transition: 0.28s ease;
    position: relative;
    overflow: hidden;
}

.header-benefits span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    opacity: 0.9;
}

.header-benefits span:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.52),
        rgba(255, 255, 255, 0.24)
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        0 10px 18px rgba(0, 0, 0, 0.08),
        0 0 18px rgba(133, 164, 86, 0.10);
}

.header-benefits svg {
    width: 18px;
    height: 18px;
    stroke: var(--cl--5--);
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 1px 3px rgba(133, 164, 86, 0.14));
    position: relative;
    z-index: 2;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding-left: 0.15rem;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--cl--2--);
    line-height: 1;
    opacity: 0.96;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.30),
        rgba(255, 255, 255, 0.12)
    );
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 4px 12px rgba(0, 0, 0, 0.04);
    transition: 0.25s ease;
    -webkit-transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18%;
    width: 64%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.75),
        transparent
    );
}

.contact-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--cl--5--);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 15px;
    filter: drop-shadow(0 1px 3px rgba(133, 164, 86, 0.14));
}

.contact-item:hover {
    color: var(--cl--5--);
    transform: translateY(-1px);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.42),
        rgba(255, 255, 255, 0.18)
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        0 8px 18px rgba(0, 0, 0, 0.06),
        0 0 18px rgba(133, 164, 86, 0.08);
}

.contact-item:hover svg {
    transform: scale(1.06);
}

.toggleMenu {
    display: none;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.marquee,
.marquee .marquee-text {
    color: #f5f5f5;
    white-space: nowrap;
}

.marquee {
    width: 100%;
    overflow: hidden;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    padding: 11px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100002;
    min-height: var(--marquee-height-desktop);
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(18, 22, 28, 0.98) 0%,
            rgba(35, 41, 48, 0.98) 22%,
            rgba(48, 56, 65, 0.99) 50%,
            rgba(35, 41, 48, 0.98) 78%,
            rgba(18, 22, 28, 0.98) 100%
        );
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.marquee::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.50),
        transparent
    );
    pointer-events: none;
}

.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    left: -20%;
    width: 35%;
    height: 100%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 45%,
        rgba(255, 255, 255, 0.14) 50%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 100%
    );
    filter: blur(8px);
    animation: marqueeShine 7s linear infinite;
    pointer-events: none;
}

.marquee-inner {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 100%;
    position: relative;
    z-index: 2;
}

.marquee .marquee-text {
    display: inline-block;
    padding-right: 34px;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 16px rgba(255, 255, 255, 0.05);
    animation: 20s linear infinite marquee;
}

.spinner-container {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    overflow: hidden;

    background:
        radial-gradient(circle at 15% 20%, rgba(95, 240, 213, 0.10), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(3, 147, 121, 0.12), transparent 24%),
        radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(239, 245, 244, 0.34), rgba(226, 236, 234, 0.20));

    backdrop-filter: blur(22px) saturate(165%);
    -webkit-backdrop-filter: blur(22px) saturate(165%);

    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.premium-spinner {
    position: relative;
    width: 170px;
    height: 170px;
}

.premium-spinner::before {
    content: "";
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(95, 240, 213, 0.16) 0%,
        rgba(3, 147, 121, 0.10) 35%,
        rgba(3, 147, 121, 0.04) 55%,
        transparent 75%
    );
    filter: blur(18px);
    z-index: 0;
    animation: haloPulse 2.2s ease-in-out infinite;
}

.premium-spinner span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 1;
}

.premium-spinner span:nth-child(1) {
    border: 5px solid rgba(255, 255, 255, 0.18);
    border-top-color: #039379;
    border-right-color: rgba(95, 240, 213, 0.75);
    box-shadow:
        0 0 22px rgba(3, 147, 121, 0.18),
        0 0 50px rgba(95, 240, 213, 0.10);
    animation: spin 1.1s linear infinite;
}

.premium-spinner span:nth-child(2) {
    inset: 20px;
    border: 5px solid rgba(255, 255, 255, 0.10);
    border-bottom-color: #5ff0d5;
    border-left-color: rgba(3, 147, 121, 0.55);
    box-shadow:
        0 0 18px rgba(95, 240, 213, 0.18),
        0 0 36px rgba(3, 147, 121, 0.10);
    animation: spinReverse 1.7s linear infinite;
}

.premium-spinner span:nth-child(3) {
    inset: 48px;
    background: radial-gradient(circle at 30% 30%, #dffff8 0%, #7df7e0 18%, #1ecfb2 42%, #039379 70%, #026d5d 100%);
    box-shadow:
        0 0 0 14px rgba(95, 240, 213, 0.08),
        0 0 30px rgba(95, 240, 213, 0.35),
        0 0 70px rgba(3, 147, 121, 0.20);
    animation: pulse 1.6s ease-in-out infinite;
}

#loadingText {
    margin: 38px 0 0 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-align: center;
    line-height: 1.35;

    background: linear-gradient(90deg, #103a35 0%, #039379 30%, #5ff0d5 50%, #039379 70%, #103a35 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-shadow:
        0 0 1px rgba(255,255,255,0.24),
        0 0 14px rgba(95, 240, 213, 0.12);

    animation: textGlow 2.4s ease-in-out infinite, textShine 4s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinReverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.92);
        opacity: 0.92;
    }
    50% {
        transform: scale(1.10);
        opacity: 1;
    }
}

@keyframes haloPulse {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes textGlow {
    0%, 100% {
        opacity: 0.88;
        transform: translateY(0);
        filter: drop-shadow(0 0 8px rgba(95, 240, 213, 0.10));
    }
    50% {
        opacity: 1;
        transform: translateY(2px);
        filter: drop-shadow(0 0 18px rgba(95, 240, 213, 0.20));
    }
}

@keyframes textShine {
    0% { background-position: 0% center; }
    100% { background-position: 220% center; }
}
.hero-clean {
    padding: 18px 0 48px;
    margin-top: -4px;
    background: transparent;
}

.hero-clean .container {
    max-width: 1320px;
}

/* =========================
   LAYOUT
========================= */
.hero-clean__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
    gap: 54px;
    align-items: start;
}

/* =========================
   LEFT
========================= */
.hero-clean__media {
    padding-top: 0;
}

.hero-clean__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.62));
    border: 1px solid rgba(255,255,255,0.82);
    box-shadow: 0 24px 56px rgba(41, 47, 54, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-clean__image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(130deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.02) 56%, rgba(255,255,255,0.14) 100%);
}

.hero-clean__image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 32px;
    transition: opacity 0.25s ease;
}

.hero-clean__thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.hero-clean__thumb {
    width: 100%;
    height: 92px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.72));
    border: 1px solid rgba(255,255,255,0.88);
    box-shadow: 0 10px 24px rgba(41,47,54,0.06);
    transition: 0.25s ease;
}

.hero-clean__thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(133,164,86,0.36);
}

.hero-clean__thumb.active {
    border-color: var(--cl--5--);
    box-shadow: 0 0 0 4px rgba(133,164,86,0.12);
}

.hero-clean__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.84);
    background: rgba(255,255,255,0.82);
    color: var(--cl--2--) !important;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(41,47,54,0.14);
    cursor: pointer;
    display: none;
    transition: 0.25s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-clean__arrow:hover {
    background: rgba(255,255,255,0.96);
    transform: translateY(-50%) scale(1.05);
}

.hero-clean__arrow--left {
    left: 16px;
}

.hero-clean__arrow--right {
    right: 16px;
}

/* =========================
   RIGHT
========================= */
.hero-clean__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 10px;
}

.hero-clean__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.66);
    border: 1px solid rgba(255,255,255,0.86);
    box-shadow: 0 8px 18px rgba(41,47,54,0.05);
    color: var(--cl--5--) !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-clean__title {
    color: var(--cl--2--) !important;
    font-size: 39px;
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-clean__rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.hero-clean__stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.60);
    border: 1px solid rgba(255,255,255,0.84);
    box-shadow: 0 8px 18px rgba(41,47,54,0.05);
}

.hero-clean__stars span {
    color: #f2b01e !important;
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    animation: heroStarJump 1.7s infinite ease-in-out;
}

.hero-clean__stars span:nth-child(2) { animation-delay: 0.08s; }
.hero-clean__stars span:nth-child(3) { animation-delay: 0.16s; }
.hero-clean__stars span:nth-child(4) { animation-delay: 0.24s; }
.hero-clean__stars span:nth-child(5) { animation-delay: 0.32s; }

@keyframes heroStarJump {
    0%, 100% { transform: translateY(0); }
    20% { transform: translateY(-4px); }
    40% { transform: translateY(0); }
}

.hero-clean__rating-count {
    color: var(--cl--5--) !important;
    font-size: 20px;
    font-weight: 700;
}

.hero-clean__rating-text {
    color: var(--cl--2--) !important;
    font-size: 18px;
    font-weight: 600;
}

/* =========================
   FEATURES
========================= */
.hero-clean__features {
    width: 100%;
    margin-bottom: 22px;
    padding: 8px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.52));
    border: 1px solid rgba(255,255,255,0.88);
    box-shadow: 0 14px 28px rgba(41,47,54,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-clean__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 2px;
    position: relative;
}

.hero-clean__feature:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 42px;
    right: 0;
    bottom: 0;
    border-bottom: 1px dashed rgba(77, 80, 83, 0.28);
}

.hero-clean__feature-icon {
    width: 29px;
    height: 29px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--cl--4--) 0%, var(--cl--5--) 100%);
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(133,164,86,0.18);
}

.hero-clean__feature-text {
    color: var(--cl--2--) !important;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
}
/* =========================
   PRICING - REFINED VERSION
========================= */

.hero-clean__pricing {
    width: 100%;
    top: -8px;
    padding: 0 14px;
    margin-bottom: 12px;
    text-align: center;
    position: relative;
}

.hero-clean__pricing::before,
.hero-clean__pricing::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.16);
}

.hero-clean__pricing::before {
    margin-bottom: 18px;
}

.hero-clean__pricing::after {
    margin-top: 12px;
}

/* grupul de pret trebuie sa stea mereu lipit */
.hero-clean__prices-row {
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    gap: 0 !important;
    flex-wrap: nowrap !important;
    position: relative;
    vertical-align: top;
}

/* baza comuna */
.hero-clean__old-line,
.hero-clean__new-line {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 94px;
    padding: 15px 22px 14px;
    box-sizing: border-box;
}

/* PRET VECHI */
.hero-clean__old-line {
    background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
    border: 1px solid rgba(0,0,0,0.10);
    border-right: 0;
    border-radius: 24px 0 0 24px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.92),
        0 10px 24px rgba(0,0,0,0.06);
    z-index: 1;
}

/* PRET NOU - rosu mai inchis + gradient */
.hero-clean__new-line {
    margin-left: -1px;
    background: linear-gradient(180deg, #ff3146 0%, #f11a31 42%, #d70e24 78%, #bf081b 100%);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 0 24px 24px 0;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.14),
        inset 0 -10px 18px rgba(0,0,0,0.06),
        0 14px 28px rgba(191, 8, 27, 0.18);
    z-index: 2;
}

/* glow premium foarte fin */
.hero-clean__new-line::after {
    content: "";
    position: absolute;
    inset: auto 18px 0 18px;
    height: 18px;
    background: radial-gradient(circle, rgba(255,70,90,0.22) 0%, rgba(255,70,90,0) 72%);
    filter: blur(10px);
    pointer-events: none;
}

/* titluri */
.hero-clean__price-caption {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.hero-clean__old-line .hero-clean__price-caption {
    color: rgba(0,0,0,0.50) !important;
}

.hero-clean__price-caption--new {
    color: rgba(255,255,255,0.95) !important;
}

/* rand pret */
.hero-clean__price-value {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    line-height: 1;
    white-space: nowrap;
}

/* pret vechi */
.hero-clean__old-line .hero-clean__price-value {
    color: #111111 !important;
    font-size: 45px;
    font-weight: 900;
    text-decoration: line-through;
    text-decoration-thickness: 4px;
    text-decoration-color: rgba(0,0,0,0.28);
}

.hero-clean__old-line .hero-clean__price-value span,
.hero-clean__old-line .hero-clean__price-value small {
    color: #111111 !important;
    font-weight: 900;
}

.hero-clean__old-line .hero-clean__price-value small {
    font-size: 28px;
    font-weight: 800;
}

/* pret nou */
.hero-clean__price-value--new {
    color: #ffffff !important;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.hero-clean__price-value--new span,
.hero-clean__price-value--new small {
    color: #ffffff !important;
    font-weight: 900;
}

.hero-clean__price-value--new small {
    font-size: 28px;
}

/* =========================
   REDUCERE - FARA GLOW / MAI IEȘITĂ / DOAR SUS-JOS
========================= */

.hero-clean__discount-line {
    position: absolute !important;
    top: -20px;
    right: -60px;
    z-index: 30;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 2px;

    min-width: 94px;
    height: 44px;
    padding: 0 18px;

    border-radius: 16px;
    background: linear-gradient(180deg, #ffef72 0%, #ffd83a 58%, #ffc800 100%) !important;
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 10px 20px rgba(0,0,0,0.16);

    transform: rotate(-12deg);
    transform-origin: center;
    white-space: nowrap;
    overflow: visible;
    pointer-events: none;

    animation: discountFloatY 2.1s ease-in-out infinite;
}

/* minusul */
.hero-clean__discount-line .discount-prefix {
    display: inline-block !important;
    color: #151515 !important;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    margin-right: -2px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* procentul din CRM fără să dispară fundalul blocului */
.hero-clean__discount-line,
.hero-clean__discount-line * {
    color: #151515 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    border: none !important;
    box-shadow: none !important;
}

/* ascundem orice text vechi */
.hero-clean__discount-line .discount-label {
    display: none !important;
}

/* fallback daca CRM vine gol la refresh */
.hero-clean__discount-line .crm_discount_1:empty::before {
    content: " ";
    color: #151515;
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
}

/* doar miscare sus-jos */
@keyframes discountFloatY {
    0% {
        transform: rotate(-12deg) translateY(0);
    }
    50% {
        transform: rotate(-12deg) translateY(-6px);
    }
    100% {
        transform: rotate(-12deg) translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .hero-clean__old-line,
    .hero-clean__new-line {
        width: 210px;
        height: 88px;
        padding: 14px 16px 13px;
    }

    .hero-clean__price-caption {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .hero-clean__old-line .hero-clean__price-value,
    .hero-clean__price-value--new {
        font-size: 40px;
    }

    .hero-clean__old-line .hero-clean__price-value small,
    .hero-clean__price-value--new small {
        font-size: 23px;
    }

    .hero-clean__discount-line {
        top: -16px !important;
        right: -40px !important;
        min-width: 88px;
        height: 36px;
        padding: 0 16px;
        border-radius: 15px;
    }

    .hero-clean__discount-line .discount-prefix {
        font-size: 24px;
    }

    .hero-clean__discount-line .crm_discount_1,
    .hero-clean__discount-line span:last-child,
    .hero-clean__discount-line .crm_discount_1:empty::before {
        font-size: 20px;
    }

    
}

@media (max-width: 480px) {
    .hero-clean__prices-row {
        display: inline-flex !important;
        gap: 0 !important;
        flex-wrap: nowrap !important;
        font-size: 10;
    }

    .hero-clean__old-line,
    .hero-clean__new-line {
        width: 168px;
        height: 78px;
        padding: 12px 12px 11px;
    }

    .hero-clean__new-line {
        margin-left: -1px !important;
    }

    .hero-clean__price-caption {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .hero-clean__old-line .hero-clean__price-value,
    .hero-clean__price-value--new {
        font-size: 35px;
    }

    .hero-clean__old-line .hero-clean__price-value small,
    .hero-clean__price-value--new small {
        font-size: 19px;
    }

    .hero-clean__discount-line {
        top: -14px !important;
        right: -36px !important;
        min-width: 72px;
        height: 30px;
        padding: 0 14px;
        border-radius: 13px;
    }

    .hero-clean__discount-line .discount-prefix {
        font-size: 20px;
    }

    .hero-clean__discount-line .crm_discount_1,
    .hero-clean__discount-line span:last-child,
    .hero-clean__discount-line .crm_discount_1:empty::before {
        font-size: 17px;
    }

    
}
/* =========================
   TIMER
========================= */
.hero-clean__timer-wrap {
    width: 100%;
    margin-bottom: 5px;
       transform: translateY(-15px);
}

.hero-clean__timer-label {
    text-align: center;
    margin-bottom: 14px;
    color: var(--cl--3--) !important;
    font-size: 15px;
    font-weight: 600;
}

.hero-clean__timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-clean__time-box {
    position: relative;
    min-width: 96px;
    padding: 16px 10px 14px;
    border-radius: 22px;
   background:
  linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06)),
  linear-gradient(
    135deg,
    color-mix(in srgb, var(--cl--4--) 40%, transparent),
    color-mix(in srgb, var(--cl--5--) 30%, transparent) 42%,
    rgba(255,255,255,0.65) 100%
  );
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.60),
        0 14px 28px rgba(41,47,54,0.08);
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-clean__time-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.24), transparent 44%);
}

.hero-clean__time-box::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
}

.hero-clean__time-box span {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--cl--2--) !important;
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
}

.hero-clean__time-box small {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 7px;
    color: var(--cl--3--) !important;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-clean__time-sep {
    color: var(--cl--5--) !important;
    font-size: 24px;
    font-weight: 700;
}

/* =========================
   BUTTON - BLACK PREMIUM + SHINE + AUTO CLICK
========================= */
.hero-clean__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: calc(100% - 12px);
    max-width: 520px;
    min-height: 66px;
    padding: 0 24px;
    margin: 0 auto;

    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    text-decoration: none;

    color: #fff !important;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.01em;

    border: 1px solid rgba(255,255,255,0.12);

    background:
        linear-gradient(180deg, #2a2a2a 0%, #111111 55%, #000000 100%);

    box-shadow:
        0 14px 30px rgba(0,0,0,0.35),
        0 6px 14px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);

    transition:
        transform 0.18s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease;

    animation: heroBtnAutoPress 2s ease-in-out infinite;
}

/* highlight fin sus */
.hero-clean__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* LINIA DE STRĂLUCIRE */
.hero-clean__btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 26%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.55),
        rgba(255,255,255,0.25),
        transparent
    );
    transform: skewX(-22deg);
    z-index: 1;
    pointer-events: none;
    animation: heroBtnShine 3.2s ease-in-out infinite;
}

/* hover */
.hero-clean__btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow:
        0 20px 36px rgba(0,0,0,0.45),
        0 10px 20px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

/* click real */
.hero-clean__btn:active {
    transform: translateY(1px) scale(0.985);
    box-shadow:
        0 8px 16px rgba(0,0,0,0.28),
        inset 0 3px 8px rgba(0,0,0,0.5);
}

/* scoatem efectele vechi */
.hero-clean__btn-shine,
.hero-clean__btn-pulse {
    display: none;
}

/* text + icon */
.hero-clean__btn-text,
.hero-clean__btn svg {
    position: relative;
    z-index: 2;
}

.hero-clean__btn svg {
    stroke: #fff;
    transition: transform 0.2s ease;
    opacity: 0.95;
}

.hero-clean__btn:hover svg {
    transform: translateX(4px);
}


/* =========================
   AUTO CLICK (2 sec)
========================= */
@keyframes heroBtnAutoPress {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    45% {
        transform: translateY(0) scale(1);
    }

    55% {
        transform: translateY(2px) scale(0.985);
    }

    65% {
        transform: translateY(0) scale(1);
    }
}

/* shine animation */
@keyframes heroBtnShine {
    0% {
        left: -40%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    30% {
        left: 120%;
        opacity: 0;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .hero-clean__btn {
        width: calc(100% - 30px);
        min-height: 64px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-clean__btn {
        width: calc(100% - 18px);
        min-height: 64px;
    }
}

/* image transition */
.hero-clean__image.fade-out {
    opacity: 0;
}

.hero-clean__image.fade-in {
    opacity: 1;
}

/* =========================
   1580
========================= */
@media (max-width: 1580px) {
    .hero-clean__title {
        font-size: 37px;
    }

    .hero-clean__image {
        height: 600px;
    }
}

/* =========================
   1280
========================= */
@media (max-width: 1280px) {
    .hero-clean .container {
        max-width: 1200px;
    }

    .hero-clean__grid {
        gap: 34px;
    }

    .hero-clean__title {
        font-size: 34px;
    }

    .hero-clean__image {
        height: 530px;
    }

    .hero-clean__thumb {
        height: 82px;
    }

    .hero-clean__feature-text {
        font-size: 17px;
    }
}

/* =========================
   1000
========================= */
@media (max-width: 1000px) {
    .hero-clean {
        padding: 12px 0 38px;
        margin-top: 0;
    }

    .hero-clean__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-clean__title {
        font-size: 35px;
    }

    .hero-clean__image {
        height: 520px;
    }
}

/* =========================
   768
========================= */
@media (max-width: 768px) {
    .hero-clean {
        padding: 0 0 30px;
        margin-top: -14px;
    }

    .hero-clean .container {
        padding: 0 16px;
    }

    .hero-clean__grid {
        gap: 20px;
    }

    .hero-clean__image-wrap {
        border-radius: 24px;
    }

    .hero-clean__image {
        height: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 24px;
    }

    .hero-clean__thumbs {
        display: none;
    }

    .hero-clean__arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-clean__title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .hero-clean__rating-count,
    .hero-clean__rating-text {
        font-size: 16px;
    }

    .hero-clean__features {
        padding: 6px 14px;
        border-radius: 20px;
    }

    .hero-clean__feature {
        padding: 14px 0;
    }

    .hero-clean__feature-text {
        font-size: 15px;
    }

}

/* =========================
   480
========================= */
@media (max-width: 480px) {
    .hero-clean {
        margin-top: -18px;
    }

    .hero-clean .container {
        padding: 0 14px;
    }

    .hero-clean__title {
        font-size: 28px;
    }

    .hero-clean__stars {
        padding: 7px 10px;
    }

    .hero-clean__stars span {
        font-size: 18px;
    }

    .hero-clean__image {
        aspect-ratio: 1 / 1;
    }

    .hero-clean__arrow {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .hero-clean__arrow--left {
        left: 10px;
    }

    .hero-clean__arrow--right {
        right: 10px;
    }

}
/* ================= SECTION PREMIUM ================= */
.product-details {
  position: relative;
  padding: 80px 20px 65px; /* redus sus */
  background: linear-gradient(180deg, #f4f4f5 0%, #e4e4e7 100%);
  overflow: hidden;
}

/* grain */
.product-details::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .5;
}

/* strong black blur */
.product-details::after {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0,0,0,0.3), transparent 70%);
  top: -250px;
  right: -250px;
  filter: blur(150px);
}

.product-details__container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* ================= ITEM ================= */
.product-details__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.product-details__item:last-child {
  margin-bottom: 0;
}

/* divider */
.product-details__item::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.35), transparent);
}
.product-details__item:last-child::after {
  display: none;
}

/* ================= TEXT GLASS PREMIUM (MAJOR CHANGE) ================= */

/* TEXT WRAPPER GLASS CARD */
.product-details__text {
  position: relative;
  padding: 30px 34px;
  border-radius: 26px;

  /* iOS 26 ultra glass */
  background:
    linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.15));

  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);

  border: 1px solid rgba(255,255,255,0.45);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.12),
    0 2px 8px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(255,255,255,0.3);

  transition: all 0.45s cubic-bezier(.2,.6,.2,1);
}

/* dynamic light reflection */
.product-details__text::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.6) 0%,
    rgba(255,255,255,0.15) 40%,
    transparent 60%
  );

  opacity: 0.5;
  pointer-events: none;
}

/* top edge shine */
.product-details__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;

  background: linear-gradient(to right, transparent, rgba(255,255,255,0.9), transparent);

  opacity: 0.8;
}

/* subtle hover like iOS depth */
.product-details__text:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.16),
    0 5px 15px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}


/* top highlight reflection */
.product-details__text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  opacity: 0.6;
  pointer-events: none;
}

/* subtle edge shine */
.product-details__text::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), transparent 40%);
  opacity: 0.4;
  pointer-events: none;
}


/* subtle glow behind */
.product-details__text::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(0,0,0,0.08), transparent 70%);
  filter: blur(60px);
  z-index: -1;
}

/* TAG refined */
.product-details__tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: #6b7280;
  margin-bottom: 14px;
  display: inline-block;
}

/* TITLE clean + strong */
.product-details__text h2 {
  font-size: clamp(34px, 3.5vw, 46px);
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.2;
}

/* animated underline inside glass */
.product-details__text h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent, #111, transparent);
  animation: glassLine 2s linear infinite;
}

@keyframes glassLine {
  0% { transform: translateX(-40px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(40px); opacity: 0; }
}

/* PARAGRAPH */
.product-details__text p {
  font-size: 17px;
  line-height: 1.85;
  color: #374151;
}

/* hover subtle lift */
.product-details__text:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.7);
}

/* MOBILE */
@media (max-width: 1000px) {
  .product-details__text {
    padding: 22px 20px;
  }

  .product-details__text h2 {
    font-size: 28px;
  }
}

/* ================= MEDIA */ 
.product-details__media {
  position: relative;
  border-radius: 26px; /* radius inapoi + putin mai premium */
  overflow: hidden;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.7);

  transition: 0.4s ease;
}

.product-details__media img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.product-details__media::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(0,0,0,0.4), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(90px);
  z-index: -1;
}

.product-details__media:hover {
  transform: translateY(-5px);
}

.product-details__media:hover img {
  transform: scale(1.07);
}

/* ================= MOBILE ================= */
@media (max-width: 1000px) {
  .product-details {
    padding: 70px 20px 45px;
  }

  .product-details__item {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .product-details__item > .product-details__text { order: 1; }
  .product-details__item > .product-details__media { order: 2; }

  .product-details__text p {
    margin: auto;
  }
}

@media (max-width: 768px) {
  .product-details__text h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .product-details {
    padding: 60px 20px 40px;
  }

  .product-details__text h2 {
    font-size: 26px;
  }

  .product-details__text p {
    font-size: 15px;
  }
}


/* ================= SECTION ================= */
.features-section {
  padding: 60px 20px; /* 🔥 mai putin top */
  background: #f5f5f5;
}

/* ================= CONTAINER ================= */
.features-container {
  max-width: 1100px;
  margin: auto;
}

/* ================= HEADER ================= */
.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 {
  position: relative;
  display: inline-block;

  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: #111;
}

.features-header h2::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -10px;

  width: 100px;
  height: 3px;

  background: linear-gradient(90deg, transparent, #111, transparent);
  animation: lineSlide 2s linear infinite;
}

@keyframes lineSlide {
  0% { transform: translateX(-40px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(40px); opacity: 0; }
}

/* ================= LIST ================= */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;

  counter-reset: feature;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 36px;
}

/* ================= ITEM ================= */
.features-list li {
  position: relative;

  display: flex;
  align-items: baseline;
  gap: 14px;

  padding: 14px 20px; /* 🔥 mai putin pe verticala */

  font-size: 17px;
  line-height: 1.6;
  color: #1f2937;

  counter-increment: feature;

  border-radius: 18px;

  /* 🔥 fundal iOS grey */
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.6),
      rgba(235,235,235,0.4)
    );

  backdrop-filter: blur(14px) saturate(150%);

  /* 🔥 RAMA MAI GROASA */
  border: 1.5px solid rgba(160,160,160,0.45);

  /* 🔥 depth */
  box-shadow:
    0 3px 8px rgba(0,0,0,0.05),
    0 12px 25px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.04);

  transition: all 0.3s ease;
}

/* reflectie */
.features-list li::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.6),
    transparent 60%
  );

  opacity: 0.25;
}

/* ================= NUMAR ================= */
.features-list li::before {
  content: counter(feature, decimal-leading-zero);

  font-size: 18px;
  font-weight: 700;

  color: var(--cl--5--);

  min-width: 36px;
}

/* ================= HOVER ================= */
.features-list li:hover {
  transform: translateY(-3px);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.75),
      rgba(220,220,220,0.45)
    );

  border: 1.5px solid rgba(140,140,140,0.6);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.08),
    0 20px 40px rgba(0,0,0,0.06);
}

/* ================= RESPONSIVE ================= */

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

@media (max-width: 480px) {
  .features-section {
    padding: 60px 20px;
  }

  .features-list li {
    font-size: 15px;
    padding: 12px 16px;
  }
}


/* ================= SECTION ================= */
.advantages-section {
  padding: 20px 20px 60px;
  background: #f5f5f5;
}

/* ================= CONTAINER ================= */
.advantages-container {
  max-width: 1100px;
  margin: auto;
}

/* ================= HEADER ================= */
.advantages-header {
  text-align: center;
  margin-bottom: 60px;
}

.advantages-header h2 {
  position: relative;
  display: inline-block;

  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  color: #111;
}

/* linie animata */
.advantages-header h2::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -10px;

  width: 100px;
  height: 3px;

  background: linear-gradient(90deg, transparent, #111, transparent);
  animation: lineSlide 2s linear infinite;
}

@keyframes lineSlide {
  0% { transform: translateX(-40px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(40px); opacity: 0; }
}

/* paragraf */
.advantages-header p {
  margin-top: 20px;
  max-width: 800px;
  margin-inline: auto;

  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* ================= GRID ================= */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.adv-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ================= IMAGE ================= */
.adv-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;

  background: #fff;

  box-shadow:
    0 8px 25px rgba(0,0,0,0.08);
}

.adv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= TEXT ================= */
.adv-card h4 {
  position: relative;

  font-size: 18px;
  font-weight: 600;
  color: #111;
  line-height: 1.5;

  padding-left: 16px;
  letter-spacing: -0.2px;
}

/* linie verticala animata */
.adv-card h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;

  width: 3px;
  height: 22px;

  border-radius: 10px;

  background: linear-gradient(
    180deg,
    var(--cl--5--),
    transparent
  );

  animation: linePulse 2.5s ease-in-out infinite;
}

@keyframes linePulse {
  0% {
    opacity: 0.6;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
  100% {
    opacity: 0.6;
    transform: scaleY(0.8);
  }
}

/* ================= RESPONSIVE ================= */

/* 1280 */
@media (max-width: 1280px) {
  .advantages-container {
    max-width: 1000px;
  }
}

/* 1000 */
@media (max-width: 1000px) {
  .advantages-section {
    padding: 40px 20px;
  }
}

/* 768 */
@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .adv-card h4 {
    font-size: 15px;
  }
}

/* 🔥 480 FINAL FIX */
@media (max-width: 480px) {

  .advantages-section {
    padding: 30px 20px;
  }

  .advantages-header h2 {
    font-size: 26px;
  }

  .advantages-header p {
    font-size: 14px;
    line-height: 1.6;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* 🔥 TEXT SI MAI MIC */
  .adv-card h4 {
    font-size: 12px;   /* 🔥 redus */
    line-height: 1.35; /* 🔥 mai compact */
  }

  .adv-card h4::before {
    height: 16px; /* 🔥 ajustat proportional */
    top: 5px;
  }
}

/* ================= SECTION ================= */
.reviews-section {
  padding: 70px 20px 0 20px; /* 🔥 redus sus */
  background: #f5f5f5;
}

/* ================= CONTAINER ================= */
.reviews-container {
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.reviews-header {
  text-align: center;
  margin-bottom: 60px; /* 🔥 mai compact */
}

.reviews-header h2 {
  position: relative;
  display: inline-block;

  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
}

/* 🔥 LINIE ANIMATA */
.reviews-header h2::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -10px;

  width: 110px;
  height: 3px;

  background: linear-gradient(90deg, transparent, #111, transparent);
  animation: lineSlide 2s linear infinite;
}

@keyframes lineSlide {
  0% { transform: translateX(-40px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(40px); opacity: 0; }
}

/* ================= CARD ================= */
.review-card {
  padding: 26px;
  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.8),
    rgba(255,255,255,0.55)
  );

  backdrop-filter: blur(14px);

  border: 1.5px solid rgba(180,180,180,0.4);

  position: relative;
  overflow: hidden;
}

/* 🔥 glow subtil */
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top right,
    var(--cl--4--),
    transparent 60%
  );

  opacity: 0.15;
}

/* 🔥 edge highlight */
.review-card::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.05);
}

/* ================= USER ================= */
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;

  border: 2px solid var(--cl--4--);
}

.review-user h4 {
  font-size: 15px;
  font-weight: 600;
}

.review-user span {
  font-size: 12px;
  color: #666;
}

/* ================= STARS ================= */
.review-stars {
  margin-bottom: 10px;
  color: var(--cl--4--);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ================= TEXT ================= */
.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

/* ================= IMAGE ================= */
.review-media {
  border-radius: 16px;
  overflow: hidden;
}

.review-media img {
  width: 100%;
  height: auto;
}

/* ================= PAGINATION ================= */
.reviews-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* 🔥 bar style */
.swiper-pagination-bullet {
  width: 18px;
  height: 4px;
  border-radius: 10px;

  background: rgba(0,0,0,0.2);
  opacity: 1;

  transition: all 0.4s ease;
}

/* 🔥 activ */
.swiper-pagination-bullet-active {
  width: 36px;
  background: var(--cl--4--);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 768px) {
  .review-text {
    font-size: 14px;
  }
}

/* 🔥 MOBILE */
@media (max-width: 480px) {

  .reviews-section {
    padding: 50px 20px 0 20px; /* 🔥 mai compact */
  }

  .reviews-header {
    margin-bottom: 30px; /* 🔥 mult redus */
  }

  .reviews-header h2 {
    font-size: 26px;
  }

  .review-text {
    font-size: 13px;
  }

  .review-stars {
    font-size: 12px;
  }

}

/* ================= SECTION ================= */
.info-section {
  padding: 90px 20px 0 20px;
  background: linear-gradient(180deg, #f5f5f5, #ececec);
}

/* ================= CONTAINER ================= */
.info-container {
  max-width: 1000px;
  margin: auto;
}

/* ================= LIST ================= */
.info-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
/* 🔥 LINIA DE BAZA (statica, eleganta) */
.info-list::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;

  width: 2px;

 background: linear-gradient(
  180deg,
  transparent,
  color-mix(in srgb, var(--cl--4--) 30%, transparent),
  transparent
);
}

/* 🔥 LUMINA CARE CURGE */
.info-list::after {
  content: "";
  position: absolute;
  left: 20px;

  width: 2px;
  height: 80px;

  background: linear-gradient(
    180deg,
    transparent,
    var(--cl--4--),
    transparent
  );

  filter: blur(1px);

  animation: lightFlow 2.5s linear infinite;
}

/* 🔥 ANIMATIE CONTINUA (fara intrerupere reala) */
@keyframes lightFlow {
  0% {
    top: -80px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
/* ================= ITEM ================= */
.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* ================= ICON ================= */
.info-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: linear-gradient(
    135deg,
    var(--cl--4--),
    rgba(0,0,0,0.2)
  );

  color: #fff;

  position: relative;

  /* 🔥 glow + ring */
  box-shadow:
    0 6px 18px rgba(0,0,0,0.08),
    0 0 0 6px rgba(255,255,255,0.6);
}

/* 🔥 ring luminos */
.info-icon::after {
  content: "";
  position: absolute;
  inset: -6px;

  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.5);
}

/* svg icon */
.info-icon svg {
  width: 20px;
  height: 20px;
}

/* ================= CARD ================= */
.info-content {
  position: relative;
  padding: 20px 22px;
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.65)
  );

  backdrop-filter: blur(14px);

  border: 1px solid rgba(180,180,180,0.25);

  flex: 1;
  overflow: hidden;
}

/* 🔥 highlight interior */
.info-content::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.04);
}

/* 🔥 glow subtil */
.info-content::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;

  width: 120px;
  height: 120px;

  background: radial-gradient(circle, var(--cl--4--), transparent 70%);
  opacity: 0.18;
  filter: blur(50px);
}

/* ================= TITLE ================= */
.info-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

/* accent elegant */
.info-content h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 6px;

  background: linear-gradient(
    90deg,
    var(--cl--4--),
    transparent
  );
}

/* ================= TEXT ================= */
.info-content p {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 768px) {
  .info-section {
    padding: 70px 20px 0 20px;
  }
}

/* 🔥 MOBILE */
@media (max-width: 480px) {

  .info-list {
    gap: 26px;
  }

  .info-list::before {
    left: 16px;
  }

  .info-icon {
    width: 36px;
    height: 36px;
  }

  .info-icon svg {
    width: 16px;
    height: 16px;
  }

  .info-content {
    padding: 16px 16px;
    border-radius: 16px;
  }

  .info-content h4 {
    font-size: 15px;
  }

  .info-content p {
    font-size: 13px;
  }
}
/* =========================
   SECTION
========================= */
.join {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 50px; /* 🔥 SPAȚIU ADĂUGAT */
    padding: 160px 20px;

    background: radial-gradient(circle at top, #5a5a5d, #3d3d40);
}

/* =========================
   CARD
========================= */
.call-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 90px 60px;
    border-radius: 32px;

    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(40px);

    border: 1px solid rgba(255,255,255,0.15);

    text-align: center;
}

/* =========================
   TOP LINE
========================= */
.top-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-line .line {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

/* =========================
   TITLE
========================= */
.call-content h2 {
    font-size: 2.8rem;
    color: #fff;
    margin: 25px 0 15px;
}

/* =========================
   TEXT
========================= */
.main-text {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* =========================
   STEPS
========================= */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 0;
}

/* STEP */
.step {
    padding: 26px 18px;
    border-radius: 18px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);

    text-align: center;
    transition: all 0.25s ease;
}

.step:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

/* ICON */
.step .icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;

    border-radius: 12px;
    background: rgba(255,255,255,0.06);

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.15);
}

.step .icon svg {
    width: 20px;
    fill: #fff;
}

/* STEP TEXT */
.step h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.step p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.4;
}

/* =========================
   BUTTON
========================= */
.call-btn {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    width: 100%;
    max-width: 520px;
    margin: 30px auto 0;

    padding: 22px 40px;

    border-radius: 20px;

    font-size: 22px;
    font-weight: 700;

    color: #000;
    text-decoration: none;

    background: linear-gradient(180deg, #ffffff, #dcdcdc);

    overflow: hidden;

    transition: all 0.3s ease;
}

/* BUTTON ICON */
.btn-icon {
    width: 20px;
    stroke: #000;
    stroke-width: 2;
    fill: none;
}

/* SHINE EFFECT */
.call-btn::after {
    content: "";
    position: absolute;

    top: 0;
    left: -40%;

    width: 35%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );

    transform: skewX(-20deg);

    animation: shineMove 2.8s infinite;
}

/* ANIMATION */
@keyframes shineMove {
    0% { left: -40%; }
    100% { left: 140%; }
}

/* HOVER */
.call-btn:hover {
    transform: translateY(-3px) scale(1.02);
}

/* CLICK */
.call-btn:active {
    transform: scale(0.98);
}

/* =========================
   NOTE
========================= */
.note {
    margin-top: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 700px) {
    .join {
        margin-top: 30px;
        padding: 100px 15px;
    }

    .call-box {
        padding: 50px 20px;
    }

    .call-content h2 {
        font-size: 2rem;
    }

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

    .call-btn {
        width: 100%;
        font-size: 20px;
    }
}
/* ===== IMPORT FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');


/* ===== FOOTER FULL BLEED ===== */
.footer {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}


/* ===== FUNDAL PREMIUM GRI ===== */
.footer::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        #fafafa 0%,
        #f1f1f1 50%,
        #ebebeb 100%
    );

    z-index: 0;
}


/* ===== WRAP ===== */
.footer-wrap {
    position: relative;
    z-index: 1;

    max-width: 1200px;
    margin: 0 auto;

    padding: 60px 20px 40px;

    font-family: 'Montserrat', sans-serif;
}


/* ===== LAYOUT ===== */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}


/* ===== BRAND ===== */
.footer-brand {
    position: relative;
    padding-right: 30px;
}

/* linie verticală elegantă */
.footer-brand::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    width: 1px;
    height: 55px;
    background: rgba(0,0,0,0.08);
}

.footer-brand h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #111;
    letter-spacing: -0.5px;
}

.footer-brand p {
    margin-top: 10px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-brand span {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
}


/* ===== LINKS ===== */
.footer-links {
    display: flex;
    gap: 60px;
}


/* ===== TITLURI ===== */
.col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #888;
    margin-bottom: 14px;
}


/* ===== LIST ===== */
.col ul {
    list-style: none;
    padding: 0;
}

.col li {
    margin-bottom: 10px;
}


/* ===== BUTTONS ===== */
.info-btn {
    background: none;
    border: none;
    padding: 0;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #444;

    cursor: pointer;
    transition: all 0.25s ease;
}

.info-btn:hover {
    color: #000;
    transform: translateX(5px);
}


/* ===== LINKS ===== */
.footer a {
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.footer a:hover {
    color: #000;
    transform: translateX(5px);
}


/* ===== BOTTOM ===== */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;

    border-top: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.4px;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand::after {
        display: none;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-wrap {
        padding: 50px 20px 30px;
    }

    .footer-brand h2 {
        font-size: 1.7rem;
    }
}
/* ===== MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;

    visibility: hidden;
}

/* ===== ACTIV ===== */
.modal.active {
    visibility: visible;
}

/* ===== OVERLAY ===== */
.modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active .modal-overlay {
    opacity: 1;
}

/* ===== BOX ===== */
.modal-box {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 780px;

    max-height: 75vh;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 18px;
    padding: 28px;

    border: 1px solid rgba(255,255,255,0.4);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.12),
        0 8px 20px rgba(0,0,0,0.05);

    display: flex;
    flex-direction: column;

    transform: translateY(15px);

    opacity: 0;
    transition: all 0.25s ease;
}

/* ===== ACTIVE BOX ===== */
.modal.active .modal-box {
    opacity: 1;
    transform: translateY(15px);
}

/* ===== HEADER ===== */
.modal-header {
    margin-bottom: 12px;
}

.modal-header h2 {
    font-size: 1.35rem;
    font-weight: 500;
    color: #111;
}

/* ===== BODY ===== */
.modal-body {
    overflow-y: scroll; /* 👈 IMPORTANT: mereu vizibil */
    -webkit-overflow-scrolling: touch;

    padding-right: 10px;

    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;

    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgba(120,120,120,0.7) rgba(0,0,0,0.05);
}

/* ===== TEXT ===== */
.modal-body h2,
.modal-body h3 {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #111;
}

.modal-body p {
    margin-bottom: 10px;
}

/* ===== LISTE ===== */
.modal-body ul,
.modal-body ol {
    padding-left: 24px;
    margin-bottom: 12px;
}

.modal-body ol {
    list-style-position: outside;
}

.modal-body li {
    margin-bottom: 6px;
}

/* ===== SCROLLBAR ===== */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(120,120,120,0.7); /* gri clar */
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(80,80,80,0.9);
}

/* ===== CLOSE ===== */
.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;

    border: none;
    background: none;

    font-size: 20px;
    color: #888;
    cursor: pointer;
}

.modal-close:hover {
    color: #111;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {

    .modal {
        align-items: flex-start;
        padding-top: 100px; /* 👈 coborât */
    }

    .modal-box {
        max-height: 80vh;
        padding: 20px;
        border-radius: 16px;
    }

    .modal-header h2 {
        font-size: 1.1rem;
    }

    /* scrollbar și mai vizibil pe mobil */
    .modal-body::-webkit-scrollbar {
        width: 6px;
    }

    .modal-body::-webkit-scrollbar-thumb {
        background: rgba(100,100,100,0.9);
    }
}

@media (max-width: 1580px) {
    header#acasa.container {
        grid-template-columns: auto 1fr auto;
        gap: 0.8rem;
        padding: 0 1rem !important;
    }

    .logo h3 {
        font-size: 30px;
    }

    nav.navigation {
        gap: 1.1rem;
        padding: 0 0.5rem;
    }

    nav.navigation a {
        font-size: 0.96rem;
    }

    .header-side {
        gap: 0.7rem;
        padding: 0.35rem 0.55rem;
        border-radius: 18px;
    }

    .header-benefits {
        gap: 0.35rem;
        padding-right: 0.7rem;
    }

    .header-benefits span {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .header-benefits svg {
        width: 16px;
        height: 16px;
    }

    .header-contact {
        gap: 0.55rem;
    }

    .contact-item {
        font-size: 11px;
        gap: 0.35rem;
        padding: 0.38rem 0.55rem;
    }

    .contact-item svg {
        width: 13px;
        height: 13px;
        flex: 0 0 13px;
    }
}

@media (max-width: 1280px) {
    header#acasa.container {
        grid-template-columns: auto 1fr auto;
        gap: 0.55rem;
        padding: 0 0.75rem !important;
    }

    .logo {
        padding-left: 18px;
    }

    .logo::before {
        width: 7px;
        height: 7px;
    }

    .logo::after {
        width: 34px;
    }

    .logo h3 {
        font-size: 20px;
    }

    nav.navigation {
        gap: 0.7rem;
        padding: 0 0.25rem;
    }

    nav.navigation::before,
    nav.navigation::after {
        width: 34px;
    }

    nav.navigation a {
        font-size: 0.74rem;
        padding: 0.35rem 0.05rem;
    }

    .header-side {
        gap: 0.45rem;
        padding: 0.22rem 0.35rem;
        border-radius: 15px;
    }

    .header-benefits {
        gap: 0.22rem;
        padding-right: 0.45rem;
    }

    .header-benefits span {
        width: 30px;
        height: 30px;
        border-radius: 9px;
    }

    .header-benefits svg {
        width: 14px;
        height: 14px;
    }

    .header-contact {
        gap: 0.35rem;
        padding-left: 0;
    }

    .contact-item {
        font-size: 10px;
        gap: 0.25rem;
        padding: 0.3rem 0.42rem;
        border-radius: 999px;
    }

    .contact-item svg {
        width: 11px;
        height: 11px;
        flex: 0 0 11px;
    }
}

@media (max-width: 1000px) {
    .marquee {
        min-height: var(--marquee-height-mobile);
        padding: 7px 0;
        font-size: 15px;
        letter-spacing: 0.25px;
    }

    .marquee .marquee-text {
        padding-right: 22px;
        animation-duration: 16s;
    }
}

@media (max-width: 1000px) {
    :root {
        --mobile-header-height: 72px;
        --mobile-header-radius: 22px;
        --mobile-nav-overlap: 22px;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(8, 10, 14, 0.10);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
        z-index: 99990;
    }

    header#acasa.container {
        position: fixed;
        top: var(--marquee-height-mobile);
        left: 50%;
        transform: translateX(-50%) !important;
        width: calc(100% - 20px) !important;
        max-width: 1880px !important;
        margin: 0 !important;
        padding: 0 14px !important;
        height: var(--mobile-header-height);
        min-height: var(--mobile-header-height);
        max-height: var(--mobile-header-height);
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 0.65rem;
        z-index: 100000;
        background: rgba(245, 245, 245, 0.34);
        border: 1px solid rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom-left-radius: var(--mobile-header-radius);
        border-bottom-right-radius: var(--mobile-header-radius);
        box-shadow:
            0 14px 28px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
        box-sizing: border-box;
        overflow: visible;
    }

    header#acasa::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: linear-gradient(
  90deg,
  transparent 0%,
  color-mix(in srgb, var(--cl--5--) 15%, transparent) 12%,
  color-mix(in srgb, var(--cl--5--) 42%, transparent) 50%,
  color-mix(in srgb, var(--cl--5--) 15%, transparent) 88%,
  transparent 100%
);
    }

    header#acasa::after {
        content: "";
        position: absolute;
        top: 4px;
        right: 8%;
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: radial-gradient(
  circle,
  color-mix(in srgb, var(--cl--4--) 10%, transparent) 0%,
  color-mix(in srgb, var(--cl--4--) 4%, transparent) 35%,
  color-mix(in srgb, var(--cl--4--) 0%, transparent) 72%
);
        pointer-events: none;
        filter: blur(12px);
    }

    .logo {
        position: relative;
        padding-left: 14px;
        z-index: 1006;
        justify-self: start;
    }

    .logo::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, var(--cl--4--), var(--cl--5--));
        box-shadow:
            0 0 0 5px rgba(166, 195, 121, 0.10),
            0 0 14px rgba(133, 164, 86, 0.20);
    }

    .logo::after {
        content: "";
        position: absolute;
        left: 4px;
        top: 50%;
        transform: translateY(-50%);
        width: 26px;
        height: 1px;
        background: linear-gradient(90deg, var(--cl--4--), transparent);
    }

    .logo h3 {
        position: relative;
        font-size: 23px;
        font-weight: 700;
        letter-spacing: 0.2px;
        color: var(--cl--2--);
    }

  .toggleMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.26),
        rgba(255, 255, 255, 0.10)
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 8px 18px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100001;
    overflow: hidden;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.toggleMenu::before {
    content: "";
    position: absolute;
    display: none;
}

.toggleMenu::after {
    content: "";
    position: absolute;
    display: none;
}

.toggleMenu span {
    position: relative;
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--cl--2--);
    transition: 0.3s ease;
}

.toggleMenu span::before,
.toggleMenu span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--cl--2--);
    transition: 0.3s ease;
}

.toggleMenu span::before {
    top: -6px;
}

.toggleMenu span::after {
    top: 6px;
}

.toggleMenu.active {
   background: linear-gradient(
  180deg,
  color-mix(in srgb, var(--cl--4--) 20%, transparent),
  color-mix(in srgb, var(--cl--5--) 8%, transparent)
);
   border-color: color-mix(in srgb, var(--cl--4--) 24%, transparent);border-color: color-mix(in srgb, var(--cl--4--) 24%, transparent);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.20),
        0 8px 18px rgba(0, 0, 0, 0.10);
}

.toggleMenu.active span {
    background: transparent;
}

.toggleMenu.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.toggleMenu.active span::after {
    top: 0;
    transform: rotate(-45deg);
}

    .header-side {
        display: none !important;
    }

    nav.navigation {
    position: fixed !important;
    top: calc(var(--marquee-height-mobile) + var(--mobile-header-height) - var(--mobile-nav-overlap)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 20px) !important;
    max-width: 1880px !important;
    bottom: 60px !important;

    height: calc(100dvh - (var(--marquee-height-mobile) + var(--mobile-header-height)) + var(--mobile-nav-overlap) - 60px) !important;
    min-height: calc(100dvh - (var(--marquee-height-mobile) + var(--mobile-header-height)) + var(--mobile-nav-overlap) - 60px) !important;
    max-height: calc(100dvh - (var(--marquee-height-mobile) + var(--mobile-header-height)) + var(--mobile-nav-overlap) - 60px) !important;

    margin: 0 !important;
    padding: 34px 18px 18px !important;
    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

background: linear-gradient(
    180deg,
    rgba(10, 14, 20, 0.80) 0%,
    rgba(7, 10, 16, 0.91) 100%
) !important;
backdrop-filter: blur(28px);
-webkit-backdrop-filter: blur(28px);

    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-top: none !important;
    border-top-left-radius: var(--mobile-header-radius) !important;
    border-top-right-radius: var(--mobile-header-radius) !important;
    border-bottom-left-radius: var(--mobile-header-radius) !important;
    border-bottom-right-radius: var(--mobile-header-radius) !important;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transition:
        opacity 0.24s ease,
        visibility 0.24s ease !important;

    z-index: 99999 !important;
}

    nav.navigation.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    nav.navigation::before,
    nav.navigation::after,
    nav.navigation a::after {
        display: none !important;
        content: none !important;
    }

    nav.navigation a {
        position: relative;
        display: block !important;
        width: 100% !important;
        margin: 0 0 14px 0 !important;
        padding: 12px 6px 14px !important;

        text-align: center !important;
        font-size: 1rem !important;
        font-weight: 650 !important;
        line-height: 1.2 !important;
        letter-spacing: 0.1px !important;
        color: rgba(255, 255, 255, 0.92) !important;

        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;

        transition:
            color 0.22s ease,
            letter-spacing 0.22s ease,
            opacity 0.22s ease !important;
    }

    nav.navigation a:not(:last-of-type) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    nav.navigation a:hover,
    nav.navigation a.active {
        color: #eef4e2 !important;
        letter-spacing: 0.18px !important;
    }

    nav.navigation a::before {
        display: none !important;
        content: none !important;
    }

    nav.navigation a.active::before {
        display: block !important;
        content: "" !important;
        position: absolute;
        left: 50%;
        bottom: 7px;
        transform: translateX(-50%);
        width: 78px;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(
  90deg,
  transparent,
  color-mix(in srgb, var(--cl--4--) 95%, transparent),
  transparent
);
    }

    nav.navigation .header-side {
        display: none !important;
    }

nav.navigation.active .header-side.active {
    display: flex !important;
    width: 100% !important;
    margin-top: 28px !important;
    padding-top: 16px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.9rem !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    position: relative !important;
    z-index: 2 !important;
}

    nav.navigation.active .header-side.active::before {
        display: none !important;
        content: none !important;
    }

    nav.navigation.active .header-side.active .header-benefits {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.7rem !important;
        padding: 0.95rem 0 0.9rem 0 !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    nav.navigation.active .header-side.active .header-benefits span {
        width: 40px !important;
        height: 40px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 12px !important;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.03)
        ) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 4px 12px rgba(0, 0, 0, 0.10) !important;
    }

    nav.navigation.active .header-side.active .header-benefits svg {
        width: 15px !important;
        height: 15px !important;
        stroke: color-mix(in srgb, var(--cl--4--) 20%, white) !important;
    }

    nav.navigation.active .header-side.active .header-contact {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.55rem !important;
        padding-left: 0 !important;
    }

    nav.navigation.active .header-side.active .contact-item {
        width: 100% !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.45rem !important;

        text-align: center !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        color: #ffffff !important;

        padding: 0.9rem !important;
        border-radius: 14px !important;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.03)
        ) !important;
        border: 1px solid rgba(255, 255, 255, 0.09) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 6px 14px rgba(0, 0, 0, 0.10) !important;
    }

    nav.navigation.active .header-side.active .contact-item span {
        color: #ffffff !important;
    }

    nav.navigation.active .header-side.active .contact-item svg {
        width: 13px !important;
        height: 13px !important;
        flex: 0 0 13px !important;
       stroke: var(--cl--4--) !important;
    }
}

@media (max-width: 768px) {
    :root {
        --marquee-height-mobile: 32px;
        --mobile-header-height: 68px;
    }

    .marquee {
        min-height: var(--marquee-height-mobile);
        padding: 5px 0;
        font-size: 12px;
        letter-spacing: 0.15px;
    }

    .marquee .marquee-text {
        padding-right: 16px;
        animation-duration: 14s;
    }

    header#acasa.container {
        top: var(--marquee-height-mobile) !important;
        height: var(--mobile-header-height) !important;
        min-height: var(--mobile-header-height) !important;
        max-height: var(--mobile-header-height) !important;
        width: calc(100% - 16px) !important;
        padding: 0 12px !important;
        border-bottom-left-radius: 20px !important;
        border-bottom-right-radius: 20px !important;
    }

    .logo h3 {
        font-size: 21px !important;
        font-weight: 700;
    }

    .toggleMenu {
        width: 44px !important;
        height: 44px !important;
    }

    nav.navigation {
        top: calc(var(--marquee-height-mobile) + var(--mobile-header-height) - var(--mobile-nav-overlap)) !important;
        height: calc(100dvh - (var(--marquee-height-mobile) + var(--mobile-header-height)) + var(--mobile-nav-overlap) - 60px) !important;
        min-height: calc(100dvh - (var(--marquee-height-mobile) + var(--mobile-header-height)) + var(--mobile-nav-overlap) - 60px) !important;
        max-height: calc(100dvh - (var(--marquee-height-mobile) + var(--mobile-header-height)) + var(--mobile-nav-overlap) - 60px) !important;
        padding: 28px 14px 14px !important;
    }

    nav.navigation a {
        margin: 0 0 10px 0 !important;
        padding: 10px 4px 12px !important;
        font-size: 0.92rem !important;
        font-weight: 650 !important;
        line-height: 1.15 !important;
        letter-spacing: 0.05px !important;
    }

    nav.navigation a.active::before {
        width: 62px !important;
        bottom: 6px !important;
    }

    nav.navigation.active .header-side.active {
        margin-top: 20px !important;
        padding-top: 12px !important;
        gap: 0.75rem !important;
    }

    nav.navigation.active .header-side.active .header-benefits {
        gap: 0.55rem !important;
        padding: 0.8rem 0 0.8rem 0 !important;
    }

    nav.navigation.active .header-side.active .header-benefits span {
        width: 36px !important;
        height: 36px !important;
        border-radius: 11px !important;
    }

    nav.navigation.active .header-side.active .header-benefits svg {
        width: 14px !important;
        height: 14px !important;
    }

    nav.navigation.active .header-side.active .header-contact {
        gap: 0.5rem !important;
    }

    nav.navigation.active .header-side.active .contact-item {
        min-height: 44px !important;
        padding: 0.78rem !important;
        font-size: 11px !important;
        border-radius: 12px !important;
        gap: 0.38rem !important;
    }

    nav.navigation.active .header-side.active .contact-item svg {
        width: 12px !important;
        height: 12px !important;
        flex: 0 0 12px !important;
    }
}

@media (max-width: 480px) {
    nav.navigation {
        padding: 24px 12px 12px !important;
    }

    nav.navigation a {
        margin: 0 0 8px 0 !important;
        padding: 9px 2px 11px !important;
        font-size: 0.88rem !important;
    }

    nav.navigation a.active::before {
        width: 54px !important;
    }

    nav.navigation.active .header-side.active {
        margin-top: 16px !important;
        padding-top: 10px !important;
        gap: 0.7rem !important;
    }

    nav.navigation.active .header-side.active .header-benefits span {
        width: 34px !important;
        height: 34px !important;
    }

    nav.navigation.active .header-side.active .contact-item {
        font-size: 10.5px !important;
        padding: 0.72rem !important;
    }
     .marquee {
        min-height: 32px;
        padding: 5px 0;
        font-size: 12px;
        letter-spacing: 0.15px;
    }

    .marquee .marquee-text {
        padding-right: 16px;
        animation-duration: 14s;
    }
}

@media (max-width: 768px) {
    .hero-content,
    .hero-row {
        flex-direction: column;
        align-items: center;
        margin-left: -5px;
        padding: 5px;
    }
    .countdown-container {
        padding: 10px;
        margin: 20px 5px;
        max-width: none;
    }
    .mini-images {
        display: none;
    }
    .arrow {
        display: block;
    }
    .feature-text {
        font-weight: 600;
        font-size: 16px;
    }
    .logo h3 {
        font-size: 26px;
        font-weight: 600;
    }
   
}
/* ===== COOKIE BAR ===== */
#cookieConsent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;

    display: none;
    padding: 14px 18px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 -10px 30px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ===== INNER ===== */
.cookie-inner {
    max-width: 1000px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* ===== TEXT ===== */
.cookie-text {
    color: #444;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

/* ===== BUTTON PREMIUM ===== */
#cookieConsent a.cookieConsentOK {
    position: relative;

    min-width: 110px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;

    color: #fff;

    /* 👇 gradient modern */
    background: linear-gradient(135deg, #6f6f6f, #3f3f3f);

    box-shadow:
        0 6px 18px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.2);

    transition: all 0.25s ease;

    text-decoration: none;
}

/* glow subtil */
#cookieConsent a.cookieConsentOK::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;

    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* hover */
#cookieConsent a.cookieConsentOK:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 22px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

#cookieConsent a.cookieConsentOK:hover::before {
    opacity: 1;
}

/* click */
#cookieConsent a.cookieConsentOK:active {
    transform: scale(0.96);
}

/* ===== CLOSE BUTTON ===== */
#closeCookieConsent {
    position: absolute;
    top: 10px;
    right: 14px;

    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 12px;
    color: #666;

    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.08);

    cursor: pointer;
    transition: all 0.2s ease;
}

#closeCookieConsent:hover {
    background: rgba(0,0,0,0.08);
    color: #111;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    #cookieConsent {
        padding: 14px 12px 16px;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .cookie-text {
        font-size: 12px;
    }

    #cookieConsent a.cookieConsentOK {
        width: 100%;
        max-width: 220px;
        height: 36px;
    }

    #closeCookieConsent {
        top: 8px;
        right: 10px;
    }
}
