:root {
  --blue: #0877df;
  --blue-2: #0554bd;
  --navy: #061d43;
  --navy-2: #0b2d5e;
  --gold: #f5ad20;
  --gold-2: #df8b00;
  --sky: #eaf5ff;
  --ice: #f5f9fd;
  --ink: #122033;
  --muted: #657286;
  --line: #dce6f0;
  --white: #fff;
  --success: #19a866;
  --shadow: 0 18px 55px rgba(3, 36, 82, .10);
  --shadow-soft: 0 10px 30px rgba(3, 36, 82, .08);
  --radius: 22px;
  --container: min(1280px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -60px; padding: 12px 18px; background: var(--navy); color: #fff; border-radius: 10px; }
.skip-link:focus { top: 16px; }

/* Loader */
.preloader { position: fixed; z-index: 9998; inset: 0; display: grid; place-items: center; background: #fff; transition: opacity .45s ease, visibility .45s ease; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__mark { position: relative; width: 118px; height: 118px; display: grid; place-items: center; }
.preloader__mark::before { position: absolute; inset: 0; content: ""; border: 3px solid #dbeeff; border-top-color: var(--blue); border-right-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; }
.preloader__mark img { width: 82px; height: 82px; object-fit: contain; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Header */
.announcement { color: #fff; background: linear-gradient(90deg, var(--navy), var(--navy-2)); font-size: 13px; }
.announcement__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement__items { display: flex; align-items: center; gap: 24px; }
.announcement__item { display: inline-flex; align-items: center; gap: 8px; opacity: .92; }
.announcement__item svg { width: 15px; height: 15px; color: var(--gold); }
.announcement__offer { font-weight: 800; color: #ffe4a8; letter-spacing: .02em; }
.site-header { position: sticky; z-index: 1000; top: 0; background: rgba(255,255,255,.96); box-shadow: 0 1px 0 rgba(9,50,97,.09); backdrop-filter: blur(18px); }
.header-main { min-height: 92px; display: grid; grid-template-columns: 270px minmax(250px, 1fr) auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; width: 260px; height: 74px; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; mix-blend-mode: multiply; }
.header-search { position: relative; }
.header-search__box { display: grid; grid-template-columns: 1fr 52px; height: 50px; border: 1px solid #d3dfeb; border-radius: 14px; background: #f8fbfe; overflow: hidden; transition: border-color .2s, box-shadow .2s, background .2s; }
.header-search__box:focus-within { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(8,119,223,.1); }
.header-search input { min-width: 0; padding: 0 17px; border: 0; outline: 0; background: transparent; color: var(--ink); }
.header-search button { border: 0; color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-2)); }
.header-search button svg { width: 20px; height: 20px; }
.search-results { position: absolute; z-index: 50; top: calc(100% + 8px); right: 0; left: 0; display: none; padding: 8px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.search-results.is-open { display: block; animation: drop .2s ease both; }
.search-result { display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 12px; padding: 8px; border-radius: 10px; }
.search-result:hover { background: var(--ice); }
.search-result img { width: 46px; height: 46px; object-fit: contain; border: 1px solid var(--line); border-radius: 10px; }
.search-result strong { display: block; font-size: 13px; }
.search-result span { font-size: 12px; color: var(--muted); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action { position: relative; min-width: 56px; height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 12px; border: 1px solid var(--line); border-radius: 13px; background: #fff; color: var(--navy); transition: transform .2s, border-color .2s, color .2s; }
.header-action:hover { color: var(--blue); border-color: #9fc8ef; transform: translateY(-2px); }
.header-action svg { width: 21px; height: 21px; }
.header-action__text { display: grid; font-size: 11px; line-height: 1.15; }
.header-action__text strong { font-size: 13px; }
.header-whatsapp { color: #087f4a; border-color: #b8e7cf; background: #effff7; }
.header-whatsapp:hover { color: #05683c; border-color: #79cfa6; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 12px; background: var(--navy); }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 4px; background: #fff; transition: transform .25s, opacity .25s; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-bar { color: #fff; background: linear-gradient(90deg, #075fc3, #078cea); }
.nav-inner { min-height: 52px; display: flex; align-items: center; }
.category-menu { position: relative; min-width: 255px; align-self: stretch; }
.category-menu__trigger { width: 100%; height: 100%; display: flex; align-items: center; gap: 12px; padding: 0 20px; border: 0; color: #fff; background: rgba(0,0,0,.15); font-weight: 800; }
.category-menu__trigger svg { width: 20px; }
.category-dropdown { position: absolute; top: 100%; left: 0; width: 290px; padding: 9px; border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: 0 0 16px 16px; background: #fff; color: var(--ink); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s; }
.category-menu:hover .category-dropdown, .category-menu:focus-within .category-dropdown, .category-menu.is-open .category-dropdown { opacity: 1; visibility: visible; transform: none; }
.category-dropdown a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 14px; border-radius: 10px; font-size: 14px; font-weight: 700; }
.category-dropdown a:hover { color: var(--blue-2); background: var(--sky); }
.main-nav { display: flex; align-self: stretch; align-items: stretch; margin-left: 12px; }
.main-nav > a, .main-nav__item > a { height: 100%; display: flex; align-items: center; padding: 0 16px; color: #fff; font-size: 14px; font-weight: 750; transition: background .2s; }
.main-nav > a:hover, .main-nav > a.is-active, .main-nav__item:hover > a { background: rgba(0,0,0,.12); }
.main-nav__item { position: relative; }
.mini-dropdown { position: absolute; top: 100%; left: 0; min-width: 235px; padding: 9px; border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: 0 0 15px 15px; background: #fff; color: var(--ink); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s; }
.main-nav__item:hover .mini-dropdown, .main-nav__item:focus-within .mini-dropdown { opacity: 1; visibility: visible; transform: none; }
.mini-dropdown a { display: block; padding: 11px 13px; border-radius: 9px; font-size: 13px; font-weight: 700; }
.mini-dropdown a:hover { color: var(--blue); background: var(--sky); }
.nav-contact { margin-left: auto; display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; }
.nav-contact svg { width: 18px; color: var(--gold); }

/* Buttons and text */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; color: var(--blue-2); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 3px; content: ""; border-radius: 9px; background: var(--gold); }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { font-family: "Trebuchet MS", Arial, sans-serif; }
.section-title { margin-bottom: 12px; color: var(--navy); font-size: clamp(30px, 3vw, 45px); line-height: 1.08; letter-spacing: -.035em; }
.section-copy { max-width: 670px; margin-bottom: 0; color: var(--muted); line-height: 1.75; }
.section-heading { margin-bottom: 36px; }
.section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-2); font-size: 14px; font-weight: 900; }
.text-link:hover { color: var(--gold-2); }
.btn { min-height: 49px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 22px; border: 1px solid transparent; border-radius: 13px; font-size: 14px; font-weight: 850; letter-spacing: .01em; transition: transform .2s, box-shadow .2s, background .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-2)); box-shadow: 0 10px 22px rgba(8,119,223,.2); }
.btn--primary:hover { box-shadow: 0 14px 28px rgba(8,119,223,.3); }
.btn--gold { color: var(--navy); background: linear-gradient(135deg, #ffc84e, var(--gold)); box-shadow: 0 10px 22px rgba(245,173,32,.23); }
.btn--ghost { color: var(--navy); border-color: #b9cadb; background: rgba(255,255,255,.8); }
.btn--white { color: var(--navy); background: #fff; }
.btn--small { min-height: 41px; padding: 0 15px; border-radius: 10px; font-size: 12px; }
.btn svg { width: 18px; height: 18px; }

/* Home hero */
.hero { position: relative; background: var(--ice); }
.hero-slider { position: relative; min-height: 590px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; display: grid; align-items: center; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s ease; background-position: center; background-size: cover; }
.hero-slide::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.88) 36%, rgba(255,255,255,.12) 58%, rgba(255,255,255,0) 76%); }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide__content { position: relative; z-index: 2; max-width: 620px; padding: 85px 0 105px; }
.hero-slide__kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; padding: 8px 13px; border: 1px solid rgba(8,119,223,.2); border-radius: 999px; color: var(--blue-2); background: rgba(255,255,255,.78); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(18px); }
.hero-slide__kicker::before { width: 8px; height: 8px; content: ""; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(245,173,32,.16); }
.hero-slide h1 { max-width: 600px; margin-bottom: 20px; color: var(--navy); font-size: clamp(46px, 5vw, 76px); line-height: .98; letter-spacing: -.06em; opacity: 0; transform: translateY(24px); }
.hero-slide h1 span { color: var(--blue); }
.hero-slide p { max-width: 560px; margin-bottom: 30px; color: #536175; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65; opacity: 0; transform: translateY(24px); }
.hero-slide__actions { display: flex; flex-wrap: wrap; gap: 12px; opacity: 0; transform: translateY(24px); }
.hero-slide.is-active .hero-slide__kicker { animation: heroUp .65s .15s ease forwards; }
.hero-slide.is-active h1 { animation: heroUp .7s .3s ease forwards; }
.hero-slide.is-active p { animation: heroUp .7s .45s ease forwards; }
.hero-slide.is-active .hero-slide__actions { animation: heroUp .7s .58s ease forwards; }
@keyframes heroUp { to { opacity: 1; transform: none; } }
.hero-controls { position: absolute; z-index: 5; bottom: 38px; left: 50%; display: flex; align-items: center; gap: 9px; transform: translateX(-50%); }
.hero-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #9db1c7; transition: width .25s, background .25s; }
.hero-dot.is-active { width: 34px; border-radius: 20px; background: var(--blue); }
.hero-arrow { position: absolute; z-index: 5; right: 24px; bottom: 32px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(8,60,120,.16); border-radius: 50%; color: var(--navy); background: rgba(255,255,255,.85); box-shadow: var(--shadow-soft); }
.hero-arrow:hover { color: #fff; background: var(--blue); }
.hero-arrow--prev { right: 82px; }
.hero-arrow--next { right: 24px; }
.hero-arrow svg { width: 20px; }
.service-strip { position: relative; z-index: 6; margin-top: -28px; }
.service-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.service-point { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 13px; min-height: 92px; padding: 17px 22px; border-right: 1px solid var(--line); }
.service-point:last-child { border-right: 0; }
.service-point__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: var(--blue); background: var(--sky); }
.service-point__icon svg { width: 23px; }
.service-point strong { display: block; margin-bottom: 4px; color: var(--navy); font-size: 14px; }
.service-point span { color: var(--muted); font-size: 12px; }

/* Sections */
.section { padding: 92px 0; }
.section--soft { background: var(--ice); }
.section--blue { color: #fff; background: linear-gradient(135deg, var(--navy), #073f80); }
.section--compact { padding: 65px 0; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card { position: relative; min-height: 360px; display: flex; flex-direction: column; justify-content: end; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); overflow: hidden; transition: transform .35s, box-shadow .35s; }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.category-card__image { position: absolute; inset: 0; }
.category-card__image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(2,26,60,.02) 26%, rgba(2,24,55,.9) 100%); }
.category-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card__content { position: relative; z-index: 2; color: #fff; }
.category-card__content span { display: inline-block; margin-bottom: 8px; color: #ffd474; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.category-card h3 { margin-bottom: 8px; font-size: 27px; }
.category-card p { margin-bottom: 18px; color: #d9e6f5; font-size: 14px; line-height: 1.55; }
.category-card__link { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 13px; font-weight: 900; }
.category-card__link svg { width: 16px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { position: relative; display: flex; flex-direction: column; min-width: 0; border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; }
.product-card:hover { transform: translateY(-6px); border-color: #b8d3ec; box-shadow: var(--shadow); }
.product-card__media { position: relative; aspect-ratio: 1 / .82; display: grid; place-items: center; padding: 18px; background: linear-gradient(145deg, #fff, #f5f9fd); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s; }
.product-card:hover .product-card__media img { transform: scale(1.065); }
.product-badge { position: absolute; z-index: 2; top: 12px; left: 12px; padding: 6px 9px; border-radius: 999px; color: #fff; background: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.product-badge--gold { color: var(--navy); background: var(--gold); }
.product-quick { position: absolute; z-index: 2; top: 12px; right: 12px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); background: #fff; opacity: 0; transform: translateX(8px); transition: opacity .25s, transform .25s, color .2s, background .2s; }
.product-card:hover .product-quick { opacity: 1; transform: none; }
.product-quick:hover { color: #fff; background: var(--blue); }
.product-quick svg { width: 17px; }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 17px; border-top: 1px solid #edf2f7; }
.product-card__category { margin-bottom: 7px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.product-card h3 { min-height: 40px; margin-bottom: 8px; color: var(--navy); font-size: 16px; line-height: 1.28; }
.product-card__meta { margin-bottom: 14px; color: var(--muted); font-size: 11px; }
.product-card__actions { margin-top: auto; }
.whatsapp-product { min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 14px; border: 1px solid #8ad4ad; border-radius: 10px; color: #fff; background: linear-gradient(135deg, #23b968, #0a8f50); font-size: 12px; font-weight: 850; transition: transform .2s, box-shadow .2s; }
.whatsapp-product:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(10,143,80,.22); }
.whatsapp-product svg { width: 18px; }
.empty-state { grid-column: 1 / -1; padding: 60px 20px; border: 1px dashed #b8cadc; border-radius: 18px; text-align: center; color: var(--muted); background: #fff; }
.promo-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.promo-card { position: relative; min-height: 310px; display: flex; align-items: center; padding: 38px; border-radius: 24px; color: #fff; background-position: center; background-size: cover; overflow: hidden; }
.promo-card::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(3,27,61,.95), rgba(3,35,78,.56) 65%, rgba(3,35,78,.12)); }
.promo-card--gold::before { background: linear-gradient(90deg, rgba(126,73,0,.92), rgba(195,120,0,.48), rgba(195,120,0,.08)); }
.promo-card__content { position: relative; z-index: 2; max-width: 430px; }
.promo-card small { display: block; margin-bottom: 11px; color: #ffd77d; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.promo-card h3 { margin-bottom: 13px; font-size: clamp(28px, 3vw, 43px); line-height: 1; }
.promo-card p { color: #e4edf8; line-height: 1.6; }
.brand-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.brand-card { min-height: 220px; display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 28px; padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); }
.brand-card__mark { width: 130px; height: 130px; display: grid; place-items: center; border: 8px solid var(--sky); border-radius: 50%; color: var(--blue-2); background: #fff; box-shadow: inset 0 0 0 2px #b9dafa; font-size: 37px; font-weight: 950; letter-spacing: -.08em; }
.brand-card--rak .brand-card__mark { border-color: #fff1ce; color: var(--gold-2); box-shadow: inset 0 0 0 2px #f5d37d; font-size: 22px; letter-spacing: -.02em; }
.brand-card h3 { margin-bottom: 8px; color: var(--navy); font-size: 25px; }
.brand-card p { margin-bottom: 14px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.service-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card::after { position: absolute; right: -40px; bottom: -60px; width: 150px; height: 150px; content: ""; border-radius: 50%; background: var(--sky); }
.service-card__icon { position: relative; z-index: 2; width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 23px; border-radius: 17px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-2)); box-shadow: 0 12px 24px rgba(8,119,223,.22); }
.service-card__icon svg { width: 29px; }
.service-card h3 { margin-bottom: 11px; color: var(--navy); font-size: 25px; }
.service-card p { position: relative; z-index: 2; margin-bottom: 18px; color: var(--muted); line-height: 1.7; }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.why-visual { position: relative; min-height: 510px; border-radius: 25px; background-position: center; background-size: cover; box-shadow: var(--shadow); }
.why-visual::after { position: absolute; right: 28px; bottom: 28px; width: 170px; padding: 22px; content: "Trusted UAE Supply & Service"; border-radius: 18px; color: var(--navy); background: rgba(255,255,255,.94); font-size: 18px; font-weight: 900; line-height: 1.25; box-shadow: var(--shadow-soft); }
.feature-list { display: grid; gap: 15px; margin: 28px 0 32px; }
.feature { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.feature__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--blue); background: var(--sky); }
.feature__icon svg { width: 20px; }
.feature strong { display: block; margin-bottom: 4px; color: var(--navy); }
.feature span { color: var(--muted); font-size: 13px; line-height: 1.55; }
.cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 46px 52px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); }
.cta-panel h2 { margin-bottom: 10px; font-size: clamp(30px, 4vw, 48px); }
.cta-panel p { max-width: 700px; margin-bottom: 0; color: #c8d8ea; line-height: 1.65; }
.cta-panel__actions { display: flex; gap: 10px; }

/* Inner banners */
.page-hero { position: relative; min-height: 365px; display: grid; align-items: center; color: #fff; background-position: center; background-size: cover; overflow: hidden; }
.page-hero::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(3,23,53,.88) 0%, rgba(4,45,95,.57) 47%, rgba(3,31,69,.06) 100%); }
.page-hero__content { position: relative; z-index: 2; max-width: 720px; padding: 70px 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; color: #c9dbef; font-size: 12px; font-weight: 750; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs svg { width: 13px; }
.page-hero h1 { margin-bottom: 14px; font-size: clamp(44px, 5vw, 69px); line-height: 1; letter-spacing: -.05em; animation: heroUp .7s .15s both; }
.page-hero p { max-width: 610px; margin-bottom: 0; color: #dbe7f5; font-size: 17px; line-height: 1.65; animation: heroUp .7s .3s both; }
.page-hero__badge { display: inline-block; margin-bottom: 14px; color: #ffd879; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }

/* Shop */
.shop-layout { display: grid; grid-template-columns: 255px 1fr; gap: 30px; }
.filter-panel { position: sticky; top: 165px; align-self: start; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); }
.filter-panel h3 { margin-bottom: 20px; color: var(--navy); font-size: 20px; }
.filter-group { padding: 18px 0; border-top: 1px solid var(--line); }
.filter-group strong { display: block; margin-bottom: 12px; color: var(--navy); font-size: 13px; }
.filter-option { display: flex; align-items: center; gap: 9px; margin: 9px 0; color: var(--muted); font-size: 13px; }
.filter-option input { accent-color: var(--blue); }
.shop-main { min-width: 0; }
.shop-toolbar { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 22px; padding: 10px 15px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.shop-count { color: var(--muted); font-size: 13px; }
.shop-count strong { color: var(--navy); }
.shop-sort { height: 38px; padding: 0 34px 0 12px; border: 1px solid var(--line); border-radius: 9px; color: var(--ink); background: #fff; outline: 0; }
.category-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.category-tab { min-height: 40px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: #fff; font-size: 12px; font-weight: 800; }
.category-tab.is-active, .category-tab:hover { border-color: var(--blue); color: #fff; background: var(--blue); }

/* Product details */
.product-detail { display: grid; grid-template-columns: 1.03fr .97fr; gap: 55px; align-items: start; }
.product-detail__gallery { position: sticky; top: 160px; min-height: 520px; display: grid; place-items: center; padding: 40px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, #fff, var(--ice)); }
.product-detail__gallery img { width: 100%; height: 450px; object-fit: contain; mix-blend-mode: multiply; }
.product-detail__category { display: inline-flex; margin-bottom: 14px; padding: 7px 11px; border-radius: 999px; color: var(--blue-2); background: var(--sky); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.product-detail h1 { margin-bottom: 14px; color: var(--navy); font-size: clamp(36px, 4vw, 55px); line-height: 1.05; letter-spacing: -.04em; }
.product-detail__sku { margin-bottom: 20px; color: var(--muted); font-size: 12px; }
.product-detail__description { color: var(--muted); line-height: 1.75; }
.spec-list { display: grid; gap: 11px; margin: 24px 0; padding: 0; list-style: none; }
.spec-list li { display: flex; align-items: center; gap: 10px; color: #49576b; font-size: 14px; }
.spec-list svg { width: 18px; color: var(--success); }
.btn--whatsapp { color: #fff; background: linear-gradient(135deg, #23b968, #0a8f50); box-shadow: 0 10px 22px rgba(10,143,80,.23); }
.btn--whatsapp:hover { box-shadow: 0 14px 28px rgba(10,143,80,.30); }
.product-trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
.product-trust div { display: flex; align-items: center; gap: 9px; padding: 13px; border-radius: 11px; color: var(--muted); background: var(--ice); font-size: 12px; }
.product-trust svg { width: 18px; color: var(--blue); }

/* Content pages */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.about-media__main { width: 100%; min-height: 510px; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.about-media__badge { position: absolute; right: -20px; bottom: 35px; width: 175px; padding: 24px; border: 8px solid #fff; border-radius: 24px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-2)); box-shadow: var(--shadow); }
.about-media__badge strong { display: block; font-size: 42px; line-height: 1; }
.about-media__badge span { display: block; margin-top: 6px; font-size: 13px; font-weight: 750; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.value-card__num { display: inline-block; margin-bottom: 24px; color: var(--gold-2); font-size: 12px; font-weight: 900; }
.value-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 23px; }
.value-card p { margin-bottom: 0; color: var(--muted); line-height: 1.7; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: process; }
.process-card { position: relative; padding: 30px 25px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.process-card::before { counter-increment: process; content: "0" counter(process); display: block; margin-bottom: 24px; color: var(--blue); font-size: 13px; font-weight: 950; }
.process-card h3 { margin-bottom: 9px; color: var(--navy); }
.process-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; }
.contact-info { padding: 38px; border-radius: 24px; color: #fff; background: linear-gradient(145deg, var(--navy), #073c78); }
.contact-info h2 { margin-bottom: 14px; font-size: 37px; }
.contact-info > p { margin-bottom: 30px; color: #c9daed; line-height: 1.7; }
.contact-list { display: grid; gap: 18px; }
.contact-item { display: grid; grid-template-columns: 46px 1fr; gap: 13px; align-items: center; }
.contact-item__icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; color: var(--gold); background: rgba(255,255,255,.07); }
.contact-item__icon svg { width: 21px; }
.contact-item small { display: block; margin-bottom: 4px; color: #9fb9d7; }
.contact-item a, .contact-item address { color: #fff; font-size: 14px; font-style: normal; line-height: 1.45; }
.social-row { display: flex; gap: 8px; margin-top: 32px; }
.social-icon { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 11px; color: #fff; background: rgba(255,255,255,.07); transition: color .2s, background .2s, transform .2s; }
.social-icon:hover { color: var(--navy); background: var(--gold); transform: translateY(-3px); }
.social-icon svg { width: 18px; height: 18px; }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; color: var(--navy); font-size: 12px; font-weight: 850; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d4e0eb; border-radius: 12px; outline: 0; color: var(--ink); background: #fbfdff; transition: border-color .2s, box-shadow .2s; }
.field input, .field select { height: 49px; padding: 0 14px; }
.field textarea { min-height: 135px; padding: 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8,119,223,.09); }
.map-placeholder { min-height: 360px; display: grid; place-items: center; border-radius: 22px; color: var(--navy); background: radial-gradient(circle at 20% 30%, rgba(8,119,223,.2), transparent 30%), radial-gradient(circle at 80% 70%, rgba(245,173,32,.2), transparent 28%), #eaf2f8; text-align: center; }
.map-placeholder svg { width: 50px; margin: 0 auto 15px; color: var(--blue); }
.map-placeholder strong { display: block; margin-bottom: 7px; font-size: 20px; }
.map-placeholder span { color: var(--muted); font-size: 13px; }

/* Cart */
.cart-layout { display: grid; grid-template-columns: 1fr 350px; gap: 30px; align-items: start; }
.cart-list { display: grid; gap: 14px; }
.cart-item { display: grid; grid-template-columns: 110px 1fr 120px 100px 40px; align-items: center; gap: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.cart-item__image { width: 110px; height: 90px; object-fit: contain; border-radius: 12px; background: var(--ice); }
.cart-item h3 { margin-bottom: 6px; color: var(--navy); font-size: 16px; }
.cart-item small { color: var(--muted); }
.cart-item__price { color: var(--blue-2); font-weight: 900; }
.cart-item .qty-box { width: 115px; height: 40px; }
.cart-remove { width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 10px; color: #d13939; background: #fff1f1; }
.cart-remove svg { width: 17px; }
.cart-summary { position: sticky; top: 160px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); }
.cart-summary h3 { margin-bottom: 22px; color: var(--navy); }
.summary-line { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; color: var(--muted); font-size: 13px; border-bottom: 1px solid var(--line); }
.summary-line--total { padding: 18px 0; border: 0; color: var(--navy); font-size: 18px; font-weight: 900; }
.summary-line--total strong { color: var(--blue); }
.cart-summary .btn { width: 100%; }
.cart-note { margin-top: 12px; color: var(--muted); font-size: 11px; line-height: 1.5; text-align: center; }

/* Drawer and modal */
.screen-overlay { position: fixed; z-index: 1990; inset: 0; background: rgba(2,17,38,.55); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: .3s; }
.screen-overlay.is-open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; z-index: 2000; top: 0; right: 0; width: min(430px, 100%); height: 100%; display: flex; flex-direction: column; padding: 25px; background: #fff; box-shadow: -18px 0 60px rgba(3,27,60,.18); transform: translateX(105%); transition: transform .35s ease; }
.cart-drawer.is-open { transform: none; }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cart-drawer__head h3 { margin: 0; color: var(--navy); }
.drawer-close { width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--navy); background: var(--ice); }
.drawer-close svg { width: 18px; }
.cart-drawer__items { flex: 1; overflow: auto; padding: 15px 0; }
.drawer-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.drawer-item img { width: 72px; height: 64px; object-fit: contain; border-radius: 10px; background: var(--ice); }
.drawer-item strong { display: block; margin-bottom: 5px; color: var(--navy); font-size: 13px; }
.drawer-item span { color: var(--blue); font-size: 12px; font-weight: 850; }
.drawer-item button { border: 0; color: #cf4242; background: none; }
.cart-drawer__foot { padding-top: 18px; border-top: 1px solid var(--line); }
.drawer-total { display: flex; justify-content: space-between; margin-bottom: 16px; color: var(--navy); font-weight: 900; }
.cart-drawer__foot .btn { width: 100%; margin-top: 8px; }
.toast { position: fixed; z-index: 3000; right: 22px; bottom: 95px; max-width: 330px; display: flex; align-items: center; gap: 11px; padding: 14px 17px; border-radius: 13px; color: #fff; background: var(--navy); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(15px); transition: .25s; }
.toast.is-show { opacity: 1; visibility: visible; transform: none; }
.toast svg { width: 20px; color: var(--gold); }

/* Footer */
.site-footer { color: #c9d7e8; background: #04162f; }
.footer-main { display: grid; grid-template-columns: 1.3fr .75fr .85fr 1fr; gap: 45px; padding: 75px 0 58px; }
.footer-brand { width: fit-content; display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 18px; }
.footer-brand--text strong { color: #fff; font-size: clamp(30px, 3vw, 43px); font-weight: 950; letter-spacing: -.05em; line-height: 1; }
.footer-brand--text strong span { color: var(--gold); }
.footer-brand--text small { margin-top: 9px; color: #a9c5e2; font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.footer-about p { max-width: 360px; margin-bottom: 22px; color: #9fb1c8; font-size: 13px; line-height: 1.75; }
.footer-title { margin-bottom: 20px; color: #fff; font-size: 16px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { width: max-content; color: #9fb1c8; font-size: 13px; transition: color .2s, transform .2s; }
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact { display: grid; gap: 14px; }
.footer-contact div { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 13px; line-height: 1.55; }
.footer-contact svg { width: 18px; color: var(--gold); }
.footer-contact address { font-style: normal; }
.newsletter { display: grid; grid-template-columns: 1fr 44px; height: 45px; margin-top: 18px; border-radius: 10px; overflow: hidden; }
.newsletter input { min-width: 0; padding: 0 12px; border: 0; outline: 0; }
.newsletter button { border: 0; color: var(--navy); background: var(--gold); }
.newsletter button svg { width: 17px; }
.footer-bottom { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.09); color: #8095af; font-size: 12px; }
.footer-bottom a { color: #c1d0e1; }
.footer-bottom a:hover { color: var(--gold); }
.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 60px; height: 60px; display: grid; place-items: center; border: 4px solid #fff; border-radius: 50%; color: #fff; background: #20bf6b; box-shadow: 0 12px 30px rgba(18,153,81,.35); animation: waPulse 2.1s infinite; }
.whatsapp-float svg { width: 29px; }
@keyframes waPulse { 0%,100% { box-shadow: 0 12px 30px rgba(18,153,81,.35), 0 0 0 0 rgba(32,191,107,.25); } 50% { box-shadow: 0 12px 30px rgba(18,153,81,.35), 0 0 0 12px rgba(32,191,107,0); } }
.back-to-top { position: fixed; z-index: 850; right: 29px; bottom: 92px; width: 45px; height: 45px; display: grid; place-items: center; border: 0; border-radius: 50%; color: #fff; background: var(--navy); box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top svg { width: 18px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@keyframes drop { from { opacity: 0; transform: translateY(-5px); } }

/* Responsive */
@media (max-width: 1100px) {
  .header-main { grid-template-columns: 225px minmax(230px, 1fr) auto; gap: 16px; }
  .brand { width: 220px; }
  .header-action__text { display: none; }
  .main-nav > a, .main-nav__item > a { padding: 0 11px; font-size: 12px; }
  .nav-contact { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-main > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 28px, 720px); }
  body.menu-open .site-header { z-index: 2100; }
  body.menu-open .header-search { display: none; }
  .announcement__items .announcement__item:first-child { display: none; }
  .announcement__offer { font-size: 11px; }
  .header-main { position: relative; z-index: 1150; min-height: 78px; grid-template-columns: minmax(0, 1fr) auto; background: #fff; }
  .brand { width: 210px; height: 64px; }
  .header-search { grid-column: 1 / -1; order: 3; margin-bottom: 12px; }
  .header-actions .header-action:first-child { display: none; }
  .menu-toggle { position: relative; z-index: 1200; display: block; flex: 0 0 auto; }
  .nav-bar { position: fixed; z-index: 1100; inset: 0 0 0 auto; width: min(360px, 88vw); height: 100dvh; padding: 96px 18px 28px; background: linear-gradient(180deg, #061d43, #0b2d5e); box-shadow: -18px 0 50px rgba(2,17,38,.28); transform: translateX(105%); transition: transform .35s ease; overflow-y: auto; overscroll-behavior: contain; }
  .nav-bar.is-open { transform: none; }
  .nav-inner { display: block; width: 100%; min-height: 100%; }
  .category-menu { min-width: 0; }
  .category-menu__trigger { height: 52px; justify-content: flex-start; border-radius: 12px; background: rgba(255,255,255,.09); }
  .category-dropdown, .mini-dropdown { position: static; width: 100%; min-width: 0; display: none; margin-top: 6px; border: 0; border-radius: 12px; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .category-menu.is-open .category-dropdown { display: block; }
  .main-nav { display: grid; margin: 10px 0 0; }
  .main-nav > a, .main-nav__item > a { min-height: 49px; padding: 0 13px; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 9px; font-size: 14px; }
  .main-nav__item .mini-dropdown, .main-nav__item:hover .mini-dropdown, .main-nav__item:focus-within .mini-dropdown { display: none; }
  .nav-contact { min-height: 52px; display: flex; justify-content: center; margin: 18px 0 0; border-radius: 12px; color: #fff; background: linear-gradient(135deg, #23b968, #0a8f50); }
  .nav-contact svg { color: #fff; }
  .hero-slider { min-height: 540px; }
  .hero-slide { background-position: 65% center; }
  .hero-slide::before { background: linear-gradient(90deg, rgba(255,255,255,.97), rgba(255,255,255,.83) 58%, rgba(255,255,255,.12) 88%, transparent); }
  .hero-slide__content { max-width: 570px; padding: 65px 0 95px; }
  .hero-arrow { display: none; }
  .service-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .service-point:nth-child(2) { border-right: 0; }
  .service-point:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .category-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card:last-child, .values-grid .value-card:last-child { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid, .why-grid, .about-grid, .contact-grid, .product-detail, .cart-layout { grid-template-columns: 1fr; }
  .promo-card { min-height: 290px; }
  .brand-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .about-grid { gap: 45px; }
  .why-visual { min-height: 430px; }
  .cta-panel { grid-template-columns: 1fr; padding: 38px; }
  .cta-panel__actions { justify-content: start; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .product-detail__gallery { position: static; }
  .cart-summary { position: static; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-main > :last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 24px); --radius: 18px; }
  .announcement__inner { justify-content: center; min-height: 32px; }
  .announcement__items { display: none; }
  .header-main { min-height: 72px; gap: 9px; }
  .brand { width: 178px; height: 58px; }
  .header-actions { gap: 4px; }
  .header-action { min-width: 43px; width: 43px; height: 43px; padding: 0; }
  .menu-toggle { width: 43px; height: 43px; }
  .nav-bar { width: min(330px, 90vw); padding-inline: 15px; }
  .header-search__box { height: 46px; }
  .hero-slider { min-height: 555px; }
  .hero-slide { align-items: start; background-position: 70% center; }
  .hero-slide::before { background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.91) 70%, rgba(255,255,255,.40)); }
  .hero-slide__content { max-width: 100%; padding: 70px 0 100px; }
  .hero-slide h1 { font-size: 43px; }
  .hero-slide p { font-size: 15px; }
  .hero-slide__actions .btn { width: 100%; }
  .hero-controls { bottom: 42px; }
  .service-strip { margin-top: 0; padding-top: 12px; }
  .service-strip__grid { grid-template-columns: 1fr; }
  .service-point { min-height: 77px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-point:last-child { border-bottom: 0; }
  .section { padding: 68px 0; }
  .section--compact { padding: 50px 0; }
  .section-heading--split { display: block; }
  .section-heading--split .text-link { margin-top: 15px; }
  .category-grid, .product-grid, .service-cards, .values-grid, .process-grid { grid-template-columns: 1fr; }
  .category-card:last-child, .values-grid .value-card:last-child { grid-column: auto; }
  .category-card { min-height: 330px; }
  .product-card__media { aspect-ratio: 1.1 / .82; }
  .promo-card { min-height: 340px; padding: 28px; }
  .brand-card { grid-template-columns: 1fr; text-align: center; }
  .brand-card__mark { margin: auto; }
  .page-hero { min-height: 330px; }
  .page-hero h1 { font-size: 43px; }
  .shop-toolbar { align-items: stretch; flex-direction: column; }
  .shop-sort { width: 100%; }
  .product-detail__gallery { min-height: 350px; padding: 20px; }
  .product-detail__gallery img { height: 310px; }
  .product-trust { grid-template-columns: 1fr; }
  .about-media__main { min-height: 390px; }
  .about-media__badge { right: 12px; bottom: 12px; width: 150px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .contact-info, .contact-form { padding: 28px 22px; }
  .cart-item { grid-template-columns: 82px 1fr 34px; gap: 10px; }
  .cart-item__image { width: 82px; height: 75px; }
  .cart-item__price, .cart-item .qty-box { grid-column: 2; }
  .cart-item .qty-box { width: 110px; }
  .cart-remove { grid-column: 3; grid-row: 1 / 3; }
  .cta-panel { padding: 30px 23px; }
  .cta-panel__actions { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; padding: 58px 0 42px; }
  .footer-main > :last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 55px; height: 55px; }
  .back-to-top { right: 21px; bottom: 80px; }
}

@media (max-width: 360px) {
  .brand { width: 158px; }
  .header-whatsapp { display: none; }
}

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