/* =====================================================================
   JQ EXPORTS — Enterprise Design System
   Luxury · Premium · Corporate · Mobile-first
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
    --ink: #051527;          /* deep forest black-green */
    --ink-2: #0A1F38;
    --ink-3: #12304F;
    --gold: #C49B45;
    --gold-2: #E2B75A;
    --gold-soft: #F6EEDC;
    --cream: #F7F4EC;
    --cream-2: #EFEADF;
    --white: #FFFFFF;
    --text: #3C4B43;
    --text-light: #6E7C74;
    --line: #E5DFCE;
    --line-dark: rgba(255,255,255,.14);
    --danger: #B3402F;
    --success: #1F7A4D;
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow-sm: 0 2px 10px rgba(11,32,23,.06);
    --shadow-md: 0 10px 30px rgba(11,32,23,.10);
    --shadow-lg: 0 24px 60px rgba(11,32,23,.16);
    --radius: 16px;
    --radius-sm: 10px;
    --container: 1240px;
    --header-h: 78px;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--ink-3); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.18; font-weight: 600; }
.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--gold-2);
    padding: 12px 20px; z-index: 200; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }
.text-center { text-align: center; }
.icon { width: 20px; height: 20px; flex-shrink: 0; }
svg.icon.is-filled { fill: currentColor; color: var(--gold); }
svg.icon.is-empty { color: rgba(255,255,255,.25); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: .95rem;
    border: 1.5px solid transparent; transition: all var(--transition); line-height: 1.2;
    white-space: nowrap;
}
.btn .icon { width: 17px; height: 17px; transition: transform var(--transition); }
.btn:hover .icon { transform: translateX(3px); }
.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--ink); box-shadow: 0 6px 20px rgba(201,162,39,.35); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,162,39,.45); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink-3); }
.btn--outline:hover { background: var(--ink); color: var(--gold-2); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: var(--white); color: var(--ink); }
.btn--sm { padding: 10px 20px; font-size: .88rem; }
.btn--lg { padding: 16px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink); color: rgba(255,255,255,.85); font-size: .82rem; position: relative; z-index: 60; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 12px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.8); }
.topbar__item .icon { width: 14px; height: 14px; color: var(--gold-2); }
.topbar__item a { color: rgba(255,255,255,.85); }
.topbar__item a:hover { color: var(--gold-2); }
.topbar__flag { gap: 2px; font-size: 15px; }

/* ---------- Header ---------- */
.header { background: var(--white); position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 0 var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 52px; height: 52px; border-radius: 12px; }
.brand__name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--ink); letter-spacing: .02em; display: block; line-height: 1.1; }
.brand__name em { font-style: normal; color: var(--gold); }
.brand__tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light); display: block; margin-top: 2px; }
.brand--footer .brand__name { color: var(--white); }
.brand--footer .brand__tag { color: rgba(255,255,255,.55); }

.nav { display: flex; align-items: center; gap: 8px; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
    display: inline-flex; align-items: center; gap: 6px; padding: 10px 13px;
    font-weight: 600; font-size: .93rem; color: var(--ink); border-radius: 8px;
}
.nav__link .icon { width: 14px; height: 14px; color: var(--gold); transition: transform var(--transition); }
.nav__link:hover { color: var(--ink-3); background: var(--cream); }
.nav__link--btn { font-family: var(--font-body); font-size: .93rem; }
.nav__item:hover .nav__link .icon { transform: rotate(180deg); }
.nav__cta { display: flex; align-items: center; gap: 8px; margin-left: 8px; }
.nav__search-btn { padding: 9px 12px; }

.drop {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md); padding: 10px; min-width: 240px; opacity: 0; visibility: hidden;
    transition: all var(--transition); z-index: 70;
}
.drop--wide { min-width: 640px; padding: 18px; }
.nav__item:hover .drop, .nav__item:focus-within .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.drop__link { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: .9rem; font-weight: 500; color: var(--text); }
.drop__link img { width: 34px; height: 34px; border-radius: 8px; background: var(--cream); padding: 4px; }
.drop__link:hover { background: var(--cream); color: var(--ink); }
.drop__link--row { display: flex; justify-content: space-between; padding: 10px 12px; }
.drop__link--row::after { content: "→"; color: var(--gold); opacity: 0; transition: opacity var(--transition); }
.drop__link--row:hover::after { opacity: 1; }
.drop__all { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; padding: 12px; background: var(--ink); color: var(--gold-2); border-radius: 8px; font-weight: 600; font-size: .9rem; }
.drop__all .icon { width: 16px; height: 16px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--transition); }

/* ---------- Drawer (mobile) ---------- */
.drawer {
    position: fixed; inset: 0 0 0 auto; width: min(400px, 88vw); background: var(--white);
    z-index: 100; transform: translateX(105%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.drawer__title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.drawer__close .icon { width: 22px; height: 22px; }
.drawer__body { overflow-y: auto; padding: 20px 22px 40px; flex: 1; }
.drawer__search { display: flex; gap: 8px; margin-bottom: 20px; }
.drawer__search .form__input { flex: 1; }
.drawer__link { display: block; padding: 13px 2px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); font-size: 1.02rem; }
.drawer__group summary { display: flex; justify-content: space-between; align-items: center; padding: 13px 2px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); cursor: pointer; list-style: none; }
.drawer__group summary::-webkit-details-marker { display: none; }
.drawer__group summary::after { content: "+"; color: var(--gold); font-size: 1.2rem; }
.drawer__group[open] summary::after { content: "–"; }
.drawer__sublink { display: block; padding: 10px 4px 10px 14px; color: var(--text); font-size: .95rem; border-bottom: 1px dashed var(--line); }
.drawer__sublink--all { color: var(--ink-3); font-weight: 600; display: flex; justify-content: space-between; }
.drawer__cta { margin-top: 24px; display: grid; gap: 10px; }
.drawer-overlay { position: fixed; inset: 0; background: rgba(11,32,23,.55); z-index: 90; opacity: 0; visibility: hidden; transition: all var(--transition); }
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- Flash / toast ---------- */
.flash-stack { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 300; display: grid; gap: 8px; width: min(520px, 92vw); }
.flash { display: flex; align-items: center; gap: 10px; background: var(--ink); color: var(--white); padding: 13px 16px; border-radius: 12px; box-shadow: var(--shadow-md); font-size: .92rem; }
.flash .icon { color: var(--gold-2); }
.flash--error { background: var(--danger); }
.flash--error .icon { color: var(--white); }
.flash__close { margin-left: auto; color: rgba(255,255,255,.7); }
.toast-stack { position: fixed; bottom: 24px; right: 24px; z-index: 300; display: grid; gap: 10px; width: min(380px, 90vw); }
.toast { background: var(--ink); color: var(--white); border-left: 4px solid var(--gold); padding: 14px 16px; border-radius: 12px; box-shadow: var(--shadow-lg); font-size: .92rem; animation: toast-in .3s ease; }
.toast--error { border-left-color: var(--danger); }
@keyframes toast-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.hero__slider { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero__slide.is-active .hero__bg { animation: hero-zoom 7s ease forwards; }
@keyframes hero-zoom { from { transform: scale(1.12); } to { transform: scale(1.02); } }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7,20,14,.92) 15%, rgba(7,20,14,.62) 55%, rgba(7,20,14,.25)); }
.hero__content { position: relative; z-index: 2; padding: 90px 24px 110px; max-width: var(--container); }
.hero__slide.is-active .hero__content > * { animation: hero-up .7s ease both; }
.hero__slide.is-active .hero__content > *:nth-child(2) { animation-delay: .1s; }
.hero__slide.is-active .hero__content > *:nth-child(3) { animation-delay: .2s; }
.hero__slide.is-active .hero__content > *:nth-child(4) { animation-delay: .3s; }
.hero__slide.is-active .hero__content > *:nth-child(5) { animation-delay: .42s; }
@keyframes hero-up { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero__kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-2); text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700; margin-bottom: 18px; }
.hero__kicker .icon { width: 16px; height: 16px; }
.hero__title { color: var(--white); font-size: clamp(2.1rem, 4.6vw, 3.6rem); max-width: 760px; font-weight: 600; }
.hero__subtitle { color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 640px; margin-top: 18px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; color: rgba(255,255,255,.75); font-size: .88rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust .icon { width: 16px; height: 16px; color: var(--gold-2); }
.hero__dots { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.hero__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); transition: all var(--transition); }
.hero__dot.is-active { background: var(--gold); width: 28px; border-radius: 6px; }

/* ---------- Stats ---------- */
.stats { background: var(--gold); position: relative; z-index: 3; margin-top: -1px; }
.stats__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(11,32,23,.12); }
.stat { background: var(--gold); padding: 30px 20px; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; color: var(--ink); display: block; line-height: 1.1; }
.stat__label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(11,32,23,.72); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section--light { background: var(--cream); }
.section--dark { background: var(--ink); position: relative; overflow: hidden; }
.section--dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 400px at 85% -10%, rgba(201,162,39,.10), transparent 60%); pointer-events: none; }
.section__head { max-width: 720px; margin-bottom: 48px; display: grid; gap: 6px; }
.section__head--light { color: var(--white); }
.section__head--light .section__title { color: var(--white); }
.section__head--light .section__lede { color: rgba(255,255,255,.7); }
.section__head .btn { justify-self: start; margin-top: 10px; }
.section__kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); text-transform: uppercase; letter-spacing: .2em; font-size: .74rem; font-weight: 700; }
.section__title { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-top: 6px; }
.section__lede { color: var(--text-light); max-width: 640px; }
.section__more { text-align: center; margin-top: 44px; }

/* ---------- Category grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-card {
    position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 18px 22px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
    transition: all var(--transition); overflow: hidden;
}
.cat-card::after { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-card__icon { background: var(--cream); border-radius: 12px; padding: 8px; }
.cat-card__icon img { width: 44px; height: 44px; }
.cat-card__name { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.02rem; line-height: 1.25; }
.cat-card__count { font-size: .78rem; color: var(--text-light); }
.cat-card__arrow { position: absolute; top: 18px; right: 16px; color: var(--gold); opacity: 0; transform: translateX(-6px); transition: all var(--transition); }
.cat-card__arrow .icon { width: 18px; height: 18px; }
.cat-card:hover .cat-card__arrow { opacity: 1; transform: translateX(0); }

/* ---------- Product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: all var(--transition); }
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prod-card__media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.prod-card__media img { width: 100%; height: 100%; object-fit: contain; background: #fff; padding: 8px; }
.prod-card:hover .prod-card__media img { transform: none; }
.prod-card__badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--ink); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.prod-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-card__cat { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.prod-card__title { font-size: 1.1rem; }
.prod-card__title a { color: var(--ink); }
.prod-card__title a:hover { color: var(--ink-3); }
.prod-card__desc { font-size: .88rem; color: var(--text-light); }
.prod-card__specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.prod-card__specs span { display: inline-flex; align-items: center; gap: 5px; font-size: .76rem; background: var(--cream); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; color: var(--text); }
.prod-card__specs .icon { width: 13px; height: 13px; color: var(--gold); }
.prod-card__actions { display: flex; gap: 8px; margin-top: 14px; }

/* ---------- Why cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; transition: all var(--transition); }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card__icon { display: inline-flex; width: 54px; height: 54px; border-radius: 14px; background: var(--ink); color: var(--gold-2); align-items: center; justify-content: center; margin-bottom: 20px; }
.why-card__icon .icon { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { font-size: .93rem; color: var(--text-light); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; counter-reset: step; }
.step { position: relative; background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 24px 18px 20px; transition: all var(--transition); }
.step:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.step__num { position: absolute; top: 14px; right: 16px; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: rgba(227,199,102,.35); }
.step__icon { color: var(--gold-2); margin-bottom: 14px; }
.step__icon .icon { width: 26px; height: 26px; }
.step h3 { color: var(--white); font-size: .98rem; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,.62); font-size: .8rem; line-height: 1.55; }

/* ---------- Markets ---------- */
.market-list { display: grid; gap: 26px; }
.market-region { display: grid; grid-template-columns: 170px 1fr; gap: 20px; align-items: start; }
.market-region__name { font-size: 1rem; letter-spacing: .04em; padding-top: 6px; border-left: 3px solid var(--gold); padding-left: 14px; }
.market-region__flags { display: flex; flex-wrap: wrap; gap: 10px; }
.market-flag { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px 7px 9px; font-size: .86rem; font-weight: 500; color: var(--text); transition: all var(--transition); }
.market-flag:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.market-flag__emoji { font-size: 1.15rem; line-height: 1; }
.market-flag-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Cert strip ---------- */
.cert-strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cert-strip__inner { display: flex; align-items: center; gap: 34px; overflow-x: auto; padding: 22px 24px; scrollbar-width: none; }
.cert-strip__inner::-webkit-scrollbar { display: none; }
.cert-strip__item { display: flex; align-items: center; gap: 10px; font-size: .84rem; font-weight: 600; color: var(--text); white-space: nowrap; }
.cert-strip__item img { width: 42px; height: 42px; }
.cert-strip__more { margin-left: auto; font-size: .84rem; font-weight: 700; color: var(--ink-3); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.cert-strip__more .icon { width: 15px; height: 15px; }

/* ---------- Testimonials ---------- */
.tst-slider { position: relative; overflow: hidden; }
.tst-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.tst-slide { min-width: 100%; padding: 10px 4px 30px; display: grid; justify-items: center; text-align: center; gap: 18px; }
.tst-stars { display: flex; gap: 4px; }
.tst-stars .icon { width: 20px; height: 20px; }
.tst-slide blockquote { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.5rem); color: rgba(255,255,255,.92); max-width: 780px; line-height: 1.5; }
.tst-slide figcaption { display: grid; gap: 2px; }
.tst-slide figcaption strong { color: var(--gold-2); font-size: .98rem; }
.tst-slide figcaption span { color: rgba(255,255,255,.55); font-size: .84rem; }
.tst-nav { display: flex; align-items: center; justify-content: center; gap: 18px; }
.tst-nav__btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-dark); color: var(--white); display: inline-flex; align-items: center; justify-content: center; transition: all var(--transition); }
.tst-nav__btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.tst-nav__btn#tst-prev .icon { transform: rotate(180deg); }
.tst-dots { display: flex; gap: 7px; }
.tst-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); transition: all var(--transition); }
.tst-dots button.is-active { background: var(--gold); width: 24px; border-radius: 5px; }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: all var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card__media { display: block; aspect-ratio: 16/9.5; overflow: hidden; background: var(--cream-2); }
.blog-card__media img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.blog-card:hover .blog-card__media img { transform: none; }
.blog-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.blog-card__meta { display: flex; justify-content: space-between; font-size: .76rem; color: var(--text-light); }
.blog-card__cat { font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; }
.blog-card__title { font-size: 1.08rem; line-height: 1.35; }
.blog-card__title a { color: var(--ink); }
.blog-card__title a:hover { color: var(--ink-3); }
.blog-card__excerpt { font-size: .88rem; color: var(--text-light); }
.blog-card__more { margin-top: auto; font-weight: 700; font-size: .88rem; color: var(--ink-3); display: inline-flex; align-items: center; gap: 6px; }
.blog-card__more .icon { width: 15px; height: 15px; color: var(--gold); transition: transform var(--transition); }
.blog-card__more:hover .icon { transform: translateX(4px); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--ink-3), var(--ink)); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,39,.22), transparent 65%); }
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 34px; padding: 64px 24px; }
.cta-band--compact .cta-band__inner { padding: 48px 24px; }
.cta-band__text { max-width: 620px; }
.cta-band__title { color: var(--white); font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 8px 0 12px; }
.cta-band__text p { color: rgba(255,255,255,.7); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Page hero ---------- */
.page-hero { background: linear-gradient(115deg, var(--ink) 20%, var(--ink-3)); padding: 56px 0 64px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -140px; bottom: -180px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,39,.14), transparent 65%); }
.page-hero--compact { padding: 40px 0 46px; }
.page-hero__title { color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-top: 16px; max-width: 860px; }
.page-hero__sub { color: rgba(255,255,255,.78); margin-top: 12px; max-width: 720px; font-size: 1.02rem; }
.page-hero--article { padding: 44px 0 30px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: .8rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.55); }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: rgba(255,255,255,.3); }
.breadcrumbs a { color: rgba(255,255,255,.72); }
.breadcrumbs a:hover { color: var(--gold-2); }
.breadcrumbs span { color: var(--gold-2); }

/* ---------- Filters / pager ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-size: .88rem; font-weight: 600; color: var(--text); transition: all var(--transition); }
.filter-chip:hover { border-color: var(--gold); color: var(--ink); }
.filter-chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--gold-2); }
.filter-chip__count { font-size: .72rem; background: var(--cream); border-radius: 999px; padding: 1px 7px; }
.filter-chip.is-active .filter-chip__count { background: rgba(255,255,255,.15); }
.results-count { font-size: .88rem; color: var(--text-light); margin-bottom: 18px; }
.pager { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 44px; }
.pager__link { min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--text); font-weight: 600; font-size: .9rem; transition: all var(--transition); }
.pager__link:hover { border-color: var(--gold); color: var(--ink); }
.pager__link.is-active { background: var(--ink); color: var(--gold-2); border-color: var(--ink); }
.pager__link.is-disabled { opacity: .4; pointer-events: none; }
.pager__link .icon { width: 16px; height: 16px; }
.pager__gap { color: var(--text-light); }

/* ---------- Product detail ---------- */
.product-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; margin-top: 30px; }
.product-hero__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.product-hero__media img { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: #fff; }
.product-hero__certs { position: absolute; bottom: 14px; left: 14px; display: inline-flex; align-items: center; gap: 8px; background: rgba(11,32,23,.85); color: var(--gold-2); padding: 8px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600; }
.product-hero__certs .icon { width: 15px; height: 15px; }
.product-hero__info .page-hero__title { margin-top: 8px; }
.product-hero__info .page-hero__sub { color: rgba(255,255,255,.75); }
.product-hero__quick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 26px; }
.product-hero__quick li { display: flex; gap: 10px; align-items: flex-start; background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); border-radius: 12px; padding: 12px 14px; }
.product-hero__quick .icon { width: 18px; height: 18px; color: var(--gold-2); margin-top: 2px; }
.product-hero__quick strong { display: block; color: var(--white); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; opacity: .7; }
.product-hero__quick span span { color: rgba(255,255,255,.9); font-size: .84rem; }
.product-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.product-layout { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }
.product-layout__main { min-width: 0; }
.product-layout__side { display: grid; gap: 20px; position: sticky; top: calc(var(--header-h) + 20px); }

.prose { font-size: 1rem; line-height: 1.8; }
.prose h2 { font-size: 1.5rem; margin: 34px 0 14px; }
.prose h3 { font-size: 1.18rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose--article { font-size: 1.05rem; }
.block-title { font-size: 1.4rem; margin: 46px 0 18px; }

.spec-table-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.spec-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.spec-table th { text-align: left; font-weight: 600; }
.spec-table th, .spec-table td { padding: 13px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table th { width: 40%; background: var(--cream); color: var(--ink); font-size: .88rem; }
.spec-table td { color: var(--text); }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.info-card .icon { width: 24px; height: 24px; color: var(--gold); margin-bottom: 12px; }
.info-card h3 { font-size: 1rem; margin-bottom: 8px; }
.info-card p { font-size: .86rem; color: var(--text-light); }

.side-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.side-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.08rem; margin-bottom: 14px; }
.side-card h3 .icon { width: 20px; height: 20px; color: var(--gold); }
.side-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 14px; }
.side-card--quote { border-top: 4px solid var(--gold); }
.side-card--gold { background: linear-gradient(150deg, var(--gold-soft), var(--cream)); border-color: var(--gold); }
.side-contact { display: grid; gap: 10px; }
.side-contact a { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 500; color: var(--text); }
.side-contact a:hover { color: var(--ink); }
.side-contact .icon { width: 17px; height: 17px; color: var(--gold); }
.side-links { display: grid; gap: 2px; }
.side-links a { display: block; padding: 9px 10px; border-radius: 8px; font-size: .9rem; color: var(--text); }
.side-links a:hover, .side-links a.is-active { background: var(--cream); color: var(--ink); font-weight: 600; }
.side-list { display: grid; gap: 8px; }
.side-list li { display: flex; justify-content: space-between; font-size: .86rem; border-bottom: 1px dashed var(--line); padding-bottom: 8px; }
.side-list strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow var(--transition); }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--gold); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 18px 22px; font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { width: 18px; height: 18px; color: var(--gold); transition: transform var(--transition); flex-shrink: 0; }
.faq-item[open] summary .icon { transform: rotate(90deg); }
.faq-item__answer { padding: 0 22px 20px; font-size: .94rem; color: var(--text); line-height: 1.75; }
.faq-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.faq-tab { padding: 9px 18px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-weight: 600; font-size: .88rem; color: var(--text); transition: all var(--transition); }
.faq-tab.is-active { background: var(--ink); color: var(--gold-2); border-color: var(--ink); }
.faq-panel { display: none; }
.faq-panel.is-active { display: block; animation: hero-up .4s ease; }

/* ---------- Countries ---------- */
.country-region { margin-bottom: 44px; }
.country-region__title { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; margin-bottom: 20px; }
.country-region__title .icon { width: 22px; height: 22px; color: var(--gold); }
.country-region__title span { color: var(--text-light); font-size: .9rem; font-family: var(--font-body); }
.country-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.country-card { position: relative; display: flex; flex-direction: column; gap: 4px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; transition: all var(--transition); }
.country-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.country-card__flag { font-size: 1.6rem; line-height: 1; }
.country-card__name { font-weight: 700; color: var(--ink); font-size: .95rem; }
.country-card__meta { font-size: .76rem; color: var(--text-light); }
.country-card__arrow { position: absolute; top: 16px; right: 14px; color: var(--gold); opacity: 0; transition: all var(--transition); }
.country-card__arrow .icon { width: 16px; height: 16px; }
.country-card:hover .country-card__arrow { opacity: 1; }
.countries-note { display: flex; gap: 14px; align-items: flex-start; background: var(--gold-soft); border: 1px solid var(--gold); border-radius: var(--radius); padding: 22px 26px; }
.countries-note .icon { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; }
.countries-note a { font-weight: 700; }
.country-hero { display: flex; gap: 22px; align-items: center; margin-top: 18px; }
.country-hero__flag { font-size: 4.4rem; line-height: 1; filter: drop-shadow(0 6px 16px rgba(0,0,0,.3)); }
.country-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.country-fact { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: grid; gap: 4px; }
.country-fact .icon { width: 22px; height: 22px; color: var(--gold); margin-bottom: 8px; }
.country-fact__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); }
.country-fact__value { font-weight: 600; color: var(--ink); font-size: .93rem; }

/* ---------- Certificates page ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cert-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; transition: all var(--transition); }
.cert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cert-card__img { width: 64px; height: 64px; }
.cert-card h2 { font-size: 1.08rem; }
.cert-card p { font-size: .86rem; color: var(--text-light); flex: 1; }
.cert-card__meta { display: grid; gap: 6px; font-size: .8rem; }
.cert-card__meta div { display: flex; justify-content: space-between; gap: 10px; border-top: 1px dashed var(--line); padding-top: 6px; }
.cert-card__meta dt { color: var(--text-light); }
.cert-card__meta dd { font-weight: 600; color: var(--ink); text-align: right; }
.cert-note { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 30px 32px; margin-top: 44px; }
.cert-note h2 { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; margin-bottom: 12px; }
.cert-note h2 .icon { width: 22px; height: 22px; color: var(--gold); }
.cert-note p { color: var(--text-light); margin-bottom: 16px; }
.cert-note__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid--small { grid-template-columns: repeat(3, 1fr); }
.gallery-item { position: relative; display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.gallery-item:hover img { transform: none; }
.gallery-item__caption { position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px; background: linear-gradient(transparent, rgba(11,32,23,.85)); color: var(--white); font-size: .84rem; font-weight: 600; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gallery-item__caption { opacity: 1; }
.lightbox { position: fixed; inset: 0; background: rgba(7,18,13,.94); z-index: 400; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 18px; padding: 40px; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: min(1080px, 92vw); max-height: 76vh; border-radius: 12px; object-fit: contain; }
.lightbox__caption { color: rgba(255,255,255,.8); font-size: .95rem; }
.lightbox__close { position: absolute; top: 22px; right: 26px; color: var(--white); width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); display: inline-flex; align-items: center; justify-content: center; }
.lightbox__close:hover { background: var(--gold); color: var(--ink); }

/* ---------- Downloads ---------- */
.dl-list { display: grid; gap: 16px; }
.dl-card { display: flex; align-items: center; gap: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; transition: all var(--transition); }
.dl-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dl-card__icon { width: 58px; height: 58px; flex-shrink: 0; border-radius: 14px; background: var(--cream); display: inline-flex; align-items: center; justify-content: center; color: var(--gold); }
.dl-card__icon .icon { width: 28px; height: 28px; }
.dl-card__body { flex: 1; }
.dl-card__body h2 { font-size: 1.12rem; margin-bottom: 6px; }
.dl-card__body p { font-size: .9rem; color: var(--text-light); }
.dl-card__meta { font-size: .76rem; color: var(--text-light); display: inline-block; margin-top: 6px; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 44px; align-items: start; }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.contact-card .icon { width: 24px; height: 24px; color: var(--gold); margin-bottom: 12px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-card p { font-size: .88rem; color: var(--text); }
.contact-card a { font-weight: 600; }
.contact-card__hours { font-size: .8rem !important; color: var(--text-light) !important; margin-top: 6px; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 38px; box-shadow: var(--shadow-sm); }
.contact-form-wrap h2 { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; margin-bottom: 24px; }
.contact-form-wrap h2 .icon { width: 22px; height: 22px; color: var(--gold); }

/* ---------- Forms ---------- */
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.form__row { margin-bottom: 16px; }
.form__grid .form__row { margin-bottom: 0; }
.form__label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form__input {
    width: 100%; padding: 12px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    background: var(--white); color: var(--ink); transition: all var(--transition); font-size: .95rem;
}
.form__input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.15); }
.form__input--lg { padding: 15px 19px; font-size: 1.02rem; }
textarea.form__input { resize: vertical; min-height: 90px; }
select.form__input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C9A227' stroke-width='2.4'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form__hint { font-size: .78rem; color: var(--text-light); margin-top: 10px; }
.form__hint a { text-decoration: underline; }
.form__honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form__captcha { margin-bottom: 16px; }

/* ---------- RFQ ---------- */
.rfq-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 44px; box-shadow: var(--shadow-md); }
.rfq-card__step { display: flex; align-items: center; gap: 12px; font-size: 1.2rem; margin: 30px 0 18px; padding-top: 26px; border-top: 1px dashed var(--line); }
.rfq-card__step:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.rfq-card__step span { width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: var(--gold-2); display: inline-flex; align-items: center; justify-content: center; font-size: .9rem; font-family: var(--font-body); }
.rfq-items { display: grid; gap: 14px; margin-bottom: 12px; }
.rfq-item { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; }
.rfq-item__row { display: grid; grid-template-columns: 1.5fr .9fr .9fr auto; gap: 12px; align-items: end; }
.rfq-item__row .form__row { margin-bottom: 0; }
.rfq-item__remove { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: var(--white); color: var(--danger); display: inline-flex; align-items: center; justify-content: center; }
.rfq-item__remove .icon { width: 17px; height: 17px; }
.rfq-note { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.rfq-note h3 { display: flex; align-items: center; gap: 8px; font-size: 1.05rem; margin-bottom: 12px; }
.rfq-note h3 .icon { width: 20px; height: 20px; color: var(--gold); }
.rfq-note ol { list-style: decimal; padding-left: 20px; color: var(--text-light); font-size: .9rem; display: grid; gap: 6px; }
.rfq-note p { color: var(--text-light); font-size: .9rem; margin-bottom: 12px; }

/* ---------- Track ---------- */
.track-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 40px; box-shadow: var(--shadow-sm); }
.track-result { margin-top: 24px; display: none; }
.track-result.is-visible { display: block; animation: hero-up .4s ease; }
.track-result__card { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.track-result__head { background: var(--ink); color: var(--white); padding: 16px 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.track-result__ref { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-2); font-weight: 700; }
.track-result__status { background: var(--gold); color: var(--ink); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 6px 14px; border-radius: 999px; }
.track-result__body { padding: 18px 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: .92rem; }
.track-result__body div { display: grid; }
.track-result__body span { color: var(--text-light); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; }
.track-result__body strong { color: var(--ink); }
.track-result__error { background: #FBEAE7; border: 1px solid #F0C9C2; color: var(--danger); padding: 16px 20px; border-radius: var(--radius-sm); font-size: .92rem; }

/* ---------- Search ---------- */
.search-hero-form { display: flex; gap: 10px; margin-top: 26px; max-width: 640px; }
.search-hero-form .form__input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color: var(--white); }
.search-hero-form .form__input::placeholder { color: rgba(255,255,255,.5); }
.search-pages { display: grid; gap: 8px; margin-bottom: 30px; }
.search-pages a { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 18px; font-weight: 600; color: var(--ink); transition: all var(--transition); }
.search-pages a:hover { border-color: var(--gold); transform: translateX(4px); }
.search-pages .icon { width: 16px; height: 16px; color: var(--gold); margin-left: auto; }

/* ---------- Sitemap ---------- */
.sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.sitemap-col h2 { font-size: 1.05rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.sitemap-col ul { display: grid; gap: 7px; font-size: .9rem; }
.sitemap-col a { color: var(--text); }
.sitemap-col a:hover { color: var(--ink-3); }

/* ---------- 404 ---------- */
.error-page { padding: 90px 0; }
.error-page__inner { text-align: center; display: grid; justify-items: center; gap: 14px; margin-bottom: 60px; }
.error-page__code { font-family: var(--font-display); font-size: clamp(4.5rem, 10vw, 7rem); font-weight: 700; color: var(--ink); line-height: 1; background: linear-gradient(120deg, var(--gold), var(--ink-3)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.error-page__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.error-page .search-hero-form { justify-self: center; }
.error-page .search-hero-form .form__input { background: var(--white); border-color: var(--line); color: var(--ink); }
.error-page .search-hero-form .form__input::placeholder { color: var(--text-light); }

/* ---------- Careers ---------- */
.job-list { display: grid; gap: 16px; }
.job-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; transition: all var(--transition); }
.job-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.job-card__head { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; margin-bottom: 12px; }
.job-card__head h2 { font-size: 1.22rem; }
.job-card__head h2 a { color: var(--ink); }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 10px; font-size: .84rem; color: var(--text-light); }
.job-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-card__meta .icon { width: 15px; height: 15px; color: var(--gold); }
.job-card__excerpt { color: var(--text-light); font-size: .92rem; }

/* ---------- Featured post ---------- */
.featured-post { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.featured-post__media img { width: 100%; height: 100%; object-fit: cover; }
.featured-post__body { padding: 34px 36px; display: flex; flex-direction: column; gap: 12px; }
.featured-post__tag { align-self: flex-start; background: var(--gold); color: var(--ink); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.featured-post__title { font-size: 1.5rem; line-height: 1.3; }
.featured-post__title a { color: var(--ink); }
.featured-post__excerpt { color: var(--text-light); font-size: .95rem; }
.featured-post__meta { display: flex; gap: 16px; font-size: .8rem; color: var(--text-light); }
.featured-post__meta span { display: inline-flex; gap: 5px; align-items: center; }

/* ---------- Article ---------- */
.article-head__meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; color: rgba(255,255,255,.6); font-size: .85rem; }
.article-head__meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-head__meta .icon { width: 15px; height: 15px; color: var(--gold-2); }
.article-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 34px; box-shadow: var(--shadow-md); }
.article-cover img { width: 100%; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0; }
.tag { background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .8rem; font-weight: 600; color: var(--text); }
.tag:hover { border-color: var(--gold); color: var(--ink); }
.article-cta { background: var(--ink); border-radius: var(--radius); padding: 32px 36px; display: grid; gap: 8px; text-align: center; justify-items: center; margin-top: 40px; }
.article-cta h3 { color: var(--white); font-size: 1.3rem; }
.article-cta p { color: rgba(255,255,255,.65); font-size: .92rem; }
.article-cta .btn { margin-top: 8px; }

/* ---------- AI knowledge base ---------- */
.ai-kb { margin-bottom: 40px; }
.ai-kb h2 { font-size: 1.4rem; margin: 30px 0 16px; }
.geo-block { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 20px 24px; margin-bottom: 14px; }
.geo-block h3 { font-size: 1.02rem; margin-bottom: 6px; }
.geo-block p { font-size: .92rem; color: var(--text); }

/* ---------- Empty state ---------- */
.empty-state { text-align: center; padding: 60px 24px; display: grid; justify-items: center; gap: 12px; }
.empty-state .icon { width: 44px; height: 44px; color: var(--gold); }
.empty-state h3 { font-size: 1.2rem; }
.empty-state p { color: var(--text-light); max-width: 420px; }
.empty-state .btn { margin-top: 8px; }

/* ---------- Newsletter band ---------- */
.newsletter-band { background: var(--gold-soft); border-top: 1px solid var(--gold); }
.newsletter-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 44px 24px; }
.newsletter-band__title { font-size: 1.5rem; }
.newsletter-band__text { color: var(--text); font-size: .92rem; max-width: 460px; margin-top: 6px; }
.newsletter-band__form { display: flex; gap: 10px; min-width: min(460px, 100%); }
.newsletter-band__form .form__input { background: var(--white); }
.newsletter-band__form .form__hint { flex-basis: 100%; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
.footer__about { font-size: .88rem; line-height: 1.7; margin: 16px 0 20px; color: rgba(255,255,255,.6); }
.footer__social { display: flex; gap: 10px; }
.footer__social-link { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: all var(--transition); }
.footer__social-link:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-3px); }
.footer__social-link .icon { width: 18px; height: 18px; }
.footer__heading { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer__links { display: grid; gap: 9px; font-size: .88rem; }
.footer__links a { color: rgba(255,255,255,.65); display: inline-flex; align-items: center; gap: 6px; }
.footer__links a:hover { color: var(--gold-2); }
.footer__links .icon { width: 13px; height: 13px; color: var(--gold); }
.footer__contact { display: grid; gap: 12px; font-size: .88rem; margin-bottom: 20px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact .icon { width: 17px; height: 17px; color: var(--gold); margin-top: 3px; }
.footer__contact a { color: rgba(255,255,255,.75); }
.footer__contact a:hover { color: var(--gold-2); }
.footer__markets { padding: 34px 0; border-bottom: 1px solid var(--line-dark); }
.footer__markets-title { color: rgba(255,255,255,.5); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 16px; font-family: var(--font-body); font-weight: 600; }
.footer__flags { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__flag { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line-dark); border-radius: 999px; padding: 6px 13px 6px 8px; font-size: .8rem; color: rgba(255,255,255,.65); transition: all var(--transition); }
.footer__flag:hover { border-color: var(--gold); color: var(--gold-2); }
.footer__flag span { font-size: .78rem; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 26px 0 34px; font-size: .8rem; color: rgba(255,255,255,.45); }
.footer__bottom a { color: rgba(255,255,255,.6); }
.footer__bottom a:hover { color: var(--gold-2); }

/* ---------- Sticky CTA ---------- */
.sticky-cta { position: fixed; right: 20px; bottom: 20px; display: grid; gap: 10px; z-index: 80; }
.sticky-cta__item { display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-radius: 999px; font-weight: 700; font-size: .88rem; box-shadow: var(--shadow-lg); transition: all var(--transition); }
.sticky-cta__item .icon { width: 19px; height: 19px; }
.sticky-cta__item--wa { background: #25D366; color: #073B1F; }
.sticky-cta__item--wa:hover { transform: translateY(-3px); background: #1FBD5A; color: #073B1F; }
.sticky-cta__item--quote { background: var(--gold); color: var(--ink); }
.sticky-cta__item--quote:hover { transform: translateY(-3px); color: var(--ink); }
.sticky-cta__item--top { width: 50px; height: 50px; padding: 0; justify-content: center; border-radius: 50%; background: var(--ink); color: var(--gold-2); border: 1px solid var(--line-dark); opacity: 0; visibility: hidden; }
.sticky-cta__item--top.is-visible { opacity: 1; visibility: visible; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
    .cat-grid { grid-template-columns: repeat(4, 1fr); }
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: repeat(4, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
    .sitemap-grid { grid-template-columns: repeat(3, 1fr); }
    .country-grid { grid-template-columns: repeat(3, 1fr); }
    .cert-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .drop--wide { min-width: 520px; }
}
@media (max-width: 980px) {
    .nav { display: none; }
    .nav-toggle { display: flex; }
    .product-layout { grid-template-columns: 1fr; }
    .product-layout__side { position: static; grid-template-columns: 1fr 1fr; }
    .product-hero { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .country-facts { grid-template-columns: repeat(2, 1fr); }
    .newsletter-band__inner { flex-direction: column; align-items: flex-start; }
    .market-region { grid-template-columns: 1fr; gap: 12px; }
    .featured-post { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .section { padding: 62px 0; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .blog-grid { grid-template-columns: 1fr; gap: 16px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .stats__grid { grid-template-columns: repeat(3, 1fr); }
    .country-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
    .rfq-card { padding: 28px 22px; }
    .rfq-item__row { grid-template-columns: 1fr 1fr; }
    .rfq-item__remove { grid-column: 1 / -1; justify-self: end; }
    .product-layout__side { grid-template-columns: 1fr; }
    .info-cards { grid-template-columns: 1fr; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
    .contact-info { grid-template-columns: 1fr; }
    .form__grid { grid-template-columns: 1fr; }
    .hero { min-height: 560px; }
    .hero__content { padding: 70px 24px 96px; }
    .topbar__item--hide-sm { display: none; }
    .track-result__body { grid-template-columns: 1fr; }
    .rfq-note { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; }
    .dl-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
    .container { padding: 0 18px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .product-hero__quick { grid-template-columns: 1fr; }
    .gallery-grid--small { grid-template-columns: 1fr 1fr; }
    .newsletter-band__form { flex-direction: column; }
    .hero__cta .btn { width: 100%; }
    .hero__trust { flex-direction: column; gap: 10px; }
    .country-facts { grid-template-columns: 1fr; }
    .sitemap-grid { grid-template-columns: 1fr; }
    .sticky-cta { right: 14px; bottom: 14px; }
    .sticky-cta__item span { display: none; }
    .sticky-cta__item { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}

/* ---------- Form success panel & search suggestions ---------- */
.form-success { text-align: center; padding: 40px 24px; display: grid; justify-items: center; gap: 10px; animation: hero-up .5s ease; }
.form-success__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--ink); color: var(--gold-2); display: inline-flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 800; }
.form-success h3 { font-size: 1.35rem; }
.form-success p { color: var(--text-light); font-size: .94rem; }
.form-success__ref { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); background: var(--gold-soft); border: 1px dashed var(--gold); padding: 10px 22px; border-radius: 12px; }
.form-success a { font-weight: 700; }
.search-suggest { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border: 1px solid var(--line); border-radius: 0 0 12px 12px; box-shadow: var(--shadow-lg); z-index: 60; max-height: 380px; overflow-y: auto; }
.search-hero-form, .drawer__search, .error-page .search-hero-form { position: relative; }
.search-suggest__head { padding: 10px 16px 4px; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.search-suggest__item { display: flex; gap: 12px; align-items: center; padding: 10px 16px; border-top: 1px solid var(--line); color: var(--ink); }
.search-suggest__item:hover { background: var(--cream); color: var(--ink); }
.search-suggest__img { width: 40px; height: 40px; border-radius: 8px; overflow: hidden; background: var(--cream); flex-shrink: 0; }
.search-suggest__img img { width: 100%; height: 100%; object-fit: cover; }
.search-suggest__item strong { display: block; font-size: .9rem; }
.search-suggest__item small { color: var(--text-light); font-size: .76rem; }
.search-suggest__empty { display: block; padding: 14px 16px; color: var(--text-light); font-size: .88rem; }
.header.is-scrolled { box-shadow: 0 6px 24px rgba(11,32,23,.08); }

/* custom brand logo (white background lockup) */
.brand__logo--custom { width: auto; height: 62px; max-width: 330px; border-radius: 10px; background: #fff; padding: 4px 10px; box-shadow: 0 2px 10px rgba(5,21,39,.08); }
.brand--footer .brand__logo--custom { height: 54px; max-width: 290px; }
@media (max-width: 760px) { .brand__logo--custom { height: 50px; max-width: 260px; padding: 3px 8px; } }
@media (max-width: 520px) { .brand__logo--custom { height: 44px; max-width: 230px; } }
