:root {
    --navy: #17375f;
    --navy-dark: #0e2748;
    --blue: #00a6e7;
    --blue-dark: #0089ca;
    --blue-soft: #eaf8ff;
    --ink: #182234;
    --muted: #667287;
    --line: #e3e9f1;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --success: #13a56f;
    --shadow-sm: 0 8px 24px rgba(23, 55, 95, .08);
    --shadow-md: 0 20px 60px rgba(23, 55, 95, .13);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 32px;
    --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, h4 { margin-top: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 9999; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--blue-dark);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 5px; background: currentColor; }
.eyebrow.light { color: #9cddf8; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid rgba(0, 166, 231, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    color: var(--navy);
    box-shadow: 0 8px 24px rgba(23, 55, 95, .06);
    font-size: .78rem;
    font-weight: 800;
}

.badge span { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: #fff; background: var(--blue); font-size: .68rem; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); box-shadow: 0 12px 28px rgba(0, 166, 231, .25); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(0, 166, 231, .32); }
.button-secondary { color: var(--navy); border-color: #cdd8e6; background: #fff; }
.button-secondary:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.button-white { color: var(--navy); background: #fff; }
.button-outline-white { color: #fff; border-color: rgba(255, 255, 255, .42); background: transparent; }
.button-outline-white:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.button-full { width: 100%; }
.text-link { color: var(--navy); font-weight: 800; }
.text-link:hover { color: var(--blue-dark); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 84px;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(227, 233, 241, .78);
    backdrop-filter: blur(18px);
}

.header-inner { min-height: 84px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand img { width: 124px; height: 48px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; padding-left: 13px; border-left: 1px solid var(--line); line-height: 1.25; }
.brand-copy strong { color: var(--navy); font-size: .96rem; }
.brand-copy small { margin-top: 3px; color: #8190a5; font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    padding: 6px;
    background: #f3f6fa;
    border: 1px solid #edf1f6;
    border-radius: 999px;
}

.main-nav a { padding: 9px 15px; border-radius: 999px; color: #4a5669; font-size: .81rem; font-weight: 700; transition: .2s; }
.main-nav a:hover, .main-nav a.is-active { color: var(--navy); background: #fff; box-shadow: 0 4px 14px rgba(23, 55, 95, .08); }
.header-cta { display: inline-flex; align-items: center; gap: 9px; min-height: 46px; padding: 0 18px; color: #fff; background: var(--navy); border: 0; border-radius: 999px; cursor: pointer; font-size: .79rem; font-weight: 800; box-shadow: 0 10px 24px rgba(23, 55, 95, .22); }
.header-cta:hover { background: var(--navy-dark); }
.icon-circle { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, .12); font-size: .75rem; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; border-radius: 3px; background: var(--navy); transition: .2s; }
.language-switcher { position: relative; flex: 0 0 auto; }
.language-toggle { display: flex; align-items: center; justify-content: center; gap: 6px; height: 42px; padding: 10px 18px; color: #1e3a5f; background: #e5e7eb; border: 2px solid #2d5a87; border-radius: 9999px; cursor: pointer; font-size: .85rem; font-weight: 700; line-height: 1; transition: color .25s, background .25s, border-color .25s, transform .25s; }
.language-toggle:hover, .language-switcher.is-open .language-toggle { color: #fff; background: #2d5a87; border-color: #2d5a87; }
.language-toggle:focus-visible { outline: 3px solid rgba(0, 166, 231, .28); outline-offset: 3px; }
.language-flag { display: inline-flex; width: 21px; align-items: center; justify-content: center; font-size: 1.05rem; line-height: 1; }
.language-code { min-width: 19px; text-align: center; }
.language-menu { position: absolute; top: 50px; right: 0; z-index: 1100; width: 180px; min-width: 180px; padding: 0; overflow: hidden; background: #fff; border: 2px solid #e5e7eb; border-radius: 12px; box-shadow: 0 10px 40px rgba(0, 0, 0, .1); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); transition: opacity .3s, visibility .3s, transform .3s; }
.language-switcher.is-open .language-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.language-option { display: flex; align-items: center; gap: 12px; min-height: 49px; padding: 12px 16px; color: #374151; border-bottom: 1px solid #f0f2f5; font-size: .9rem; font-weight: 600; transition: color .25s, background .25s, padding .25s; }
.language-option:last-child { border-bottom: 0; }
.language-option:hover, .language-option:focus-visible, .language-option.is-active { color: #1e3a5f; background: rgba(37, 99, 235, .08); }
.language-option:hover, .language-option:focus-visible { padding-left: 20px; outline: none; }
.language-option.is-active { font-weight: 800; }
.language-name { flex: 1; }
.technical-source-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--navy); font-size: .82rem; font-weight: 800; }
.technical-source-link:hover { color: var(--blue-dark); }

html[dir="rtl"] body { font-family: Tahoma, Arial, sans-serif; }
html[dir="rtl"] .brand-copy { padding-left: 0; padding-right: 13px; border-left: 0; border-right: 1px solid var(--line); }
html[dir="rtl"] .main-nav { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .language-menu { right: auto; left: 0; }
html[dir="rtl"] .language-option:hover, html[dir="rtl"] .language-option:focus-visible { padding-left: 16px; padding-right: 20px; }
html[dir="rtl"] .floating-action { right: auto; left: 22px; }
html[dir="rtl"] .modal-close { right: auto; left: 15px; }
html[dir="rtl"] .product-link span, html[dir="rtl"] .text-link { direction: rtl; }

/* Home hero */
.hero {
    position: relative;
    min-height: 720px;
    padding: 82px 0 74px;
    overflow: hidden;
    background: linear-gradient(110deg, #fbfdff 0%, #f6fbff 54%, #eff3ff 100%);
}

.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, #dce6f2, transparent); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; right: -130px; top: -160px; background: radial-gradient(circle, rgba(0, 166, 231, .16), transparent 68%); }
.hero-orb-two { width: 520px; height: 520px; left: 32%; bottom: -350px; background: radial-gradient(circle, rgba(109, 122, 255, .12), transparent 65%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 82px; }
.hero-copy h1 { margin: 22px 0 22px; color: var(--ink); font-size: clamp(3.2rem, 5.2vw, 5.65rem); line-height: .99; letter-spacing: -.065em; }
.hero-copy h1 em { color: var(--blue); font-style: normal; }
.hero-copy > p { max-width: 630px; margin-bottom: 29px; color: var(--muted); font-size: 1.04rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: flex; margin-top: 46px; }
.hero-stats div { min-width: 128px; padding-right: 25px; margin-right: 25px; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border-right: 0; margin-right: 0; }
.hero-stats strong { display: block; color: var(--navy); font-size: 1.75rem; line-height: 1.1; letter-spacing: -.04em; }
.hero-stats span { display: block; margin-top: 7px; color: #8490a2; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }

.hero-visual { position: relative; min-height: 545px; display: grid; place-items: center; }
.hero-visual-panel { position: relative; width: 88%; height: 470px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255, 255, 255, .75); border-radius: 42px; background: linear-gradient(145deg, rgba(231, 240, 250, .95), rgba(244, 241, 255, .88)); box-shadow: 0 34px 80px rgba(23, 55, 95, .13), inset 0 1px 0 #fff; }
.hero-visual-panel::before { content: ""; position: absolute; inset: 52px; border-radius: 28px; background: rgba(255, 255, 255, .66); box-shadow: inset 0 1px 0 #fff; }
.visual-grid { position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(23, 55, 95, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 55, 95, .06) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent); }
.hero-visual-panel img { position: relative; z-index: 2; width: 66%; max-height: 405px; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 24px 26px rgba(27, 51, 82, .18)); }
.floating-info { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; min-width: 190px; padding: 13px 16px; border: 1px solid rgba(255, 255, 255, .8); border-radius: 15px; background: rgba(255, 255, 255, .86); box-shadow: 0 14px 36px rgba(23, 55, 95, .13); backdrop-filter: blur(12px); }
.floating-info .info-icon { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; border-radius: 11px; color: #fff; background: linear-gradient(145deg, var(--blue), #77ccec); font-weight: 800; }
.floating-info strong, .floating-info small { display: block; }
.floating-info strong { color: var(--navy); font-size: .76rem; }
.floating-info small { margin-top: 2px; color: #8a96a7; font-size: .62rem; }
.info-energy { right: -8px; top: 62px; }
.info-support { right: 3px; bottom: 54px; }
.info-range { left: -5px; bottom: 100px; }

/* Section headings */
.section-heading { margin-bottom: 46px; }
.section-heading h2, .why-copy h2, .about-copy h2, .contact-info-panel h2, .contact-form-card h2 { margin-bottom: 16px; color: var(--ink); font-size: clamp(2rem, 3vw, 3.05rem); line-height: 1.18; letter-spacing: -.045em; }
.section-heading p { max-width: 680px; margin-bottom: 0; color: var(--muted); }
.section-heading.centered { max-width: 760px; margin-inline: auto; margin-bottom: 50px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.split-heading > p { max-width: 510px; padding-bottom: 5px; }

/* Services */
.services-preview { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 285px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(0, 166, 231, .3); box-shadow: var(--shadow-md); }
.service-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -65px; bottom: -65px; border-radius: 50%; background: var(--blue-soft); }
.service-number { position: absolute; right: 22px; top: 18px; color: #e6ebf2; font-size: 2.6rem; font-weight: 800; letter-spacing: -.08em; }
.service-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 42px; border-radius: 15px; color: var(--blue-dark); background: var(--blue-soft); font-size: 1.45rem; }
.service-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 1.17rem; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .88rem; line-height: 1.75; }
.featured-service { color: #fff; border-color: var(--navy); background: linear-gradient(145deg, var(--navy), #28517f); box-shadow: 0 24px 50px rgba(23, 55, 95, .2); }
.featured-service h3, .featured-service p { color: #fff; }
.featured-service p { opacity: .75; }
.featured-service .service-icon { color: #fff; background: rgba(255, 255, 255, .11); }
.featured-service .service-number { color: rgba(255, 255, 255, .09); }
.featured-service::after { background: rgba(0, 166, 231, .18); }

/* Categories */
.category-section { background: linear-gradient(180deg, #f7faff, #f3f8fc); }
.category-grid { display: grid; grid-template-columns: 1.18fr .91fr .91fr; gap: 20px; }
.category-card { position: relative; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 12px 34px rgba(23, 55, 95, .07); transition: transform .25s, box-shadow .25s; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.category-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(15deg, rgba(14, 39, 72, .95) 0%, rgba(14, 39, 72, .1) 70%); }
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center top; padding: 24px 25px 135px; background: linear-gradient(145deg, #eef5fb, #fff); transition: transform .45s ease; }
.category-card:hover img { transform: scale(1.04); }
.category-card-copy { position: relative; z-index: 2; width: 100%; padding: 34px; color: #fff; }
.category-card-copy > span { display: inline-block; margin-bottom: 12px; padding: 5px 9px; border-radius: 7px; background: rgba(255, 255, 255, .14); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.category-card h3 { margin-bottom: 8px; font-size: 1.65rem; letter-spacing: -.04em; }
.category-card p { max-width: 400px; margin-bottom: 18px; color: rgba(255, 255, 255, .74); font-size: .83rem; }
.category-card strong { font-size: .8rem; }
.category-outdoor img { padding-inline: 44px; }
.category-control img { padding-inline: 42px; }

/* Product cards */
.featured-products { background: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 9px 28px rgba(23, 55, 95, .055); transition: transform .25s, box-shadow .25s, border-color .25s; }
.product-card:hover { transform: translateY(-6px); border-color: rgba(0, 166, 231, .3); box-shadow: var(--shadow-md); }
.product-image { position: relative; height: 260px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #f7f9fc, #edf5fb); }
.product-image::after { content: ""; position: absolute; width: 190px; height: 190px; border: 1px solid rgba(0, 166, 231, .1); border-radius: 50%; }
.product-image img { position: relative; z-index: 1; width: 76%; height: 76%; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s; }
.product-card:hover .product-image img { transform: scale(1.045); }
.product-card-body { padding: 26px; }
.product-category, .product-detail-category { display: inline-flex; padding: 6px 9px; border-radius: 7px; color: var(--navy); background: #eef2f7; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.product-card h3 { min-height: 56px; margin: 11px 0 8px; color: var(--ink); font-size: 1.18rem; line-height: 1.4; letter-spacing: -.025em; }
.product-card h3 a:hover { color: var(--blue-dark); }
.product-card-body > p { min-height: 67px; margin-bottom: 15px; color: var(--muted); font-size: .82rem; line-height: 1.7; }
.feature-chips { min-height: 70px; display: flex; flex-wrap: wrap; align-content: flex-start; gap: 6px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.feature-chips span { padding: 5px 8px; border: 1px solid #e6ebf1; border-radius: 6px; color: #647185; background: #fbfcfe; font-size: .62rem; font-weight: 700; }
.product-link { display: flex; align-items: center; justify-content: space-between; padding-top: 19px; color: var(--navy); font-size: .87rem; font-weight: 800; }
.product-link span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; color: #fff; background: var(--navy); transition: transform .2s, background .2s; }
.product-card:hover .product-link span { transform: translateX(3px); background: var(--blue); }

/* Why */
.why-section { background: linear-gradient(180deg, #f7faff, #fff); }
.why-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 96px; }
.why-visual { position: relative; min-height: 550px; display: grid; place-items: center; }
.why-shape { position: absolute; inset: 25px 0 0 40px; border-radius: 60% 40% 52% 48% / 47% 56% 44% 53%; background: linear-gradient(145deg, #e3f6fd, #eff0ff); }
.why-visual > img { position: relative; width: 78%; max-height: 480px; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 30px 35px rgba(23, 55, 95, .18)); }
.why-badge { position: absolute; right: 18px; bottom: 30px; width: 160px; height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 8px solid rgba(255, 255, 255, .92); border-radius: 50%; color: #fff; background: var(--navy); box-shadow: var(--shadow-md); text-align: center; }
.why-badge strong { font-size: 1.1rem; }
.why-badge span { margin-top: 3px; font-size: .7rem; opacity: .7; }
.why-copy > p { margin-bottom: 30px; color: var(--muted); }
.why-list { display: grid; gap: 20px; margin-bottom: 34px; }
.why-list > div { display: flex; gap: 16px; }
.why-list > div > span { display: grid; place-items: center; width: 31px; height: 31px; flex: 0 0 31px; margin-top: 2px; border-radius: 9px; color: #fff; background: var(--blue); font-size: .8rem; }
.why-list h3 { margin-bottom: 4px; color: var(--navy); font-size: 1rem; }
.why-list p { margin-bottom: 0; color: var(--muted); font-size: .84rem; }

/* Inner hero */
.page-hero { position: relative; padding: 96px 0 84px; overflow: hidden; background: linear-gradient(120deg, #f5faff, #eef2ff); text-align: center; }
.page-hero::before, .page-hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.page-hero::before { width: 340px; height: 340px; left: -190px; top: -200px; background: rgba(0, 166, 231, .1); }
.page-hero::after { width: 380px; height: 380px; right: -240px; bottom: -220px; background: rgba(97, 116, 255, .09); }
.compact-page-hero { padding: 72px 0 64px; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 13px; font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1.1; letter-spacing: -.06em; }
.page-hero p { max-width: 700px; margin: 0 auto 25px; color: var(--muted); }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; color: #7c8799; font-size: .76rem; }
.breadcrumbs a:hover { color: var(--blue-dark); }
.breadcrumbs strong { max-width: 360px; overflow: hidden; color: var(--navy); font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }

/* Products listing */
.products-page { background: linear-gradient(135deg, #fbfdff, #f4f9fd); }
.product-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-bottom: 20px; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-tabs a { display: inline-flex; align-items: center; gap: 7px; padding: 11px 15px; border-radius: 10px; color: #596579; font-size: .78rem; font-weight: 800; }
.filter-tabs a small { display: grid; place-items: center; min-width: 22px; height: 22px; padding: 0 5px; border-radius: 999px; color: #7c899b; background: #eef2f6; font-size: .6rem; }
.filter-tabs a.is-active { color: #fff; background: var(--navy); box-shadow: 0 10px 24px rgba(23, 55, 95, .18); }
.filter-tabs a.is-active small { color: var(--navy); background: #fff; }
.product-search { position: relative; width: min(310px, 100%); }
.product-search input { width: 100%; height: 45px; padding: 0 48px 0 15px; border: 1px solid var(--line); border-radius: 11px; outline: none; background: #fafcff; color: var(--ink); }
.product-search input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 166, 231, .09); }
.product-search button { position: absolute; right: 5px; top: 5px; width: 36px; height: 35px; border: 0; border-radius: 8px; color: #fff; background: var(--navy); cursor: pointer; }
.results-line { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; color: var(--muted); font-size: .8rem; }
.results-line p { margin: 0; }
.results-line strong { color: var(--navy); }
.results-line a { color: var(--blue-dark); font-weight: 800; }
.empty-state { padding: 80px 30px; border: 1px dashed #ccd7e4; border-radius: var(--radius); background: #fff; text-align: center; }
.empty-state > span { display: block; color: var(--blue); font-size: 3rem; }
.empty-state h2 { margin: 10px 0; }
.empty-state p { color: var(--muted); }

/* Product detail */
.product-detail-hero { padding: 42px 0 90px; background: linear-gradient(135deg, #fbfdff, #f4f8ff); }
.product-detail-hero .breadcrumbs { justify-content: flex-start; margin-bottom: 36px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.product-gallery { position: relative; }
.product-detail-category { position: absolute; z-index: 3; left: 23px; top: 23px; }
.product-main-image { position: relative; min-height: 530px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(145deg, #f1f6fb, #fff); box-shadow: var(--shadow-md); }
.product-main-image::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(0, 166, 231, .13); box-shadow: 0 0 0 45px rgba(0, 166, 231, .025), 0 0 0 90px rgba(0, 166, 231, .02); }
.product-main-image img { position: relative; z-index: 2; width: 76%; max-height: 440px; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 22px 26px rgba(23, 55, 95, .17)); }
.image-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(23, 55, 95, .12) 1px, transparent 1px); background-size: 18px 18px; mask-image: linear-gradient(135deg, #000, transparent 40%); }
.product-detail-copy h1 { margin-bottom: 10px; font-size: clamp(2.6rem, 4vw, 4.2rem); line-height: 1.06; letter-spacing: -.06em; }
.product-model { display: inline-block; margin-bottom: 20px; padding: 6px 11px; border-radius: 8px; color: var(--blue-dark); background: var(--blue-soft); font-size: .73rem; font-weight: 800; }
.product-lead { margin-bottom: 28px; color: var(--muted); font-size: .98rem; }
.product-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; margin: 0 0 34px; padding: 0; list-style: none; }
.product-feature-list li { display: flex; align-items: flex-start; gap: 9px; color: #3f4b5f; font-size: .83rem; font-weight: 700; }
.product-feature-list li span { display: grid; place-items: center; width: 21px; height: 21px; flex: 0 0 21px; border-radius: 6px; color: #fff; background: var(--blue); font-size: .62rem; }
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.product-assurance { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; color: #7b8799; font-size: .68rem; font-weight: 700; }
.specs-section { background: #fff; }
.specs-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.specs-grid h2 { margin-bottom: 16px; font-size: 2.5rem; letter-spacing: -.05em; }
.specs-grid > div > p { color: var(--muted); }
.spec-table { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.spec-table div { display: grid; grid-template-columns: 1fr 1.35fr; border-bottom: 1px solid var(--line); }
.spec-table div:last-child { border-bottom: 0; }
.spec-table dt, .spec-table dd { margin: 0; padding: 20px 24px; }
.spec-table dt { color: #718096; background: #f8fafc; font-size: .78rem; font-weight: 700; }
.spec-table dd { color: var(--navy); font-size: .86rem; font-weight: 800; }
.related-products { background: var(--surface-soft); }
.not-found { min-height: 530px; display: grid; place-items: center; text-align: center; }
.not-found span { color: var(--blue); font-size: 6rem; font-weight: 800; opacity: .22; }
.not-found h1 { font-size: 2.8rem; }
.not-found p { color: var(--muted); }

/* Services page */
.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: process; }
.process-grid article { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.process-grid article::after { content: ""; position: absolute; z-index: 2; top: 54px; left: calc(100% + 1px); width: 19px; height: 1px; background: #cbd5e1; }
.process-grid article:last-child::after { display: none; }
.process-grid article > span { position: absolute; top: 19px; right: 22px; color: #e6ebf2; font-size: 2rem; font-weight: 800; }
.process-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 34px; border-radius: 16px; color: #fff; background: var(--navy); font-size: 1.25rem; }
.process-grid h3 { margin-bottom: 9px; color: var(--navy); }
.process-grid p { margin-bottom: 0; color: var(--muted); font-size: .82rem; }
.service-detail-section { background: var(--surface-soft); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.service-detail-card { display: flex; gap: 24px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.service-detail-icon { display: grid; place-items: center; width: 58px; height: 58px; flex: 0 0 58px; border-radius: 17px; color: var(--blue-dark); background: var(--blue-soft); font-size: 1.35rem; }
.service-detail-card h2 { margin-bottom: 8px; color: var(--navy); font-size: 1.35rem; }
.service-detail-card p { color: var(--muted); font-size: .85rem; }
.service-detail-card ul { display: grid; gap: 7px; margin: 18px 0 0; padding: 0; list-style: none; color: #4d5b70; font-size: .78rem; font-weight: 700; }
.service-detail-card li::before { content: "✓"; margin-right: 8px; color: var(--blue); }
.service-detail-cta { color: #fff; border-color: var(--navy); background: linear-gradient(145deg, var(--navy), #28517f); }
.service-detail-cta h2, .service-detail-cta p { color: #fff; }
.service-detail-cta p { opacity: .75; }
.service-detail-cta .service-detail-icon { color: #fff; background: rgba(255, 255, 255, .12); }

/* About */
.about-intro { background: #fff; }
.about-intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.about-visual-stack { position: relative; min-height: 570px; }
.about-image-card { position: absolute; left: 0; top: 0; width: 78%; height: 470px; display: grid; place-items: center; overflow: hidden; border-radius: 30px; background: linear-gradient(145deg, #edf4fa, #fff); box-shadow: var(--shadow-md); }
.about-image-card img { width: 78%; height: 78%; object-fit: contain; mix-blend-mode: multiply; }
.about-image-card.small { right: 0; left: auto; top: auto; bottom: 0; width: 43%; height: 245px; border: 9px solid #fff; border-radius: 25px; }
.about-experience { position: absolute; left: -20px; bottom: 22px; z-index: 2; width: 165px; min-height: 145px; display: flex; flex-direction: column; justify-content: center; padding: 24px; border-radius: 22px; color: #fff; background: var(--navy); box-shadow: var(--shadow-md); }
.about-experience strong { font-size: 2.2rem; line-height: 1; }
.about-experience span { margin-top: 8px; font-size: .68rem; line-height: 1.5; opacity: .72; }
.about-copy > p { color: var(--muted); }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.about-values > div { position: relative; padding: 20px 18px 18px 50px; border: 1px solid var(--line); border-radius: 14px; }
.about-values > div > span { position: absolute; left: 17px; top: 19px; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; color: #fff; background: var(--blue); font-size: .65rem; }
.about-values strong { display: block; color: var(--navy); font-size: .84rem; }
.about-values p { margin: 4px 0 0; color: var(--muted); font-size: .7rem; }
.principles-section { background: var(--surface-soft); }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.principles-grid article { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.principles-grid span { display: inline-block; margin-bottom: 30px; color: var(--blue); font-size: .75rem; font-weight: 800; }
.principles-grid h3 { color: var(--navy); font-size: 1.05rem; }
.principles-grid p { margin-bottom: 0; color: var(--muted); font-size: .81rem; }

/* Contact */
.contact-section { background: var(--surface-soft); }
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: var(--shadow-md); }
.contact-info-panel { position: relative; padding: 56px; overflow: hidden; color: #fff; background: linear-gradient(145deg, var(--navy-dark), var(--navy)); }
.contact-info-panel::after { content: ""; position: absolute; width: 280px; height: 280px; right: -150px; bottom: -150px; border-radius: 50%; border: 44px solid rgba(0, 166, 231, .12); }
.contact-info-panel h2 { color: #fff; }
.contact-info-panel > p { color: rgba(255, 255, 255, .68); }
.contact-methods { display: grid; gap: 16px; margin-top: 38px; }
.contact-methods > a, .contact-methods > div { display: flex; align-items: center; gap: 15px; padding: 15px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; background: rgba(255, 255, 255, .05); }
.contact-methods > a:hover { background: rgba(255, 255, 255, .09); }
.contact-methods > * > span { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 40px; border-radius: 11px; color: #fff; background: rgba(0, 166, 231, .25); }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { margin-bottom: 2px; color: rgba(255, 255, 255, .48); font-size: .65rem; }
.contact-methods strong { color: #fff; font-size: .78rem; line-height: 1.5; }
.working-hours { display: flex; gap: 13px; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .12); }
.working-hours > span { color: #7fd8fb; }
.working-hours strong { display: block; font-size: .8rem; }
.working-hours p { margin: 3px 0 0; color: rgba(255, 255, 255, .55); font-size: .72rem; }
.contact-form-card { padding: 56px; }
.contact-form-card > p { margin-bottom: 30px; color: var(--muted); }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label, .callback-form label { display: grid; gap: 7px; color: #4e5b6e; font-size: .73rem; font-weight: 800; }
.contact-form input, .contact-form textarea, .contact-form select, .callback-form input, .callback-form textarea { width: 100%; border: 1px solid #dfe6ee; border-radius: 11px; outline: none; background: #fbfcfe; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.contact-form input, .contact-form select, .callback-form input { height: 48px; padding: 0 14px; }
.contact-form textarea, .callback-form textarea { padding: 12px 14px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus, .callback-form input:focus, .callback-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 166, 231, .08); }
.form-note { color: #8a96a7; font-size: .63rem; text-align: center; }
.honeypot { position: absolute !important; left: -9999px !important; }

/* Footer */
.footer-cta { position: relative; padding: 55px 0; overflow: hidden; color: #fff; background: linear-gradient(120deg, var(--blue-dark), #087ab6 48%, var(--navy)); }
.footer-cta::after { content: ""; position: absolute; width: 420px; height: 420px; right: -160px; top: -230px; border: 65px solid rgba(255, 255, 255, .07); border-radius: 50%; }
.footer-cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-cta h2 { margin-bottom: 8px; font-size: clamp(2rem, 3.4vw, 3.1rem); line-height: 1.1; letter-spacing: -.05em; }
.footer-cta p { margin-bottom: 0; color: rgba(255, 255, 255, .7); }
.footer-cta-actions { display: flex; gap: 12px; flex: 0 0 auto; }
.site-footer { padding: 76px 0 24px; color: #c1ccda; background: #0c213d; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .8fr 1.1fr; gap: 55px; }
.brand-inverse .brand-copy { border-color: rgba(255, 255, 255, .12); }
.brand-inverse .brand-copy strong { color: #fff; }
.footer-brand > p { max-width: 350px; margin: 24px 0 19px; color: #8292a7; font-size: .8rem; }
.catalog-link { color: #79d4f8; font-size: .76rem; font-weight: 800; }
.site-footer h3 { margin: 8px 0 24px; color: #fff; font-size: .85rem; }
.footer-links, .footer-contact { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: #8f9db0; font-size: .77rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: grid; gap: 3px; }
.footer-contact span { color: #66788f; font-size: .61rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-contact a, .footer-contact p { margin: 0; color: #b6c2d1; font-size: .73rem; line-height: 1.55; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .08); color: #65768c; font-size: .67rem; }
.footer-bottom p { margin: 0; }

.floating-action { position: fixed; right: 22px; z-index: 900; width: 52px; height: 52px; display: grid; place-items: center; border: 4px solid rgba(255, 255, 255, .9); border-radius: 50%; color: #fff; box-shadow: 0 10px 28px rgba(16, 35, 58, .22); font-size: 1.15rem; transition: transform .2s; }
.floating-action:hover { transform: scale(1.08); }
.floating-phone { bottom: 86px; background: #2377ee; }
.floating-whatsapp { bottom: 25px; background: #25d366; }
.floating-whatsapp svg { display: block; width: 25px; height: 25px; fill: currentColor; }

/* Modal and toast */
.modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5, 20, 38, .66); backdrop-filter: blur(7px); }
.modal-card { position: relative; z-index: 1; width: min(100%, 520px); max-height: calc(100vh - 40px); overflow-y: auto; padding: 38px; border-radius: 24px; background: #fff; box-shadow: 0 28px 90px rgba(0, 0, 0, .28); transform: translateY(16px) scale(.98); transition: transform .25s; }
.modal.is-open .modal-card { transform: none; }
.modal-card h2 { margin-bottom: 8px; font-size: 2rem; letter-spacing: -.045em; }
.modal-card > p { color: var(--muted); font-size: .82rem; }
.modal-close { position: absolute; right: 15px; top: 15px; width: 36px; height: 36px; border: 0; border-radius: 50%; color: var(--navy); background: #f0f3f7; cursor: pointer; font-size: 1.4rem; }
.callback-form { display: grid; gap: 15px; margin-top: 24px; }
.callback-form label small { color: #9aa4b3; font-size: .62rem; font-weight: 600; }
.toast { position: fixed; z-index: 2500; left: 50%; bottom: 28px; width: min(calc(100% - 32px), 520px); padding: 15px 18px; border-radius: 12px; color: #fff; box-shadow: var(--shadow-md); transform: translateX(-50%); font-size: .8rem; font-weight: 700; animation: toast-in .35s ease both; }
.toast-success { background: var(--success); }
.toast-error { background: #c03945; }
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 16px); } }

/* Responsive */
@media (max-width: 1160px) {
    .header-inner { gap: 18px; }
    .brand-copy { display: none; }
    .main-nav a { padding-inline: 12px; }
    .hero-grid { gap: 35px; }
    .hero-visual-panel { width: 92%; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .category-grid { grid-template-columns: 1fr 1fr; }
    .category-card:first-child { grid-column: 1 / -1; }
    .category-card:first-child img { object-position: center top; }
    .footer-grid { grid-template-columns: 1.3fr .7fr .8fr; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-contact { grid-template-columns: 1fr 1fr 1.5fr; }
}

@media (max-width: 940px) {
    .section { padding: 80px 0; }
    .language-switcher { order: 2; margin-left: auto; }
    .menu-toggle { display: block; order: 3; margin-left: 0; cursor: pointer; }
    .main-nav { order: 4; }
    .header-cta { display: none; }
    .main-nav { position: fixed; left: 20px; right: 20px; top: 76px; display: grid; gap: 4px; padding: 12px; border-radius: 17px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .22s; }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .main-nav a { padding: 12px 14px; border-radius: 10px; }
    .hero { padding-top: 62px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 680px; }
    .hero-copy h1 { font-size: clamp(3.4rem, 9vw, 5.4rem); }
    .hero-visual { min-height: 520px; }
    .hero-visual-panel { width: 82%; }
    .category-grid { grid-template-columns: 1fr; }
    .category-card:first-child { grid-column: auto; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .why-grid, .about-intro-grid { grid-template-columns: 1fr; gap: 60px; }
    .why-visual { max-width: 650px; margin-inline: auto; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 55px; }
    .product-gallery { max-width: 680px; width: 100%; margin-inline: auto; }
    .specs-grid { grid-template-columns: 1fr; gap: 35px; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-grid article::after { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-cta-inner { align-items: flex-start; flex-direction: column; }
    .product-toolbar { align-items: stretch; flex-direction: column; }
    .product-search { width: 100%; }
}

@media (max-width: 700px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 66px 0; }
    .brand img { width: 105px; }
    .site-header, .header-inner { min-height: 72px; }
    .main-nav { top: 66px; left: 14px; right: 14px; }
    .hero { min-height: auto; padding: 50px 0 52px; }
    .hero-copy h1 { font-size: clamp(2.9rem, 15vw, 4.15rem); }
    .hero-copy > p { font-size: .94rem; }
    .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .hero-stats { justify-content: space-between; gap: 12px; }
    .hero-stats div { min-width: 0; margin: 0; padding-right: 12px; flex: 1; }
    .hero-stats strong { font-size: 1.35rem; }
    .hero-stats span { font-size: .56rem; }
    .hero-visual { min-height: 410px; }
    .hero-visual-panel { width: 92%; height: 355px; border-radius: 28px; }
    .hero-visual-panel::before { inset: 35px; }
    .floating-info { min-width: 154px; padding: 9px 11px; }
    .floating-info .info-icon { width: 31px; height: 31px; flex-basis: 31px; }
    .floating-info strong { font-size: .64rem; }
    .floating-info small { font-size: .54rem; }
    .info-energy { right: -3px; top: 24px; }
    .info-support { right: 0; bottom: 20px; }
    .info-range { left: -2px; bottom: 66px; }
    .split-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
    .service-grid, .product-grid, .service-detail-grid, .principles-grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; }
    .category-card { min-height: 360px; }
    .product-image { height: 245px; }
    .product-card h3, .product-card-body > p, .feature-chips { min-height: 0; }
    .why-visual { min-height: 420px; }
    .why-badge { width: 125px; height: 125px; right: 0; bottom: 5px; }
    .page-hero { padding: 68px 0 60px; }
    .page-hero h1 { font-size: 2.65rem; }
    .filter-tabs { display: grid; grid-template-columns: 1fr 1fr; }
    .filter-tabs a { justify-content: space-between; }
    .product-main-image { min-height: 390px; }
    .product-feature-list { grid-template-columns: 1fr; }
    .product-detail-copy h1 { font-size: 2.75rem; }
    .spec-table div { grid-template-columns: 1fr; }
    .spec-table dt { padding-bottom: 6px; }
    .spec-table dd { padding-top: 6px; }
    .process-grid { grid-template-columns: 1fr; }
    .service-detail-card { padding: 26px; }
    .about-visual-stack { min-height: 450px; }
    .about-image-card { height: 370px; }
    .about-image-card.small { height: 190px; }
    .about-experience { left: -5px; width: 135px; min-height: 120px; padding: 18px; }
    .about-values, .form-row { grid-template-columns: 1fr; }
    .contact-info-panel, .contact-form-card { padding: 34px 25px; }
    .footer-cta { padding: 46px 0; }
    .footer-cta-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
    .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-contact { grid-template-columns: 1fr; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
    .modal-card { padding: 31px 23px; }
    .floating-action { right: 14px; width: 48px; height: 48px; }
    html[dir="rtl"] .language-switcher { margin-left: 0; margin-right: auto; }
    html[dir="rtl"] .floating-action { right: auto; left: 14px; }
}

@media (max-width: 430px) {
    .language-toggle { height: 40px; padding: 8px 12px; }
    .hero-actions, .footer-cta-actions { grid-template-columns: 1fr; }
    .hero-stats div { padding-right: 7px; }
    .hero-visual { min-height: 350px; }
    .hero-visual-panel { height: 300px; }
    .floating-info { min-width: 144px; }
    .category-card-copy { padding: 27px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div { grid-column: auto !important; }
    .product-actions { display: grid; grid-template-columns: 1fr; }
}

.cookie-consent {
    position: fixed;
    z-index: 1200;
    left: 50%;
    bottom: 22px;
    width: min(720px, calc(100% - 32px));
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    color: #fff;
    background: rgba(13, 37, 68, .97);
    box-shadow: 0 22px 60px rgba(7, 25, 48, .28);
    opacity: 0;
    transform: translate(-50%, 24px);
    transition: opacity .22s ease, transform .22s ease;
}
.cookie-consent[hidden] { display: none; }
.cookie-consent.is-visible { opacity: 1; transform: translate(-50%, 0); }
.cookie-consent > div:first-child { min-width: 0; flex: 1; }
.cookie-consent strong { display: block; margin-bottom: 5px; font-size: .95rem; }
.cookie-consent p { margin: 0; color: rgba(255,255,255,.72); font-size: .76rem; line-height: 1.55; }
.cookie-consent-actions { display: flex; gap: 8px; flex: 0 0 auto; }
.cookie-consent-actions .button { min-height: 42px; padding-inline: 16px; white-space: nowrap; }
.cookie-settings-button {
    position: fixed;
    z-index: 1100;
    left: 14px;
    bottom: 14px;
    margin: 0;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255,255,255,.94);
    box-shadow: 0 8px 24px rgba(10,37,68,.12);
    font: inherit;
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
}
.cookie-settings-button:hover, .cookie-settings-button:focus-visible { color: var(--blue); border-color: var(--blue); }

@media (max-width: 700px) {
    .cookie-consent { align-items: stretch; flex-direction: column; gap: 14px; bottom: 14px; }
    .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .cookie-consent-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
