html {
    overflow-x: hidden;
    /* Prevent horizontal scroll from viewport units / fixed elements; fix root causes in components */
}
body {
    background-color: var(--c-body-bg);
    color: var(--text);
    overflow-x: hidden;
    min-width: 0;
}
/* Prevent horizontal scroll: no 100vw, no negative margins outside container, no fixed full-width overflow */
.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
    display: none !important;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Bad Script';
}
body h2 {
    font-size: clamp(1.625rem, 4vw + 1.25rem, 3rem) !important;
    line-height: 1.15;
    word-wrap: break-word;
}
body h3 {
    font-size: clamp(1.2rem, 4vw + 1.25rem, 2.5rem) !important;
}
@media (max-width: 47.9375rem) {
    body h2 {
        font-size: clamp(1.625rem, 5vw + 1rem, 2rem) !important;
    }
}
.container {
    width: 100%;
    max-width: var(--cont);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--cont-p);
    padding-right: var(--cont-p);
    box-sizing: border-box;
    min-width: 0;
}
/* Form inputs: touch-friendly height, no overflow */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea {
    min-height: var(--touch-target, 2.75rem);
    max-width: 100%;
    box-sizing: border-box;
}
button[type="submit"],
input[type="submit"] {
    min-height: var(--touch-target, 2.75rem);
}

.wpm-switcher-dropdown a img, .wpm-switcher-dropdown span img, .wpm-switcher-list li a img, .wpm-switcher-list li > span img {
    display: flex !important;
}

/* ── Buttons (shared — used on hero dark bg) ── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-target, 2.75rem);
    border-radius: 1rem;
    padding: 0.75rem 1.125rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: 180ms ease;
    user-select: none;
    box-sizing: border-box;
}

.btn--primary {
    background: #fff;
    color: #18181b;
    box-shadow: 0 0.625rem 1.5rem rgba(0,0,0,0.18);
}

.btn--primary:hover { opacity: 0.92; }

.btn--ghost {
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.10);
    color: #fff;
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
}

.btn--ghost:hover { background: rgba(255,255,255,0.15); }

/* ── Decorative background lines ── */

.cursor {
    pointer-events: none;
}

.bg_lines,
#grain,
.hero__overlay,
.hero__fallback {
    pointer-events: none;
}

.cursor-ring,
.cursor-dot {
    position: fixed;
    left: 0;
    top: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.cursor-ring {
    position: fixed;
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.08s ease-out;
    background:
        radial-gradient(
            circle,
            rgba(232, 168, 58, 0.12) 0%,
            rgba(232, 168, 58, 0.07) 20%,
            rgba(232, 168, 58, 0.03) 40%,
            rgba(0,0,0,0) 60%
        );
    filter: blur(10px);
    mix-blend-mode: multiply;
}
/* Hide custom cursor on touch devices to avoid overlap and improve performance */
@media (pointer: coarse) {
    .cursor {
        display: none !important;
    }
}

.cursor.is-hover .cursor-ring {
    width: 72px;
    height: 72px;
}

.bg_lines {
    z-index: 1;
    height: 100vh;
    display: block;
    position: fixed;
    inset: 0%;
}

.div-block-14 {
    z-index: 2;
    position: absolute;
    inset: 0%;
}

.div-block-13 {
    z-index: 1;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    inset: 0%;
}

/* ── Main Swiper shell ── */
/* 100dvh where supported (mobile address bar), fallback 100svh; min-height for short viewports */
.js-main-swiper {
    overflow: hidden;
    min-width: 0;
}
.js-main-swiper,
.js-main-swiper > .swiper-wrapper,
.js-main-swiper > .swiper-wrapper > .swiper-slide {
    min-height: 70svh;
    height: 100svh;
    height: 100dvh;
}

/* ── Process (legacy, kept for safety) ── */

.process {
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #111;
}

.process__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process__subtitle {
    text-align: center;
    max-width: 45rem;
    margin: 0 auto 4rem auto;
    font-size: 1.125rem;
    opacity: 0.8;
}

.process__grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 48rem) {
    .process__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process__card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: center;
}

.process__card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2rem 4rem rgba(0,0,0,0.12);
}

.process__icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    margin-bottom: 1rem;
}

.process__card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process__card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.75;
}
