/* ASEM Homepage V2 — page-scoped production styles. */
:root {
    --asem-home-navy: #071b3f;
    --asem-home-blue: #123b8f;
    --asem-home-royal: #3152c8;
    --asem-home-teal: #18bda7;
    --asem-home-mint: #baf4df;
    --asem-home-ice: #eef7fb;
    --asem-home-amber: #f2bd62;
    --asem-home-ink: #10213f;
    --asem-home-muted: #5c6b82;
    --asem-home-line: #dce8ee;
    --asem-home-radius: 26px;
    --asem-home-shadow: 0 22px 60px rgba(7, 27, 63, 0.11);
}

.asem-home-section,
.asem-home-hero-v2,
.asem-home-brands-v2,
.asem-home-final {
    position: relative;
    overflow: clip;
}

.asem-home-section {
    padding: clamp(76px, 7vw, 112px) 0;
}

.asem-home-section *,
.asem-home-hero-v2 *,
.asem-home-brands-v2 *,
.asem-home-final * {
    box-sizing: border-box;
}

.asem-home-section h2,
.asem-home-final h2 {
    margin: 0;
    color: var(--asem-home-ink);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.asem-home-section h3,
.asem-home-section h4 {
    color: var(--asem-home-ink);
}

.asem-home-kicker {
    margin: 0 0 14px;
    color: var(--asem-home-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.asem-home-kicker--light { color: #fff; }
.asem-home-kicker--mint { color: var(--asem-home-mint); }

.asem-home-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.7fr);
    gap: clamp(30px, 6vw, 90px);
    align-items: end;
    margin-bottom: clamp(38px, 5vw, 64px);
}

.asem-home-heading > p,
.asem-home-about__intro > p {
    max-width: 610px;
    margin: 0;
    color: var(--asem-home-muted);
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.72;
}

.asem-home-heading--center {
    display: block;
    max-width: 790px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.asem-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 30px;
}

.asem-home-actions--compact { margin-top: 22px; }

.asem-home-btn {
    display: inline-flex;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.25;
    text-align: center;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.asem-home-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.asem-home-btn--primary {
    background: var(--asem-home-teal);
    color: #041c35;
    box-shadow: 0 12px 28px rgba(24, 189, 167, 0.24);
}

.asem-home-btn--primary:hover,
.asem-home-btn--mint:hover { color: #041c35; }

.asem-home-btn--ghost {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(7, 27, 63, 0.16);
    color: #fff;
    backdrop-filter: blur(8px);
}

.asem-home-btn--ghost:hover { color: #fff; border-color: #fff; }

.asem-home-btn--outline {
    border-color: rgba(18, 59, 143, 0.25);
    background: #fff;
    color: var(--asem-home-blue);
}

.asem-home-btn--outline:hover {
    border-color: var(--asem-home-teal);
    color: var(--asem-home-blue);
    box-shadow: 0 12px 28px rgba(7, 27, 63, 0.08);
}

.asem-home-btn--mint {
    background: var(--asem-home-mint);
    color: #062c3a;
}

.asem-home-btn--white {
    background: #fff;
    color: var(--asem-home-blue);
}

.asem-home-btn--white:hover { color: var(--asem-home-blue); }

.asem-home-text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
    color: var(--asem-home-blue);
    font-weight: 750;
}

.asem-home-text-link:hover { color: #0b7f76; text-decoration: none; }
.asem-home-text-link--light { color: #fff; }
.asem-home-text-link--light:hover { color: var(--asem-home-mint); }

.asem-home-section__cta {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.asem-home-section__cta--prominent {
    gap: 22px;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
    padding: 18px 20px 18px 24px;
    border: 1px solid rgba(18, 59, 143, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
}

.asem-home-section__cta--prominent p {
    max-width: 680px;
    margin: 0;
    color: var(--asem-home-muted);
    font-size: 14px;
    line-height: 1.55;
}

.asem-home-section__cta--prominent .asem-home-btn { flex: 0 0 auto; }

.asem-home-hero-v2 {
    min-height: clamp(590px, 65vh, 680px);
    padding: 0;
    isolation: isolate;
    background: var(--asem-home-navy);
}

.asem-home-hero-v2__media,
.asem-home-hero-v2__media img,
.asem-home-hero-v2__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.asem-home-hero-v2__media img {
    object-fit: cover;
    object-position: center;
}

.asem-home-hero-v2__veil {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 20, 49, 0.98) 0%, rgba(4, 20, 49, 0.88) 31%, rgba(4, 20, 49, 0.28) 61%, rgba(4, 20, 49, 0.06) 100%),
        linear-gradient(180deg, rgba(4, 20, 49, 0.08), rgba(4, 20, 49, 0.22));
}

.asem-home-hero-v2__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: clamp(590px, 65vh, 680px);
    align-items: center;
}

.asem-home-hero-v2__content {
    width: min(660px, 55%);
    padding: 62px 0 54px;
}

.asem-home-hero-v2 h1 {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 4.8vw, 70px);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.asem-home-hero-v2__lead {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.65;
}

.asem-home-brands-v2 {
    z-index: 3;
    padding: 18px 0 24px;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(110deg, #0b9f99, #19bea8 48%, #0faaa3);
    color: #fff;
}

.asem-home-brands-v2__heading {
    display: flex;
    min-height: 25px;
    align-items: center;
    justify-content: center;
}

.asem-home-brands-v2__heading .asem-home-kicker { margin: 0; }

.asem-home-brands-v2__viewport {
    overflow: hidden;
    margin-top: 6px;
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.asem-home-brands-v2__track {
    display: flex;
    width: max-content;
    animation: asemHomeBrands 34s linear infinite;
    will-change: transform;
}

.asem-home-brands-v2__viewport:hover .asem-home-brands-v2__track,
.asem-home-brands-v2__viewport:focus-within .asem-home-brands-v2__track {
    animation-play-state: paused;
}

.asem-home-brands-v2__set {
    display: flex;
    gap: clamp(34px, 4vw, 74px);
    align-items: center;
    padding: 4px clamp(18px, 2vw, 34px) 0;
}

.asem-home-brand {
    display: grid;
    width: clamp(150px, 13vw, 205px);
    height: 86px;
    flex: 0 0 auto;
    place-items: center;
}

.asem-home-brand img {
    display: block;
    width: var(--home-brand-width, 170px);
    max-width: 100%;
    height: auto;
    max-height: var(--home-brand-height, 64px);
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 180ms ease;
}

.asem-home-brand:hover img { transform: translateY(-2px) scale(1.025); }
.asem-home-brand--arc-laser img { --home-brand-width: 145px; --home-brand-height: 78px; }
.asem-home-brand--haag-streit img { --home-brand-width: 178px; --home-brand-height: 58px; }
.asem-home-brand--frastema img { --home-brand-width: 190px; --home-brand-height: 58px; }
.asem-home-brand--fiso img { --home-brand-width: 174px; --home-brand-height: 66px; }
.asem-home-brand--huvitz img { --home-brand-width: 180px; --home-brand-height: 46px; }
.asem-home-brand--gmv img { --home-brand-width: 172px; --home-brand-height: 52px; }
.asem-home-brand--bvi img { --home-brand-width: 150px; --home-brand-height: 60px; }

@keyframes asemHomeBrands {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

.asem-home-events { background: #f8fbfd; }

.asem-home-events,
.asem-home-articles { padding: clamp(54px, 4.75vw, 75px) 0; }

.asem-home-events .asem-home-heading,
.asem-home-articles .asem-home-heading { margin-bottom: clamp(24px, 2.6vw, 34px); }

.asem-home-events__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
    gap: 18px;
    align-items: stretch;
}

.asem-home-event-featured {
    display: grid;
    grid-template-columns: 102px minmax(0, 1fr);
    min-width: 0;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(24, 189, 167, 0.25);
    border-radius: var(--asem-home-radius);
    background:
        radial-gradient(circle at 95% 8%, rgba(24, 189, 167, 0.19), transparent 31%),
        linear-gradient(145deg, #e8fbf4, #fff 58%);
    box-shadow: var(--asem-home-shadow);
}

.asem-home-event-featured__date {
    display: flex;
    width: 80px;
    height: 94px;
    border: 1px solid rgba(18, 59, 143, 0.12);
    border-radius: 22px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    color: var(--asem-home-blue);
    box-shadow: 0 14px 32px rgba(7, 27, 63, 0.08);
}

.asem-home-event-featured__date span {
    font-size: 34px;
    font-weight: 850;
    line-height: 0.95;
}

.asem-home-event-featured__date strong {
    margin-top: 5px;
    color: #a96915;
    font-size: 14px;
    text-transform: uppercase;
}

.asem-home-event-featured__date small { color: var(--asem-home-muted); }
.asem-home-event-featured__body { min-width: 0; }
.asem-home-event-featured__badges { display: flex; flex-wrap: wrap; gap: 8px; }

.asem-home-badge {
    display: inline-flex;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    align-items: center;
    background: var(--asem-home-ice);
    color: var(--asem-home-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.asem-home-badge--algeria { background: #c9f6e6; color: #075c53; }
.asem-home-badge--international { background: #e4e9ff; color: #2d469d; }
.asem-home-badge--specialty { background: #fff2d7; color: #81520f; }

.asem-home-event-featured__label {
    margin: 12px 0 5px;
    color: var(--asem-home-blue);
    font-size: 13px;
    font-weight: 750;
}

.asem-home-event-featured h3 {
    margin: 0;
    font-size: clamp(24px, 2.3vw, 33px);
    line-height: 1.16;
}

.asem-home-event-featured h3 a,
.asem-home-event-card h3 a,
.asem-home-article-featured h3 a,
.asem-home-article-card h3 a { color: inherit; }

.asem-home-event-featured h3 a:hover,
.asem-home-event-card h3 a:hover,
.asem-home-article-featured h3 a:hover,
.asem-home-article-card h3 a:hover { color: var(--asem-home-blue); text-decoration: none; }

.asem-home-event-featured__organizer {
    margin: 13px 0 0;
    color: var(--asem-home-muted);
    font-weight: 650;
}

.asem-home-event-featured__location {
    display: flex;
    gap: 8px;
    margin: 9px 0 0;
    align-items: flex-start;
    color: var(--asem-home-ink);
}

.asem-home-event-featured__location svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--asem-home-teal);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.asem-home-event-featured__summary {
    display: -webkit-box;
    margin: 12px 0 0;
    overflow: hidden;
    color: var(--asem-home-muted);
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.asem-home-events__secondary {
    display: grid;
    gap: 10px;
}

.asem-home-event-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 13px;
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--asem-home-line);
    border-radius: 21px;
    background: #fff;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.asem-home-event-card:hover {
    transform: translateY(-3px);
    border-color: rgba(24, 189, 167, 0.55);
    box-shadow: 0 15px 34px rgba(7, 27, 63, 0.08);
}

.asem-home-event-card time {
    display: flex;
    height: 58px;
    border-radius: 17px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #edf1ff;
    color: var(--asem-home-blue);
}

.asem-home-event-card time strong { font-size: 22px; line-height: 1; }
.asem-home-event-card time span { margin-top: 3px; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.asem-home-event-card h3 { display: -webkit-box; margin: 7px 0 4px; overflow: hidden; font-size: 16px; line-height: 1.25; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.asem-home-event-card p { display: -webkit-box; margin: 0; overflow: hidden; color: var(--asem-home-muted); font-size: 13px; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.asem-home-event-card .asem-home-text-link { min-height: 35px; margin-top: 5px; font-size: 13px; }

.asem-home-empty {
    padding: 32px;
    border: 1px dashed rgba(18, 59, 143, 0.25);
    border-radius: var(--asem-home-radius);
    background: #fff;
    text-align: center;
}

.asem-home-empty h3 { margin: 0 0 8px; }
.asem-home-empty p { margin: 0; color: var(--asem-home-muted); }

.asem-home-about { background: #fff; }

.asem-home-about__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    gap: clamp(34px, 7vw, 100px);
    align-items: end;
    margin-bottom: 48px;
}

.asem-home-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 0.72fr)) minmax(280px, 1.4fr);
    gap: 14px;
}

.asem-home-proof {
    min-width: 0;
    min-height: 150px;
    padding: 25px;
    border: 1px solid var(--asem-home-line);
    border-radius: 22px;
    background: var(--asem-home-ice);
}

.asem-home-proof strong {
    color: var(--asem-home-blue);
    font-size: clamp(36px, 4vw, 53px);
    font-weight: 850;
    line-height: 1;
}

.asem-home-proof > span { color: var(--asem-home-teal); font-size: 27px; font-weight: 800; }
.asem-home-proof p { margin: 13px 0 0; color: var(--asem-home-muted); line-height: 1.45; }

.asem-home-proof--showroom {
    background: linear-gradient(135deg, var(--asem-home-navy), #174492);
    color: #fff;
}

.asem-home-proof--showroom strong { color: #fff; font-size: 23px; line-height: 1.2; }
.asem-home-proof--showroom p { color: rgba(255, 255, 255, 0.78); }

.asem-home-journey {
    margin-top: 48px;
    padding: clamp(28px, 4vw, 48px);
    border-radius: var(--asem-home-radius);
    background: #f7fafc;
}

.asem-home-journey > h3 { margin: 0 0 30px; font-size: 25px; }

.asem-home-journey ol {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.asem-home-journey li {
    position: relative;
    min-width: 0;
    padding: 0 20px;
}

.asem-home-journey li:not(:last-child)::after {
    position: absolute;
    top: 17px;
    right: -7px;
    width: 15px;
    height: 1px;
    background: var(--asem-home-teal);
    content: '';
}

.asem-home-journey li > span {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 50%;
    place-items: center;
    background: var(--asem-home-teal);
    color: #05233f;
    font-size: 12px;
    font-weight: 850;
}

.asem-home-journey h4 { margin: 0 0 8px; font-size: 17px; }
.asem-home-journey p { margin: 0; color: var(--asem-home-muted); font-size: 13px; line-height: 1.55; }

.asem-home-products {
    background:
        radial-gradient(circle at 10% 10%, rgba(24, 189, 167, 0.1), transparent 24%),
        linear-gradient(180deg, #f1f7fb 0%, #fff 48%, #f4f9fc 100%);
}

.asem-home-products .asem-home-heading--center > p:last-child {
    max-width: 760px;
    margin: 18px auto 0;
}

.asem-home-products__list {
    display: grid;
    gap: 26px;
}

.asem-home-product {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
    grid-template-areas:
        'visual intro'
        'visual details';
    grid-template-rows: auto 1fr;
    gap: clamp(30px, 5vw, 76px);
    min-height: 470px;
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid rgba(18, 59, 143, 0.12);
    border-radius: 32px;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 64px rgba(7, 27, 63, 0.09);
}

.asem-home-product:nth-child(2) {
    background:
        radial-gradient(circle at 82% 22%, rgba(24, 189, 167, 0.13), transparent 31%),
        linear-gradient(135deg, #f4fbfa, #edf4fb);
}

.asem-home-product:nth-child(3) {
    background:
        radial-gradient(circle at 16% 76%, rgba(49, 82, 200, 0.09), transparent 30%),
        #fff;
}

.asem-home-product--reverse {
    grid-template-areas:
        'intro visual'
        'details visual';
    grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
}

.asem-home-product__intro {
    grid-area: intro;
    align-self: end;
}

.asem-home-product__details {
    grid-area: details;
    align-self: start;
}

.asem-home-product__visual {
    position: relative;
    grid-area: visual;
    min-width: 0;
    min-height: 370px;
    isolation: isolate;
}

.asem-home-product__halo {
    position: absolute;
    z-index: -1;
    right: 16%;
    bottom: 5%;
    left: 16%;
    height: 24%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(18, 59, 143, 0.19), rgba(24, 189, 167, 0.08) 42%, transparent 70%);
    filter: blur(11px);
    transform: perspective(400px) rotateX(62deg);
}

.asem-home-product__visual > img {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: auto;
    max-width: 66%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 24px 24px rgba(7, 27, 63, 0.18));
    transform: translate(-50%, -50%) perspective(900px) rotateY(-3deg);
    transition: transform 260ms ease;
}

.asem-home-product:nth-child(3) .asem-home-product__visual > img { max-height: 380px; }

.asem-home-product__hotspots {
    position: absolute;
    z-index: 2;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.asem-home-product-hotspot {
    position: absolute;
    display: flex;
    width: min(220px, 38%);
    gap: 9px;
    align-items: flex-start;
    outline: 0;
}

.asem-home-product-hotspot--1 { top: 4%; left: 0; }
.asem-home-product-hotspot--2 { top: 39%; right: 0; }
.asem-home-product-hotspot--3 { bottom: 3%; left: 2%; }

.asem-home-product-hotspot::after {
    position: absolute;
    z-index: -1;
    top: 14px;
    width: 38px;
    height: 1px;
    background: rgba(18, 59, 143, 0.42);
    content: '';
}

.asem-home-product-hotspot--1::after,
.asem-home-product-hotspot--3::after { right: -28px; transform: rotate(12deg); transform-origin: left; }
.asem-home-product-hotspot--2::after { left: -28px; transform: rotate(-12deg); transform-origin: right; }

.asem-home-product-hotspot__marker {
    display: grid;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    border: 2px solid #fff;
    border-radius: 50%;
    place-items: center;
    background: var(--asem-home-teal);
    color: #05233f;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 7px 18px rgba(7, 27, 63, 0.18);
}

.asem-home-product-hotspot > div {
    padding: 9px 11px;
    border: 1px solid rgba(18, 59, 143, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(7, 27, 63, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.asem-home-product-hotspot strong,
.asem-home-product-hotspot span { display: block; }
.asem-home-product-hotspot strong { color: var(--asem-home-ink); font-size: 12px; line-height: 1.25; }
.asem-home-product-hotspot > div > span { margin-top: 3px; color: var(--asem-home-muted); font-size: 10px; line-height: 1.38; }

.asem-home-product-hotspot:hover > div,
.asem-home-product-hotspot:focus-visible > div {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(7, 27, 63, 0.13);
}

.asem-home-product-hotspot:focus-visible .asem-home-product-hotspot__marker {
    outline: 3px solid var(--asem-home-blue);
    outline-offset: 3px;
}

.asem-home-product__logo {
    position: relative;
    display: flex;
    width: 170px;
    height: 46px;
    margin: 0 0 14px;
    align-items: center;
}

.asem-home-product__logo img {
    display: block;
    width: auto;
    max-width: 160px;
    height: auto;
    max-height: 44px;
    object-fit: contain;
}

.asem-home-product__logo--octavius {
    overflow: hidden;
    height: 31px;
}

.asem-home-product__logo--octavius img {
    position: absolute;
    top: 50%;
    width: 164px;
    max-width: none;
    max-height: none;
    transform: translateY(-50%);
}

.asem-home-product__logo--r_evo_smart_cr img { max-width: 132px; }
.asem-home-product__logo--plexr_plus img { max-width: 155px; }

.asem-home-product__category {
    margin: 0 0 10px;
    color: var(--asem-home-blue);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.asem-home-product__intro h3 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.035em;
}

.asem-home-product__tagline {
    margin: 18px 0 0;
    color: var(--asem-home-ink);
    font-size: clamp(18px, 1.7vw, 23px);
    font-weight: 700;
    line-height: 1.35;
}

.asem-home-product__summary {
    margin: 14px 0 0;
    color: var(--asem-home-muted);
    font-size: 15px;
    line-height: 1.68;
}

.asem-home-product__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
    align-items: center;
}

.asem-home-product-catalogue {
    display: flex;
    gap: 28px;
    margin-top: 30px;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(18, 59, 143, 0.13);
    border-radius: 25px;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, #e8f7f5, #eef3ff);
}

.asem-home-product-catalogue h3 { margin: 0; font-size: clamp(23px, 2.2vw, 31px); }
.asem-home-product-catalogue p { max-width: 720px; margin: 8px 0 0; color: var(--asem-home-muted); line-height: 1.55; }
.asem-home-product-catalogue .asem-home-btn { flex: 0 0 auto; }

@media (prefers-reduced-motion: no-preference) {
    .asem-home-product:hover .asem-home-product__visual > img {
        transform: translate(-50%, -50%) perspective(900px) rotateY(-2deg) scale(1.02);
    }
}

.asem-home-sav-v2 {
    background:
        radial-gradient(circle at 90% 5%, rgba(24, 189, 167, 0.18), transparent 30%),
        linear-gradient(135deg, #061733, #0a2859 58%, #0d3a73);
    color: #fff;
}

.asem-home-sav-v2__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: clamp(38px, 7vw, 92px);
    align-items: center;
}

.asem-home-sav-v2__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.27);
}

.asem-home-sav-v2__media::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: inherit;
    content: '';
    pointer-events: none;
}

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

.asem-home-sav-v2 h2 { color: #fff; }

.asem-home-sav-v2__lead {
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.68;
}

.asem-home-sav-v2__pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.asem-home-sav-v2__pillars article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    min-width: 0;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.asem-home-sav-v2__pillars svg,
.asem-home-app li svg {
    width: 26px;
    height: 26px;
    padding: 5px;
    border-radius: 50%;
    fill: none;
    stroke: var(--asem-home-teal);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    background: rgba(24, 189, 167, 0.13);
}

.asem-home-sav-v2__pillars h3 { margin: 0 0 5px; color: #fff; font-size: 16px; }
.asem-home-sav-v2__pillars p { margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 13px; line-height: 1.5; }

.asem-home-sav-v2__highlight {
    margin: 22px 0 0;
    padding-left: 15px;
    border-left: 3px solid var(--asem-home-teal);
    color: #fff;
    font-weight: 700;
}

.asem-home-articles { background: #fff; }

.asem-home-articles__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    gap: 18px;
}

.asem-home-article-featured {
    overflow: hidden;
    border: 1px solid var(--asem-home-line);
    border-radius: var(--asem-home-radius);
    background: #fff;
    box-shadow: var(--asem-home-shadow);
}

.asem-home-article-featured__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 6.7;
    background: linear-gradient(135deg, #dce9f8, #eef8f6);
}

.asem-home-article-featured__media img,
.asem-home-article-featured__media > span {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.asem-home-article-featured:hover .asem-home-article-featured__media img { transform: scale(1.025); }

.asem-home-article-featured__body { padding: clamp(22px, 3vw, 30px); }
.asem-home-article-featured__label { margin: 0 0 10px; color: var(--asem-home-blue); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

.asem-home-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    color: var(--asem-home-muted);
    font-size: 12px;
}

.asem-home-article-meta span::before { margin-right: 13px; content: '•'; }
.asem-home-article-featured h3 { margin: 11px 0; font-size: clamp(24px, 2.3vw, 32px); line-height: 1.17; }
.asem-home-article-featured__body > p:not(.asem-home-article-featured__label) { display: -webkit-box; margin: 0; overflow: hidden; color: var(--asem-home-muted); line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.asem-home-articles__secondary {
    display: grid;
    gap: 10px;
}

.asem-home-article-card {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 13px;
    min-width: 0;
    padding: 11px;
    border: 1px solid var(--asem-home-line);
    border-radius: 20px;
    background: #fff;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.asem-home-article-card:hover {
    transform: translateY(-3px);
    border-color: rgba(24, 189, 167, 0.5);
    box-shadow: 0 14px 32px rgba(7, 27, 63, 0.08);
}

.asem-home-article-card__media {
    display: block;
    overflow: hidden;
    border-radius: 14px;
}

.asem-home-article-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 105px;
    object-fit: cover;
}

.asem-home-article-card time,
.asem-home-article-card span { color: var(--asem-home-muted); font-size: 11px; }
.asem-home-article-card h3 { display: -webkit-box; margin: 6px 0 4px; overflow: hidden; font-size: 16px; line-height: 1.27; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.asem-home-app {
    background:
        radial-gradient(circle at 85% 14%, rgba(190, 255, 234, 0.22), transparent 26%),
        linear-gradient(125deg, #1c3d9b, #244bc0 40%, #0eaa9f 100%);
    color: #fff;
}

.asem-home-app__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    gap: clamp(36px, 8vw, 110px);
    align-items: center;
}

.asem-home-app h2 { max-width: 620px; color: #fff; }
.asem-home-app__content > p:not(.asem-home-kicker) { max-width: 610px; margin: 21px 0 0; color: rgba(255, 255, 255, 0.8); font-size: 17px; line-height: 1.65; }

.asem-home-app ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.asem-home-app li { display: flex; gap: 12px; align-items: center; color: #fff; font-weight: 650; }
.asem-home-app li svg { flex: 0 0 auto; stroke: var(--asem-home-mint); }

.asem-home-store-link {
    display: inline-flex;
    min-height: 46px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 14px;
    align-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.asem-home-store-link:hover { border-color: #fff; color: #fff; text-decoration: none; }

.asem-home-app__visual {
    display: flex;
    min-height: 480px;
    align-items: center;
    justify-content: center;
}

.asem-home-phone {
    position: relative;
    width: min(270px, 76%);
    padding: 9px;
    border: 3px solid rgba(255, 255, 255, 0.72);
    border-radius: 42px;
    background: #07142f;
    box-shadow: 0 34px 80px rgba(2, 15, 42, 0.35);
    animation: asemHomePhoneFloat 5s ease-in-out infinite;
}

.asem-home-phone::before {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 50%;
    width: 34%;
    height: 18px;
    border-radius: 999px;
    background: #040b1b;
    content: '';
    transform: translateX(-50%);
}

.asem-home-phone img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 32px;
}

@keyframes asemHomePhoneFloat {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-9px) rotate(-1deg); }
}

.asem-home-commitments { background: #f8fbfd; }

.asem-home-commitments__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.asem-home-commitment {
    min-width: 0;
    min-height: 220px;
    padding: 26px;
    border: 1px solid rgba(18, 59, 143, 0.08);
    border-radius: 22px;
}

.asem-home-commitment--1 { background: #eaf5fb; }
.asem-home-commitment--2 { background: #e7faef; }
.asem-home-commitment--3 { background: #eceeff; }
.asem-home-commitment--4 { background: #fff3da; }

.asem-home-commitment > span {
    display: grid;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    place-items: center;
    background: rgba(255, 255, 255, 0.82);
}

.asem-home-commitment svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--asem-home-blue);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.asem-home-commitment h3 { margin: 22px 0 9px; font-size: 19px; }
.asem-home-commitment p { margin: 0; color: var(--asem-home-muted); font-size: 14px; line-height: 1.6; }

.asem-home-final {
    padding: clamp(52px, 6vw, 78px) 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(24, 189, 167, 0.2), transparent 25%),
        var(--asem-home-navy);
    color: #fff;
}

.asem-home-final__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.asem-home-final h2 { color: #fff; font-size: clamp(32px, 3.7vw, 50px); }
.asem-home-final p { max-width: 650px; margin: 14px 0 0; color: rgba(255, 255, 255, 0.74); font-size: 17px; }
.asem-home-final .asem-home-actions { justify-content: flex-end; }

:where(.asem-home-section, .asem-home-hero-v2, .asem-home-brands-v2, .asem-home-final) a:focus-visible {
    outline: 3px solid var(--asem-home-teal);
    outline-offset: 4px;
}

html.home-reveal-ready .js-home-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 520ms ease, transform 520ms ease;
}

html.home-reveal-ready .js-home-reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1199px) {
    .asem-home-events__layout,
    .asem-home-articles__layout { grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.92fr); }
    .asem-home-proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .asem-home-proof--showroom { grid-column: 1 / -1; min-height: 120px; }
    .asem-home-journey li { padding: 0 13px; }
    .asem-home-product { grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr); }
    .asem-home-product--reverse { grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr); }
    .asem-home-product__visual > img { max-width: 60%; }
}

@media (max-width: 991px) {
    .asem-home-heading,
    .asem-home-about__intro,
    .asem-home-sav-v2__grid,
    .asem-home-app__grid,
    .asem-home-product,
    .asem-home-final__inner { grid-template-columns: 1fr; }

    .asem-home-heading { gap: 20px; }
    .asem-home-events__layout,
    .asem-home-articles__layout { grid-template-columns: 1fr; }

    .asem-home-events__secondary,
    .asem-home-articles__secondary {
        display: grid;
        grid-auto-columns: minmax(300px, 72vw);
        grid-auto-flow: column;
        overflow-x: auto;
        padding: 4px 4px 16px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .asem-home-event-card,
    .asem-home-article-card { scroll-snap-align: start; }

    .asem-home-journey ol { grid-template-columns: 1fr; gap: 22px; }
    .asem-home-journey li { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 14px; padding: 0; }
    .asem-home-journey li:not(:last-child)::after { top: 42px; right: auto; bottom: -24px; left: 19px; width: 1px; height: 26px; }
    .asem-home-sav-v2__media { max-width: 740px; }
    .asem-home-product { gap: 18px; }
    .asem-home-product,
    .asem-home-product--reverse {
        grid-template-areas:
            'intro'
            'visual'
            'details';
    }
    .asem-home-product__visual { min-height: 390px; }
    .asem-home-app__content { text-align: center; }
    .asem-home-app h2,
    .asem-home-app__content > p:not(.asem-home-kicker) { margin-right: auto; margin-left: auto; }
    .asem-home-app ul { width: fit-content; margin-right: auto; margin-left: auto; text-align: left; }
    .asem-home-app .asem-home-actions { justify-content: center; }
    .asem-home-app__visual { min-height: 420px; }
    .asem-home-commitments__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .asem-home-final { text-align: center; }
    .asem-home-final p { margin-right: auto; margin-left: auto; }
    .asem-home-final .asem-home-actions { justify-content: center; }
}

@media (max-width: 767px) {
    .asem-home-section { padding: 68px 0; }
    .asem-home-events,
    .asem-home-articles { padding: 46px 0; }
    .asem-home-section h2,
    .asem-home-final h2 { font-size: clamp(31px, 9vw, 42px); }

    .asem-home-hero-v2,
    .asem-home-hero-v2__inner {
        min-height: clamp(585px, 69svh, 690px);
    }

    .asem-home-hero-v2__media img { object-position: center top; }

    .asem-home-hero-v2__veil {
        background:
            linear-gradient(180deg, rgba(4, 20, 49, 0.02) 0%, rgba(4, 20, 49, 0.15) 35%, rgba(4, 20, 49, 0.9) 61%, rgba(4, 20, 49, 0.99) 100%);
    }

    .asem-home-hero-v2__inner { align-items: flex-end; }

    .asem-home-hero-v2__content {
        width: 100%;
        padding: 245px 0 34px;
    }

    .asem-home-hero-v2 h1 {
        max-width: 390px;
        font-size: clamp(34px, 10.2vw, 45px);
        line-height: 1.04;
    }

    .asem-home-hero-v2__lead {
        display: -webkit-box;
        max-width: 390px;
        margin-top: 16px;
        overflow: hidden;
        font-size: 15px;
        line-height: 1.5;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .asem-home-hero-v2 .asem-home-actions { margin-top: 20px; }
    .asem-home-hero-v2 .asem-home-btn { min-height: 46px; padding: 11px 16px; font-size: 13px; }

    .asem-home-brands-v2 { padding: 14px 0 18px; }
    .asem-home-brands-v2__viewport { mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%); }
    .asem-home-brands-v2__track { animation-duration: 27s; }
    .asem-home-brands-v2__set { gap: 26px; padding-right: 20px; padding-left: 20px; }
    .asem-home-brand { width: 138px; height: 72px; }
    .asem-home-brand--arc-laser img { --home-brand-width: 112px; --home-brand-height: 62px; }
    .asem-home-brand--haag-streit img { --home-brand-width: 132px; --home-brand-height: 43px; }
    .asem-home-brand--frastema img { --home-brand-width: 138px; --home-brand-height: 43px; }
    .asem-home-brand--fiso img { --home-brand-width: 128px; --home-brand-height: 49px; }
    .asem-home-brand--huvitz img { --home-brand-width: 136px; --home-brand-height: 34px; }
    .asem-home-brand--gmv img { --home-brand-width: 125px; --home-brand-height: 38px; }
    .asem-home-brand--bvi img { --home-brand-width: 112px; --home-brand-height: 45px; }

    .asem-home-events .asem-home-heading,
    .asem-home-articles .asem-home-heading { gap: 14px; margin-bottom: 24px; }
    .asem-home-events .asem-home-heading h2,
    .asem-home-articles .asem-home-heading h2 { font-size: clamp(29px, 8vw, 34px); }
    .asem-home-events .asem-home-heading > p,
    .asem-home-articles .asem-home-heading > p { line-height: 1.55; }

    .asem-home-event-featured { grid-template-columns: 1fr; padding: 20px; }
    .asem-home-event-featured__date { width: 78px; height: 88px; margin-bottom: 12px; }
    .asem-home-event-featured__date span { font-size: 31px; }
    .asem-home-event-featured__label { margin-top: 9px; }
    .asem-home-event-featured h3 { font-size: 24px; }
    .asem-home-event-featured__organizer { margin-top: 9px; }
    .asem-home-event-featured__location { margin-top: 6px; }
    .asem-home-event-featured__summary { display: -webkit-box; margin-top: 9px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

    .asem-home-section__cta--prominent { gap: 14px; align-items: stretch; flex-direction: column; padding: 14px; }
    .asem-home-section__cta--prominent .asem-home-btn { width: 100%; }

    .asem-home-events__secondary,
    .asem-home-articles__secondary { grid-auto-columns: minmax(282px, 86vw); }

    .asem-home-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .asem-home-proof { min-height: 132px; padding: 20px; }
    .asem-home-proof--showroom { grid-column: 1 / -1; }
    .asem-home-journey { margin-top: 34px; padding: 26px 22px; }

    .asem-home-products { padding-top: 64px; padding-bottom: 64px; }
    .asem-home-products__list { gap: 18px; }
    .asem-home-product { min-height: 0; padding: 24px 18px 28px; border-radius: 25px; }
    .asem-home-product__visual { display: flex; min-height: 0; flex-direction: column; }
    .asem-home-product__halo { top: 150px; bottom: auto; height: 90px; }
    .asem-home-product__visual > img,
    .asem-home-product:nth-child(3) .asem-home-product__visual > img {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        max-width: 78%;
        height: 260px;
        max-height: 260px;
        margin: 0 auto 20px;
        transform: none;
    }
    .asem-home-product__hotspots { position: relative; display: grid; gap: 8px; }
    .asem-home-product-hotspot { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: 100%; }
    .asem-home-product-hotspot::after { display: none; }
    .asem-home-product-hotspot > div { width: 100%; }
    .asem-home-product-hotspot > div > span { font-size: 11px; }
    .asem-home-product__intro,
    .asem-home-product__details { padding: 10px 4px 0; }
    .asem-home-product__intro h3 { font-size: 35px; }
    .asem-home-product__tagline { margin-top: 14px; font-size: 18px; }
    .asem-home-product__summary { font-size: 14px; line-height: 1.6; }
    .asem-home-product-catalogue { align-items: stretch; flex-direction: column; }
    .asem-home-product-catalogue .asem-home-btn { width: 100%; }

    .asem-home-sav-v2__grid { gap: 34px; }
    .asem-home-sav-v2__pillars { grid-template-columns: 1fr; }
    .asem-home-sav-v2__pillars article { padding: 14px; }

    .asem-home-article-featured__media img,
    .asem-home-article-featured__media > span { aspect-ratio: 4 / 2.5; }
    .asem-home-article-card { grid-template-columns: 96px minmax(0, 1fr); }
    .asem-home-article-card__media img { min-height: 105px; }

    .asem-home-app__visual { min-height: 360px; }
    .asem-home-phone { width: min(225px, 74%); }
    .asem-home-commitments__grid { grid-template-columns: 1fr; }
    .asem-home-commitment { min-height: 0; padding: 22px; }
    .asem-home-final { padding: 58px 0; }
}

@media (max-width: 479px) {
    .asem-home-hero-v2__content { padding-top: 225px; }
    .asem-home-hero-v2 .asem-home-actions { display: grid; grid-template-columns: 1fr; width: min(100%, 330px); }
    .asem-home-hero-v2 .asem-home-btn { width: 100%; }
    .asem-home-heading { margin-bottom: 34px; }
    .asem-home-proof-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .asem-home-proof { padding: 17px; }
    .asem-home-proof strong { font-size: 38px; }
    .asem-home-proof p { font-size: 13px; }
    .asem-home-proof--showroom { grid-column: 1 / -1; }
    .asem-home-sav-v2 .asem-home-actions,
    .asem-home-product__actions,
    .asem-home-final .asem-home-actions { display: grid; width: 100%; }
    .asem-home-sav-v2 .asem-home-btn,
    .asem-home-product__actions .asem-home-btn,
    .asem-home-final .asem-home-btn { width: 100%; }
    .asem-home-product__actions .asem-home-text-link { justify-content: center; }
    .asem-home-app .asem-home-actions { justify-content: center; }
    .asem-home-store-link { min-width: 122px; justify-content: center; }
    .asem-home-section__cta--prominent { gap: 10px; padding: 10px; }
    .asem-home-section__cta--prominent p { font-size: 13px; line-height: 1.45; }
    .asem-home-section__cta--prominent .asem-home-btn { min-height: 44px; padding: 10px 14px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
    .asem-home-brands-v2__viewport {
        overflow-x: auto;
        mask-image: none;
        scrollbar-width: thin;
    }

    .asem-home-brands-v2__track { animation: none; }
    .asem-home-brands-v2__set[aria-hidden='true'] { display: none; }
    .asem-home-phone { animation: none; }
    .asem-home-btn,
    .asem-home-brand img,
    .asem-home-event-card,
    .asem-home-article-card,
    .asem-home-product-hotspot > div,
    .asem-home-product__visual > img,
    .asem-home-article-featured__media img,
    html.home-reveal-ready .js-home-reveal { transition: none; }
    html.home-reveal-ready .js-home-reveal { opacity: 1; transform: none; }
}

.asem-home-footer .footer-primary {
    padding-top: 62px;
    padding-bottom: 42px;
}

.asem-home-footer .footer-widget-title { margin-bottom: 18px; }
.asem-home-footer .footer-widget-nav li { margin-bottom: 7px; }
.asem-home-footer .footer-secondary { padding-top: 18px; padding-bottom: 18px; }

@media (max-width: 767px) {
    .asem-home-footer .footer-primary { padding-top: 44px; padding-bottom: 24px; }
    .asem-home-footer .footer-widget-about { margin-bottom: 22px; }
    .asem-home-footer .footer-widget-nav,
    .asem-home-footer .footer-widget-contact { margin-bottom: 24px; }
    .asem-home-footer .contact-list li { margin-bottom: 12px; }
}
