/* =========================================================
   CORPOTEX — Design system
   ========================================================= */
:root {
  --navy: #0D1B2A;
  --navy-2: #13263a;
  --navy-3: #1c3450;
  --yellow: #F2B705;
  --yellow-2: #ffc71f;
  --yellow-ink: #6b5100;
  --cream: #FFF3D6;
  --cream-2: #FFF9EC;
  --light: #F2F2F2;
  --gray: #6B7280;
  --line: #E4E5E7;
  --line-2: #EDEDEE;
  --white: #fff;
  --ok: #138a4a;
  --wa: #1FAF5A;
  --wa-2: #178e48;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --r-sm: 8px; --r: 12px; --r-lg: 18px; --r-xl: 26px;
  --sh-1: 0 1px 2px rgba(13, 27, 42, .06), 0 1px 1px rgba(13, 27, 42, .04);
  --sh-2: 0 10px 30px -12px rgba(13, 27, 42, .22);
  --sh-3: 0 30px 60px -20px rgba(13, 27, 42, .35);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --t: .3s var(--ease);
  --hdr: 76px;
  --wrap: 1280px;
  --gut: clamp(16px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body { margin: 0; font-family: var(--font); color: var(--navy); background: var(--white); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -.02em; }
p { margin: 0; }
kbd { font: 600 11px/1 var(--font); padding: 4px 6px; border-radius: 6px; border: 1px solid var(--line); color: var(--gray); background: var(--white); }
.i { width: 20px; height: 20px; flex: none; }
.muted { color: var(--gray); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--yellow); padding: 8px 14px; border-radius: 8px; z-index: 999; font-weight: 700; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 6px; }
::selection { background: var(--yellow); color: var(--navy); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.logo svg.mark { width: 40px; height: 40px; }
.logo .wm { display: flex; flex-direction: column; line-height: 1; }
.logo .wm b { font-size: 25px; font-weight: 800; letter-spacing: -.035em; color: var(--navy); }
.logo .wm small { font-size: 7.3px; font-weight: 700; letter-spacing: .2em; color: var(--yellow); margin-top: 4px; white-space: nowrap; }
.logo--inv .wm b { color: #fff; }
.logo--inv .mark .m-c { stroke: #fff; } .logo--inv .mark .m-s { fill: #fff; }

/* ---------- Buttons ---------- */
.btn { --bg: var(--navy); --fg: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 52px; padding: 0 24px; border-radius: 12px; background: var(--bg); color: var(--fg); font-weight: 700; font-size: 15px; letter-spacing: -.005em; transition: transform var(--t), background var(--t), box-shadow var(--t), color var(--t); white-space: nowrap; position: relative; isolation: isolate; overflow: hidden; }
.btn .i { width: 18px; height: 18px; transition: transform var(--t); }
.btn:hover .i-arrow { transform: translateX(4px); }
.btn:active { transform: scale(.98); }
.btn--primary { --bg: var(--yellow); --fg: var(--navy); box-shadow: 0 8px 22px -10px rgba(242, 183, 5, .8); }
.btn--primary:hover { --bg: var(--yellow-2); box-shadow: 0 14px 28px -12px rgba(242, 183, 5, .9); }
.btn--navy:hover { --bg: var(--navy-3); }
.btn--ghost { --bg: transparent; --fg: var(--navy); box-shadow: inset 0 0 0 1.5px var(--navy); }
.btn--ghost:hover { --bg: var(--navy); --fg: #fff; }
.btn--ghost-inv { --bg: rgba(255, 255, 255, .06); --fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .35); backdrop-filter: blur(6px); }
.btn--ghost-inv:hover { --bg: #fff; --fg: var(--navy); }
.btn--wa { --bg: var(--wa); --fg: #fff; }
.btn--wa:hover { --bg: var(--wa-2); }
.btn--wa-ghost { --bg: transparent; --fg: var(--wa-2); box-shadow: inset 0 0 0 1.5px rgba(31, 175, 90, .35); }
.btn--wa-ghost:hover { --bg: var(--wa); --fg: #fff; }
.btn--light { --bg: var(--light); --fg: var(--navy); }
.btn--light:hover { --bg: var(--line); }
.btn--sm { height: 42px; padding: 0 16px; font-size: 14px; border-radius: 10px; }
.btn--xs { height: 34px; padding: 0 12px; font-size: 13px; border-radius: 9px; gap: 6px; }
.btn--lg { height: 60px; padding: 0 30px; font-size: 16px; border-radius: 14px; }
.btn--icon { width: 42px; padding: 0; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }
.link { font-weight: 700; display: inline-flex; align-items: center; gap: 6px; border-bottom: 2px solid var(--yellow); padding-bottom: 2px; transition: gap var(--t); }
.link:hover { gap: 10px; }

/* ---------- Header ---------- */
.hdr { position: fixed; inset: 0 0 auto; z-index: 60; height: var(--hdr); background: rgba(255, 255, 255, .96); transition: height var(--t), box-shadow var(--t), background var(--t); }
.hdr.is-scrolled { --hdr: 64px; height: 64px; background: rgba(255, 255, 255, .82); backdrop-filter: saturate(1.6) blur(14px); -webkit-backdrop-filter: saturate(1.6) blur(14px); box-shadow: 0 1px 0 rgba(13, 27, 42, .06), 0 8px 30px -18px rgba(13, 27, 42, .25); }
.hdr.is-dark:not(.is-scrolled) { background: transparent; }
.hdr.is-dark:not(.is-scrolled) .logo .wm b, .hdr.is-dark:not(.is-scrolled) .nav a { color: #fff; }
.hdr.is-dark:not(.is-scrolled) .logo .mark .m-c { stroke: #fff; }
.hdr.is-dark:not(.is-scrolled) .logo .mark .m-s { fill: #fff; }
.hdr.is-dark:not(.is-scrolled) .hsearch { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .18); }
.hdr.is-dark:not(.is-scrolled) .hsearch kbd { background: transparent; color: rgba(255, 255, 255, .6); border-color: rgba(255, 255, 255, .2); }
.hdr.is-dark:not(.is-scrolled) .btn--wa-ghost { --fg: #6ee7a0; box-shadow: inset 0 0 0 1.5px rgba(110, 231, 160, .35); }
.hdr.is-dark:not(.is-scrolled) .burger span { background: #fff; }
.hdr__in { height: 100%; display: flex; align-items: center; gap: 28px; }
.nav { display: flex; gap: 4px; margin-left: 12px; }
.nav a { white-space: nowrap; position: relative; font-size: 14.5px; font-weight: 600; padding: 8px 12px; border-radius: 8px; color: var(--navy); transition: color var(--t), background var(--t); }
.nav a::after { content: ''; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.hdr__act { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.hsearch { display: flex; align-items: center; gap: 10px; height: 42px; padding: 0 8px 0 14px; border-radius: 10px; border: 1px solid var(--line); background: var(--light); color: var(--gray); font-size: 14px; font-weight: 500; min-width: 210px; transition: border-color var(--t), background var(--t); }
.hsearch:hover { border-color: var(--navy); }
.hsearch kbd { margin-left: auto; }
.burger { display: none; width: 42px; height: 42px; border-radius: 10px; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--t), top var(--t); }
.burger span:first-child { top: 16px; } .burger span:last-child { top: 24px; }
.burger[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }
.mmenu { position: fixed; inset: 64px 0 0; background: #fff; z-index: 59; padding: 24px var(--gut) 110px; display: flex; flex-direction: column; justify-content: space-between; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: all var(--t); }
.mmenu.is-open { transform: none; opacity: 1; visibility: visible; }
.mmenu nav { display: flex; flex-direction: column; }
.mmenu nav a { font-size: 26px; font-weight: 800; padding: 12px 0; border-bottom: 1px solid var(--line-2); letter-spacing: -.02em; }
.mmenu__foot { display: grid; gap: 10px; }

main { min-height: 70vh; outline: none; }
.page { padding-top: var(--hdr); animation: pageIn .5s var(--ease) both; }
.page--flush { padding-top: 0; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Section primitives ---------- */
.sec { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.sec--tight { padding: clamp(48px, 6vw, 80px) 0; }
.sec--gray { background: var(--light); }
.sec--cream { background: var(--cream-2); }
.sec--navy { background: var(--navy); color: #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.eyebrow::before { content: ''; width: 18px; height: 3px; background: var(--yellow); border-radius: 2px; }
.sec--navy .eyebrow, .dark .eyebrow { color: rgba(255, 255, 255, .6); }
.h1 { font-size: clamp(40px, 6.4vw, 88px); font-weight: 800; letter-spacing: -.045em; line-height: .98; }
.h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; letter-spacing: -.035em; line-height: 1.04; }
.h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 700; }
.lead { font-size: clamp(16px, 1.3vw, 19px); color: var(--gray); max-width: 640px; line-height: 1.6; }
.sec--navy .lead { color: rgba(255, 255, 255, .72); }
.y { color: var(--yellow); }
.sec-hd { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: clamp(32px, 4vw, 56px); flex-wrap: wrap; }
.sec-hd .lead { margin-top: 14px; }
.corner { position: absolute; width: 64px; height: 64px; border-top: 14px solid var(--yellow); border-right: 14px solid var(--yellow); pointer-events: none; }

/* Reveal */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--d, 0) * 70ms); }
.rv.in { opacity: 1; transform: none; }

/* ---------- HERO ---------- */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; padding: calc(var(--hdr) + clamp(40px, 6vw, 80px)) 0 0; isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(1000px 600px at 12% 20%, rgba(242, 183, 5, .10), transparent 60%), radial-gradient(800px 500px at 90% 100%, rgba(28, 52, 80, .9), transparent 60%); z-index: -1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: center; min-height: min(760px, calc(100vh - 150px)); }
.hero__kicker { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 8px; border-radius: 999px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, .85); margin-bottom: 28px; }
.hero__kicker b { background: var(--yellow); color: var(--navy); border-radius: 999px; padding: 3px 10px; font-size: 11.5px; letter-spacing: .06em; }
.hero h1 .ln { display: block; overflow: hidden; padding-bottom: .06em; }
.hero h1 .ln > span { display: inline-block; transform: translateY(105%); animation: lineUp .9s var(--ease) forwards; animation-delay: calc(var(--i) * 110ms + 150ms); }
@keyframes lineUp { to { transform: none; } }
.hero h1 .y { position: relative; }
.hero h1 .y::after { content: ''; position: absolute; left: 0; right: .2em; bottom: .02em; height: .09em; background: var(--yellow); transform: scaleX(0); transform-origin: left; animation: underline .8s .9s var(--ease) forwards; opacity: .45; }
@keyframes underline { to { transform: scaleX(1); } }
.hero__sub { margin-top: 26px; font-size: clamp(16px, 1.35vw, 19px); color: rgba(255, 255, 255, .74); max-width: 540px; opacity: 0; animation: fadeUp .8s .6s var(--ease) forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero__search { margin-top: 34px; max-width: 560px; opacity: 0; animation: fadeUp .8s .75s var(--ease) forwards; }
.hero__cta { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .9s var(--ease) forwards; }
.hero__trust { display: flex; gap: 22px; margin-top: 34px; color: rgba(255, 255, 255, .6); font-size: 13.5px; font-weight: 500; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s 1.05s var(--ease) forwards; }
.hero__trust span { display: inline-flex; gap: 8px; align-items: center; }
.hero__trust .i { width: 16px; height: 16px; color: var(--yellow); }

/* search pill */
.sbar { display: flex; align-items: center; gap: 12px; height: 64px; padding: 0 8px 0 20px; border-radius: 16px; background: #fff; color: var(--navy); box-shadow: var(--sh-3); cursor: text; transition: box-shadow var(--t), transform var(--t); width: 100%; text-align: left; }
.sbar:hover { transform: translateY(-2px); box-shadow: 0 40px 70px -24px rgba(0, 0, 0, .55); }
.sbar .i { color: var(--gray); }
.sbar__ph { flex: 1; font-size: 16px; color: var(--gray); font-weight: 500; white-space: nowrap; overflow: hidden; }
.sbar__ph b { color: var(--navy); font-weight: 600; }
.sbar__ph .caret { display: inline-block; width: 2px; height: 1.1em; background: var(--yellow); vertical-align: -3px; margin-left: 2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.sbar__go { height: 48px; padding: 0 20px; border-radius: 11px; background: var(--navy); color: #fff; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.sbar--light { box-shadow: 0 0 0 1px var(--line), var(--sh-2); }

/* mosaic */
.mosaic { position: relative; height: min(720px, calc(100vh - 120px)); min-height: 520px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; transform: rotate(-4deg) translateY(-10px); margin-right: calc(var(--gut) * -1.5); mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent); }
.mosaic__col { display: flex; flex-direction: column; gap: 14px; animation: colUp 60s linear infinite; }
.mosaic__col:nth-child(2) { animation-direction: reverse; animation-duration: 70s; }
.mosaic__col:nth-child(3) { animation-duration: 80s; }
.mosaic:hover .mosaic__col { animation-play-state: paused; }
@keyframes colUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.mosaic figure { margin: 0; border-radius: 16px; overflow: hidden; position: relative; background: var(--navy-2); aspect-ratio: 3/4; flex: none; }
.mosaic figure:nth-child(3n) { aspect-ratio: 1; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.02); transition: transform 1s var(--ease), filter .6s; }
.mosaic figure:hover img { transform: scale(1.06); filter: none; }
.mosaic figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 27, 42, .35), transparent 50%); }
.hero__badge { position: absolute; right: clamp(20px, 6vw, 90px); bottom: 190px; z-index: 3; background: #fff; color: var(--navy); border-radius: 16px; padding: 14px 18px; display: flex; gap: 12px; align-items: center; box-shadow: var(--sh-3); animation: float 6s ease-in-out infinite; }
.hero__badge .dot { width: 40px; height: 40px; border-radius: 12px; background: var(--cream); display: grid; place-items: center; color: var(--navy); }
.hero__badge b { display: block; font-size: 15px; } .hero__badge small { color: var(--gray); font-size: 12.5px; }
@keyframes float { 50% { transform: translateY(-8px); } }

/* reassurance band */
.reas { position: relative; z-index: 4; margin-top: clamp(30px, 4vw, 50px); background: #fff; color: var(--navy); border-radius: 20px 20px 0 0; }
.reas__in { display: grid; grid-template-columns: repeat(5, 1fr); }
.reas__it { display: flex; gap: 14px; align-items: center; padding: 26px 22px; border-right: 1px solid var(--line-2); }
.reas__it:last-child { border-right: 0; }
.reas__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--cream); color: var(--navy); display: grid; place-items: center; flex: none; transition: transform var(--t), background var(--t); }
.reas__it:hover .reas__ic { transform: rotate(-6deg) scale(1.05); background: var(--yellow); }
.reas__it b { display: block; font-size: 15px; line-height: 1.25; }
.reas__it small { color: var(--gray); font-size: 12.5px; line-height: 1.35; display: block; margin-top: 2px; }

/* marquee band */
.band { background: var(--yellow); color: var(--navy); overflow: hidden; padding: 18px 0; border-block: 1px solid rgba(13, 27, 42, .08); }
.band__track { display: flex; gap: 48px; width: max-content; animation: marq 40s linear infinite; }
.band__track span { display: inline-flex; align-items: center; gap: 48px; font-weight: 800; font-size: clamp(18px, 2vw, 26px); letter-spacing: -.02em; white-space: nowrap; }
.band__track span::after { content: ''; width: 12px; height: 12px; background: var(--navy); display: inline-block; clip-path: polygon(0 0, 100% 0, 100% 100%, 65% 100%, 65% 35%, 0 35%); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Category bento ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 280px; gap: 16px; }
.cat { position: relative; border-radius: var(--r-lg); overflow: hidden; color: #fff; isolation: isolate; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; background: var(--navy); min-height: 240px; }
.cat:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.cat:nth-child(2) { grid-column: span 5; grid-row: span 1; }
.cat:nth-child(3) { grid-column: span 5; grid-row: span 1; }
.cat:nth-child(4) { grid-column: span 6; }
.cat:nth-child(5) { grid-column: span 6; }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease); }
.cat::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(13, 27, 42, .92) 0%, rgba(13, 27, 42, .45) 45%, rgba(13, 27, 42, .05) 80%); transition: opacity var(--t); }
.cat::after { content: ''; position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; border-top: 8px solid var(--yellow); border-right: 8px solid var(--yellow); transform: translate(10px, -10px); opacity: 0; transition: all .45s var(--ease); }
.cat:hover::after { transform: none; opacity: 1; }
.cat:hover img { transform: scale(1.07); }
.cat__n { position: absolute; top: 24px; left: 26px; font-size: 13px; font-weight: 700; letter-spacing: .14em; color: rgba(255, 255, 255, .7); }
.cat h3 { font-size: clamp(24px, 2.4vw, 34px); font-weight: 800; letter-spacing: -.03em; }
.cat p { color: rgba(255, 255, 255, .78); margin-top: 8px; max-width: 460px; font-size: 15px; }
.cat__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.cat__tags span { font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 999px; background: rgba(255, 255, 255, .12); backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, .14); }
.cat__go { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; }
.cat__go i { width: 34px; height: 34px; border-radius: 50%; background: var(--yellow); color: var(--navy); display: grid; place-items: center; transition: transform var(--t); }
.cat:hover .cat__go i { transform: translateX(4px) rotate(-45deg); }
.cat__count { position: absolute; top: 20px; right: 22px; font-size: 12.5px; font-weight: 700; background: rgba(255, 255, 255, .14); backdrop-filter: blur(6px); padding: 6px 11px; border-radius: 999px; transition: opacity var(--t); }
.cat:hover .cat__count { opacity: 0; }
.cat--perso { background: var(--yellow); color: var(--navy); }
.cat--perso::before { background: linear-gradient(to top, rgba(242, 183, 5, 1) 25%, rgba(242, 183, 5, .7) 60%, rgba(242, 183, 5, .1)); }
.cat--perso p, .cat--perso .cat__n { color: rgba(13, 27, 42, .78); }
.cat--perso .cat__go i { background: var(--navy); color: var(--yellow); }
.cat--perso .cat__tags span { background: rgba(13, 27, 42, .1); border-color: rgba(13, 27, 42, .12); }
.cat--perso::after { border-color: var(--navy); }

/* ---------- Ref search block ---------- */
.refbox { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 5vw, 80px); align-items: center; background: var(--navy); color: #fff; border-radius: var(--r-xl); padding: clamp(28px, 5vw, 64px); position: relative; overflow: hidden; }
.refbox .corner { top: 26px; right: 26px; }
.refbox__field { position: relative; }
.refbox__in { width: 100%; height: 64px; border-radius: 14px; border: 0; padding: 0 20px 0 54px; font-size: 16px; font-weight: 500; background: #fff; color: var(--navy); }
.refbox__in:focus { outline: 3px solid var(--yellow); }
.refbox__field > .i { position: absolute; left: 20px; top: 22px; color: var(--gray); }
.refbox__res { margin-top: 12px; display: grid; gap: 8px; min-height: 76px; }
.refhit { display: flex; align-items: center; gap: 14px; padding: 10px 14px 10px 10px; border-radius: 14px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); transition: background var(--t), border-color var(--t), transform var(--t); animation: fadeUp .35s var(--ease) both; }
.refhit:hover { background: rgba(255, 255, 255, .12); border-color: var(--yellow); transform: translateX(4px); }
.refhit img { width: 54px; height: 54px; border-radius: 10px; object-fit: contain; background: #fff; }
.refhit b { display: block; font-size: 15px; } .refhit small { color: rgba(255, 255, 255, .6); font-size: 13px; }
.refhit .link { margin-left: auto; color: var(--yellow); border: 0; font-size: 13.5px; }
.refchips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.refchips button { font-size: 13px; font-weight: 600; padding: 7px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .8); transition: all var(--t); }
.refchips button:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }

/* ---------- Needs (besoin -> solution) ---------- */
.needs { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 4vw, 56px); align-items: stretch; }
.needs__list { display: flex; flex-direction: column; gap: 10px; }
.need { display: flex; align-items: center; gap: 18px; padding: 20px 22px; border-radius: 16px; background: #fff; border: 1.5px solid var(--line-2); text-align: left; transition: all .35s var(--ease); position: relative; overflow: hidden; }
.need__n { font-size: 13px; font-weight: 800; color: var(--gray); width: 26px; }
.need__q { font-size: clamp(16px, 1.4vw, 19px); font-weight: 700; letter-spacing: -.015em; flex: 1; }
.need__a { font-size: 13px; color: var(--gray); display: block; font-weight: 500; margin-top: 2px; }
.need .i { color: var(--gray); transition: transform var(--t), color var(--t); }
.need:hover { border-color: var(--navy); }
.need.is-on { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--sh-2); }
.need.is-on .need__n { color: var(--yellow); }
.need.is-on .need__a { color: rgba(255, 255, 255, .6); }
.need.is-on .i { color: var(--yellow); transform: translateX(4px); }
.needs__panel { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--navy); color: #fff; display: flex; flex-direction: column; box-shadow: var(--sh-3); }
.needs__photo { position: relative; height: 250px; overflow: hidden; flex: none; }
.needs__photo img { width: 100%; height: 100%; object-fit: cover; animation: kenIn 1.2s var(--ease) both; }
@keyframes kenIn { from { transform: scale(1.08); opacity: .4; } to { transform: none; opacity: 1; } }
.needs__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--navy) 2%, rgba(13, 27, 42, .15) 65%); }
.needs__cap { position: absolute; left: clamp(22px, 3vw, 34px); bottom: 14px; z-index: 1; }
.needs__cap .eyebrow { margin-bottom: 6px; color: rgba(255, 255, 255, .75); }
.needs__cap h3 { font-size: clamp(24px, 2.4vw, 32px); font-weight: 800; letter-spacing: -.03em; }
.needs__body { position: relative; padding: 18px clamp(22px, 3vw, 34px) clamp(22px, 3vw, 32px); }
.needs__prods { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 22px; }
.mini { background: #fff; color: var(--navy); border-radius: 16px; padding: 10px 10px 12px; transition: transform var(--t), box-shadow var(--t); animation: fadeUp .45s var(--ease) both; animation-delay: calc(var(--d) * 80ms); min-width: 0; }
.mini:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .6); }
.mini__img { display: block; aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: radial-gradient(110% 90% at 50% 30%, #fff, #efefec 70%, #e6e6e2); }
.mini__img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; mix-blend-mode: multiply; transition: transform .6s var(--ease); }
.mini:hover .mini__img img { transform: scale(1.08); }
.mini b { display: block; font-size: 13px; line-height: 1.3; margin-top: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.mini small { color: var(--gray); font-size: 11.5px; font-weight: 600; }

/* ---------- Product card ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; }
.pc { position: relative; display: flex; flex-direction: column; background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line-2); transition: box-shadow .4s var(--ease), transform .4s var(--ease), border-color .4s; overflow: hidden; }
.pc:hover { box-shadow: var(--sh-2); transform: translateY(-4px); border-color: transparent; }
.pc__media { position: relative; aspect-ratio: 4 / 4.4; overflow: hidden; display: block; background: radial-gradient(120% 90% at 50% 30%, #ffffff 0%, #f4f4f2 55%, #e9e9e6 100%); }
.pc__media::after { content: ''; position: absolute; left: 18%; right: 18%; bottom: 7%; height: 16px; border-radius: 50%; background: radial-gradient(closest-side, rgba(13, 27, 42, .18), transparent); filter: blur(4px); transition: transform .8s var(--ease), opacity .5s; pointer-events: none; }
.pc:hover .pc__media::after { transform: scaleX(.85); opacity: .7; }
.pc__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 26px 22px 34px; mix-blend-mode: multiply; transition: opacity .5s, transform .8s var(--ease); }
.pc:hover .pc__media img:first-child { transform: scale(1.06) translateY(-4px); }
.pc__media img + img { opacity: 0; }
.pc:hover .pc__media img:first-child { transform: scale(1.04); }
.pc:hover .pc__media img + img { opacity: 1; }
.pc:hover .pc__media img:first-child:not(:only-child) { opacity: 0; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; padding: 5px 9px; border-radius: 999px; background: #fff; color: var(--navy); box-shadow: var(--sh-1); letter-spacing: .01em; }
.badge--ok::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(19, 138, 74, .15); }
.badge--order::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.badge--y { background: var(--cream); color: var(--yellow-ink); box-shadow: none; }
.pc__badges { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; gap: 6px; z-index: 2; }
.pc__add { position: absolute; right: 12px; bottom: 12px; z-index: 2; width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-2); transform: translateY(8px) scale(.9); opacity: 0; transition: all .35s var(--ease); }
.pc:hover .pc__add, .pc__add:focus-visible, .pc__add.is-in { transform: none; opacity: 1; }
.pc__add:hover { background: var(--yellow); color: var(--navy); }
.pc__add.is-in { background: var(--yellow); color: var(--navy); }
.pc__add .tip { position: absolute; right: 52px; white-space: nowrap; font-size: 12.5px; font-weight: 700; background: var(--navy); color: #fff; padding: 6px 10px; border-radius: 8px; opacity: 0; transform: translateX(6px); transition: all var(--t); pointer-events: none; }
.pc__add:hover .tip { opacity: 1; transform: none; }
.pc__body { padding: 18px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.pc__brand { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); }
.pc__name { font-size: 16.5px; font-weight: 700; letter-spacing: -.015em; line-height: 1.3; margin-top: 4px; }
.pc__name a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.pc__ref { font-size: 12.5px; color: var(--gray); margin-top: 4px; font-weight: 500; }
.pc__specs { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 4px; font-size: 13px; color: #3c4655; }
.pc__specs li { display: flex; gap: 8px; align-items: baseline; }
.pc__specs li::before { content: ''; width: 5px; height: 5px; background: var(--yellow); flex: none; transform: translateY(-2px); }
.pc__foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pc__price { font-size: 13px; font-weight: 700; color: var(--navy); }
.pc__price small { display: block; color: var(--gray); font-weight: 500; font-size: 11.5px; }
.pc__cta { position: relative; z-index: 2; font-size: 13px; font-weight: 700; height: 38px; padding: 0 14px; border-radius: 10px; background: var(--light); display: inline-flex; align-items: center; gap: 6px; transition: all var(--t); }
.pc:hover .pc__cta { background: var(--navy); color: #fff; }
.pc__dots { display: flex; gap: 4px; margin-top: 12px; align-items: center; }
.pc__dots i { width: 13px; height: 13px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); }
.pc__dots small { font-size: 12px; color: var(--gray); margin-left: 4px; font-weight: 600; }

/* skeleton */
.sk { background: linear-gradient(90deg, var(--light) 0%, #f8f8f8 50%, var(--light) 100%); background-size: 200% 100%; animation: sk 1.2s infinite; border-radius: 8px; }
@keyframes sk { to { background-position: -200% 0; } }
.pc--sk .pc__media { background: none; }
.pc--sk .pc__media .sk { position: absolute; inset: 0; border-radius: 0; }

/* ---------- Catalogue ---------- */
.chead { background: var(--navy); color: #fff; padding: calc(var(--hdr) + 48px) 0 0; position: relative; overflow: hidden; }
.chead::before { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 400px at 85% 0%, rgba(242, 183, 5, .14), transparent 60%); }
.chead .corner { right: var(--gut); top: calc(var(--hdr) + 30px); }
.chead__in { position: relative; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--gray); flex-wrap: wrap; font-weight: 500; }
.crumbs a:hover { color: var(--navy); text-decoration: underline; }
.crumbs .i { width: 14px; height: 14px; opacity: .6; }
.chead .crumbs { color: rgba(255, 255, 255, .55); }
.chead .crumbs a:hover { color: #fff; }
.chead h1 { margin-top: 16px; }
.chead .lead { color: rgba(255, 255, 255, .7); margin-top: 12px; }
.chead__search { margin-top: 28px; max-width: 760px; }
.fams { display: flex; gap: 8px; margin-top: 36px; overflow-x: auto; scrollbar-width: none; padding-bottom: 0; }
.fams::-webkit-scrollbar { display: none; }
.fam { flex: none; display: inline-flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 14px 14px 0 0; font-weight: 700; font-size: 14.5px; color: rgba(255, 255, 255, .72); background: rgba(255, 255, 255, .04); transition: all var(--t); border: 1px solid rgba(255, 255, 255, .06); border-bottom: 0; }
.fam:hover { color: #fff; background: rgba(255, 255, 255, .09); }
.fam.is-on { background: #fff; color: var(--navy); }
.fam small { font-size: 12px; padding: 2px 8px; border-radius: 999px; background: rgba(255, 255, 255, .1); }
.fam.is-on small { background: var(--cream); color: var(--yellow-ink); }
.ctool { position: sticky; top: var(--hdr); z-index: 20; background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-2); transition: top var(--t); }
.ctool__in { display: flex; align-items: center; gap: 12px; min-height: 68px; flex-wrap: wrap; padding-block: 10px; }
.subs { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; background: #fff; transition: all var(--t); }
.chip:hover { border-color: var(--navy); }
.chip.is-on { background: var(--navy); color: #fff; border-color: var(--navy); }
.chip .i { width: 14px; height: 14px; }
.chip--rm { background: var(--cream); border-color: transparent; color: var(--navy); }
.chip--rm:hover { background: var(--yellow); }
.ctool__r { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.ctool__count { font-size: 14px; color: var(--gray); font-weight: 500; }
.ctool__count b { color: var(--navy); }
.sel { height: 42px; border-radius: 10px; border: 1px solid var(--line); padding: 0 34px 0 14px; font-size: 14px; font-weight: 600; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%230D1B2A' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 10px center / 16px; appearance: none; cursor: pointer; }
.fbtn { position: relative; }
.fbtn .n { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; border-radius: 10px; background: var(--yellow); color: var(--navy); font-size: 11px; font-weight: 800; display: grid; place-items: center; padding: 0 5px; }
.activef { display: flex; gap: 6px; flex-wrap: wrap; padding-bottom: 12px; }
.activef:empty { display: none; }
.cbody { padding: 32px 0 100px; }
.empty { text-align: center; padding: 70px 20px; border-radius: var(--r-xl); background: var(--light); }
.empty h3 { font-size: 24px; font-weight: 800; }
.empty p { color: var(--gray); margin: 10px auto 22px; max-width: 460px; }
.empty .row { justify-content: center; }
.help { margin-top: 48px; display: flex; align-items: center; gap: 24px; justify-content: space-between; padding: 26px 30px; border-radius: var(--r-lg); background: var(--cream); flex-wrap: wrap; }
.help b { font-size: 19px; display: block; letter-spacing: -.02em; }
.help p { color: #5a5240; font-size: 14.5px; }
.row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* filter drawer contents */
.fgroup { border-bottom: 1px solid var(--line-2); padding: 18px 0; }
.fgroup:first-child { padding-top: 4px; }
.fgroup > button { display: flex; width: 100%; justify-content: space-between; align-items: center; font-weight: 700; font-size: 15px; }
.fgroup > button .i { transition: transform var(--t); width: 18px; }
.fgroup.is-closed > button .i { transform: rotate(-90deg); }
.fgroup.is-closed .fopts { display: none; }
.fgroup small.lbl { font-size: 11.5px; color: var(--gray); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; display: block; margin: 14px 0 0; }
.fopts { display: grid; gap: 2px; margin-top: 12px; }
.chk { display: flex; align-items: center; gap: 12px; padding: 8px 6px; border-radius: 8px; cursor: pointer; font-size: 14.5px; font-weight: 500; }
.chk:hover { background: var(--light); }
.chk input { appearance: none; width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid #c9ccd1; display: grid; place-items: center; transition: all .2s; flex: none; margin: 0; }
.chk input:checked { background: var(--navy); border-color: var(--navy); }
.chk input:checked::after { content: ''; width: 10px; height: 6px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) translate(1px, -1px); }
.chk small { margin-left: auto; color: var(--gray); font-size: 12.5px; }
.swrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* ---------- Drawer ---------- */
.scrim { position: fixed; inset: 0; background: rgba(13, 27, 42, .35); backdrop-filter: blur(2px); z-index: 80; opacity: 0; visibility: hidden; transition: all .35s var(--ease); }
.scrim.is-on { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(460px, 100vw); background: #fff; z-index: 90; display: flex; flex-direction: column; transform: translateX(104%); transition: transform .5s var(--ease); box-shadow: -30px 0 60px -30px rgba(13, 27, 42, .35); }
.drawer--left { right: auto; left: 0; transform: translateX(-104%); box-shadow: 30px 0 60px -30px rgba(13, 27, 42, .35); width: min(400px, 100vw); }
.drawer.is-open { transform: none; }
.drawer__grab { display: none; }
.drawer__hd { display: flex; justify-content: space-between; align-items: flex-start; padding: 24px 24px 18px; border-bottom: 1px solid var(--line-2); gap: 16px; }
.drawer__hd h2 { font-size: 21px; font-weight: 800; letter-spacing: -.025em; }
.drawer__hd p { font-size: 13.5px; margin-top: 2px; }
.drawer__hd::before { content: ''; position: absolute; left: 0; top: 24px; width: 4px; height: 26px; background: var(--yellow); }
.drawer__bd { flex: 1; overflow-y: auto; padding: 8px 24px 24px; overscroll-behavior: contain; }
.drawer__ft { padding: 16px 24px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line-2); background: #fff; display: grid; gap: 10px; }
.drawer__ft:empty { display: none; }
.x { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; flex: none; transition: background var(--t); }
.x:hover { background: var(--light); }

.qi { display: grid; grid-template-columns: 68px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-2); align-items: start; animation: fadeUp .35s var(--ease) both; }
.qi__img { width: 68px; height: 68px; border-radius: 12px; background: var(--light); overflow: hidden; }
.qi__img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 4px; }
.qi b { font-size: 14.5px; line-height: 1.3; display: block; letter-spacing: -.01em; }
.qi small { color: var(--gray); font-size: 12.5px; }
.qi .rm { color: var(--gray); width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; }
.qi .rm:hover { background: #fdecec; color: #c0262d; }
.qi__q { margin-top: 10px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.qi__q label { font-size: 12px; color: var(--gray); font-weight: 600; }
.qi__note { grid-column: 2 / -1; font-size: 12.5px; color: var(--gray); margin-top: -4px; }
.qty { display: inline-flex; align-items: center; height: 38px; border-radius: 10px; border: 1px solid var(--line); background: #fff; overflow: hidden; }
.qty button { width: 36px; height: 100%; display: grid; place-items: center; color: var(--navy); transition: background .2s; }
.qty button:hover { background: var(--light); }
.qty button .i { width: 16px; height: 16px; }
.qty input { width: 64px; height: 100%; border: 0; text-align: center; font-weight: 700; font-size: 15px; -moz-appearance: textfield; background: transparent; }
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty--lg { height: 52px; border-radius: 12px; }
.qty--lg button { width: 48px; }
.qty--lg input { width: 90px; font-size: 17px; }

.field { display: grid; gap: 7px; }
.field > span { font-size: 13px; font-weight: 700; }
.field > span em { font-style: normal; color: var(--gray); font-weight: 500; }
.inp { width: 100%; height: 50px; border-radius: 12px; border: 1.5px solid var(--line); padding: 0 16px; font-size: 15px; background: #fff; transition: border-color .2s, box-shadow .2s; }
textarea.inp { height: auto; min-height: 100px; padding: 13px 16px; resize: vertical; line-height: 1.5; }
.inp:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(242, 183, 5, .25); }
.inp.is-err { border-color: #d03b3b; box-shadow: 0 0 0 4px rgba(208, 59, 59, .1); }
.err { color: #c0262d; font-size: 12.5px; font-weight: 600; }
.drawer .field { margin-top: 18px; }
.qempty { text-align: center; padding: 40px 6px 10px; }
.qempty__ic { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 22px; background: var(--cream); display: grid; place-items: center; position: relative; }
.qempty__ic .i { width: 34px; height: 34px; }
.qempty__ic::after { content: ''; position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-top: 6px solid var(--yellow); border-right: 6px solid var(--yellow); }
.qempty h3 { font-size: 20px; font-weight: 800; }
.qempty p { color: var(--gray); font-size: 14.5px; margin: 8px 0 20px; }
.qempty hr { border: 0; border-top: 1px solid var(--line-2); margin: 26px 0 18px; }
.qhelp { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 13.5px; color: var(--gray); }
.qhelp b { color: var(--navy); }

.disc { margin-top: 18px; border-radius: 14px; border: 1.5px dashed var(--line); }
.disc > summary { list-style: none; cursor: pointer; padding: 14px 16px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14.5px; }
.disc > summary::-webkit-details-marker { display: none; }
.disc > summary .i { margin-left: auto; transition: transform var(--t); width: 18px; }
.disc[open] > summary .i { transform: rotate(180deg); }
.disc > summary small { display: block; font-weight: 500; color: var(--gray); font-size: 12.5px; }
.disc__bd { padding: 0 16px 16px; display: grid; gap: 16px; }
.disc[open] { border-style: solid; background: var(--cream-2); }
.opts { display: flex; gap: 6px; flex-wrap: wrap; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt span { display: inline-flex; align-items: center; height: 36px; padding: 0 13px; border-radius: 10px; border: 1.5px solid var(--line); font-size: 13.5px; font-weight: 600; background: #fff; cursor: pointer; transition: all .2s; }
.opt input:checked + span { background: var(--navy); color: #fff; border-color: var(--navy); }
.opt input:focus-visible + span { outline: 3px solid var(--yellow); }
.opt--y input:checked + span { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.drop { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 12px; border: 1.5px dashed #c9ccd1; background: #fff; cursor: pointer; transition: all .2s; position: relative; }
.drop:hover, .drop.is-over { border-color: var(--navy); background: var(--cream-2); }
.drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.drop__ic { width: 42px; height: 42px; border-radius: 10px; background: var(--light); display: grid; place-items: center; flex: none; }
.drop b { font-size: 14px; display: block; } .drop small { color: var(--gray); font-size: 12.5px; }
.files { display: grid; gap: 6px; }
.file { display: flex; align-items: center; gap: 10px; font-size: 13px; padding: 8px 10px; background: #fff; border-radius: 10px; border: 1px solid var(--line); }
.file button { margin-left: auto; color: var(--gray); }

/* ---------- Quote tab ---------- */
.qtab { position: fixed; right: 0; top: 50%; z-index: 55; transform: translateY(-50%); background: var(--navy); color: #fff; border-radius: 14px 0 0 14px; padding: 16px 11px 14px 12px; display: flex; flex-direction: column; align-items: center; gap: 10px; box-shadow: -10px 10px 30px -12px rgba(13, 27, 42, .5); transition: padding var(--t), background var(--t), transform var(--t); }
.qtab:hover { padding-right: 16px; background: var(--navy-3); }
.qtab__lbl { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.qtab__n { min-width: 28px; height: 28px; border-radius: 9px; background: var(--yellow); color: var(--navy); font-weight: 800; font-size: 14px; display: grid; place-items: center; padding: 0 6px; }
.qtab .i { width: 18px; height: 18px; color: var(--yellow); }
.qtab.bump .qtab__n, .bnav__q.bump .bnav__n { animation: bump .6s var(--ease); }
@keyframes bump { 30% { transform: scale(1.5) rotate(-8deg); } 60% { transform: scale(.9); } }
.qtab.bump { animation: tabNudge .6s var(--ease); }
@keyframes tabNudge { 30% { transform: translateY(-50%) translateX(-8px); } }
body.drawer-open .qtab { transform: translateY(-50%) translateX(100%); }
.fly { position: fixed; z-index: 200; width: 70px; height: 70px; border-radius: 14px; object-fit: contain; background: #fff; box-shadow: var(--sh-3); pointer-events: none; transition: all .75s cubic-bezier(.6, -0.1, .3, 1); }

/* ---------- WhatsApp float ---------- */
.waf { position: fixed; right: 22px; bottom: 22px; z-index: 56; display: flex; align-items: center; gap: 10px; }
.waf__btn { width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(31, 175, 90, .6); position: relative; transition: transform var(--t); }
.waf__btn .i { width: 28px; height: 28px; }
.waf__btn::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--wa); z-index: -1; animation: breathe 3.2s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: .35; } 50% { transform: scale(1.28); opacity: 0; } }
.waf__lbl { background: #fff; color: var(--navy); font-weight: 700; font-size: 14px; padding: 10px 14px; border-radius: 12px; box-shadow: var(--sh-2); opacity: 0; transform: translateX(10px); transition: all var(--t); pointer-events: none; white-space: nowrap; }
.waf:hover .waf__lbl, .waf.nudge .waf__lbl { opacity: 1; transform: none; }
.waf:hover .waf__btn { transform: scale(1.06); }
.waf.nudge .waf__btn { animation: waNudge 1s var(--ease); }
@keyframes waNudge { 20% { transform: rotate(-14deg) scale(1.1); } 40% { transform: rotate(10deg) scale(1.1); } 60% { transform: rotate(-6deg); } 80% { transform: rotate(0); } }

/* ---------- Bottom nav (mobile) ---------- */
.bnav { display: none; }

/* ---------- Search overlay ---------- */
.search { position: fixed; inset: 0; z-index: 100; background: rgba(13, 27, 42, .55); backdrop-filter: blur(6px); display: flex; justify-content: center; align-items: flex-start; padding: 9vh 16px 16px; opacity: 0; visibility: hidden; transition: all .3s var(--ease); }
.search.is-open { opacity: 1; visibility: visible; }
.search__box { width: min(780px, 100%); background: #fff; border-radius: 20px; box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .5); overflow: hidden; transform: translateY(-12px) scale(.98); transition: transform .4s var(--ease); max-height: 82vh; display: flex; flex-direction: column; }
.search.is-open .search__box { transform: none; }
.search__bar { display: flex; align-items: center; gap: 14px; padding: 0 14px 0 22px; height: 72px; border-bottom: 1px solid var(--line-2); }
.search__bar input { flex: 1; border: 0; font-size: 18px; font-weight: 500; height: 100%; background: transparent; min-width: 0; }
.search__bar input:focus { outline: none; }
.search__bar > .i { color: var(--gray); width: 22px; height: 22px; }
.search__bar .x { width: auto; padding: 0 6px; }
.search__res { overflow-y: auto; padding: 10px 12px 16px; }
.sgrp { padding: 10px 10px 4px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); display: flex; justify-content: space-between; }
.shit { display: flex; align-items: center; gap: 14px; padding: 10px; border-radius: 12px; transition: background .15s; }
.shit:hover, .shit.is-sel { background: var(--light); }
.shit img { width: 50px; height: 50px; border-radius: 10px; object-fit: contain; background: var(--light); mix-blend-mode: multiply; flex: none; }
.shit__ic { width: 50px; height: 50px; border-radius: 10px; background: var(--cream); display: grid; place-items: center; flex: none; }
.shit b { font-size: 15px; display: block; line-height: 1.3; }
.shit small { color: var(--gray); font-size: 13px; }
.shit mark { background: rgba(242, 183, 5, .35); color: inherit; border-radius: 3px; padding: 0 1px; }
.shit .go { margin-left: auto; color: var(--gray); }
.shit--exact { background: var(--cream); border: 1.5px solid var(--yellow); }
.shit--exact .tag { font-size: 11px; font-weight: 800; background: var(--yellow); padding: 3px 8px; border-radius: 6px; margin-left: auto; letter-spacing: .04em; }
.sempty { padding: 26px 16px; text-align: center; color: var(--gray); }
.sempty b { color: var(--navy); display: block; font-size: 17px; margin-bottom: 6px; }
.sugg { display: flex; flex-wrap: wrap; gap: 8px; padding: 6px 10px 12px; }

/* ---------- Product page ---------- */
.pp { padding: 26px 0 60px; }
.pp__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 72px); margin-top: 22px; align-items: start; }
.gal { position: sticky; top: calc(var(--hdr) + 20px); display: grid; grid-template-columns: 84px 1fr; gap: 14px; }
.gal__thumbs { display: flex; flex-direction: column; gap: 10px; }
.gal__thumbs button { width: 84px; height: 84px; border-radius: 12px; background: var(--light); overflow: hidden; border: 2px solid transparent; transition: border-color .2s; }
.gal__thumbs button.is-on { border-color: var(--navy); }
.gal__thumbs img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 4px; }
.gal__main { position: relative; aspect-ratio: 1; border-radius: var(--r-xl); background: var(--light); overflow: hidden; cursor: zoom-in; }
.gal__main img { width: 100%; height: 100%; object-fit: contain; padding: 30px; mix-blend-mode: multiply; transition: transform .2s ease-out, opacity .3s; }
.gal__main.is-zoom img { transform: scale(2); }
.gal__main .corner { top: 22px; right: 22px; width: 44px; height: 44px; border-width: 9px; opacity: .9; }
.gal__hint { position: absolute; bottom: 16px; left: 16px; font-size: 12px; font-weight: 600; background: #fff; padding: 6px 10px; border-radius: 8px; color: var(--gray); box-shadow: var(--sh-1); }
.pinfo h1 { font-size: clamp(30px, 3.4vw, 46px); font-weight: 800; letter-spacing: -.035em; line-height: 1.05; margin-top: 14px; }
.pinfo__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 14px; font-size: 14px; color: var(--gray); font-weight: 500; align-items: center; }
.pinfo__meta b { color: var(--navy); }
.pinfo__meta .sep { width: 4px; height: 4px; border-radius: 50%; background: #c9ccd1; }
.pinfo__desc { margin-top: 20px; font-size: 16px; color: #3c4655; line-height: 1.7; }
.keyspecs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.keyspecs div { display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px; border-radius: 12px; background: var(--light); font-size: 13.5px; font-weight: 600; line-height: 1.4; }
.keyspecs .i { width: 18px; height: 18px; color: var(--navy); flex: none; margin-top: 1px; }
.blk { margin-top: 26px; }
.blk__hd { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; font-size: 14px; font-weight: 700; }
.blk__hd small { color: var(--gray); font-weight: 500; font-size: 13px; }
.sws { display: flex; gap: 8px; flex-wrap: wrap; }
.sw { width: 30px; height: 30px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .14); position: relative; transition: transform .2s; }
.sw:hover, .sw.is-on { transform: scale(1.12); }
.sw.is-on::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--navy); }
.sw__more { font-size: 13px; font-weight: 700; color: var(--gray); align-self: center; margin-left: 4px; }
.sizes { display: flex; gap: 6px; flex-wrap: wrap; }
.sizes span { min-width: 46px; height: 38px; border-radius: 9px; border: 1.5px solid var(--line); display: grid; place-items: center; font-size: 13px; font-weight: 700; padding: 0 10px; }
.addbox { margin-top: 30px; padding: 22px; border-radius: var(--r-lg); background: var(--cream-2); border: 1px solid #f5e5bb; }
.addbox__row { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.addbox__row .btn { flex: 1; min-width: 220px; }
.presets { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; align-items: center; }
.presets small { color: var(--gray); font-size: 12.5px; font-weight: 600; margin-right: 4px; }
.presets button { font-size: 12.5px; font-weight: 700; padding: 6px 11px; border-radius: 8px; background: #fff; border: 1px solid var(--line); transition: all .2s; }
.presets button:hover, .presets button.is-on { border-color: var(--navy); background: var(--navy); color: #fff; }
.addbox__price { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.addbox__price b { font-size: 18px; letter-spacing: -.02em; }
.addbox__price small { color: var(--gray); font-size: 13px; }
.advice > div { flex: 1; min-width: 190px; }
.advice { flex-wrap: wrap; margin-top: 14px; display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-radius: var(--r-lg); border: 1px solid var(--line-2); }
.advice__ic { width: 44px; height: 44px; border-radius: 12px; background: #e8f7ee; color: var(--wa-2); display: grid; place-items: center; flex: none; }
.advice b { font-size: 14.5px; display: block; } .advice p { font-size: 13.5px; color: var(--gray); }
.advice .btn { margin-left: auto; }
.ptabs { margin-top: clamp(50px, 7vw, 90px); }
.ptabs__nav { display: flex; gap: 6px; border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.ptabs__nav button { padding: 14px 18px; font-weight: 700; font-size: 15px; color: var(--gray); border-bottom: 3px solid transparent; margin-bottom: -1px; white-space: nowrap; transition: color .2s, border-color .2s; }
.ptabs__nav button.is-on { color: var(--navy); border-color: var(--yellow); }
.ptabs__pane { padding: 34px 0 0; display: none; animation: fadeUp .4s var(--ease); }
.ptabs__pane.is-on { display: block; }
.spec { width: 100%; border-collapse: collapse; font-size: 15px; }
.spec th, .spec td { text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.spec th { width: 34%; color: var(--gray); font-weight: 600; padding-right: 20px; }
.spec td { font-weight: 500; }
.two { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px, 4vw, 60px); }
.list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.list li .i { width: 20px; height: 20px; color: var(--ok); flex: none; margin-top: 2px; }
.tcards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.tcard { padding: 18px; border-radius: 14px; border: 1px solid var(--line-2); background: #fff; }
.tcard .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--cream); display: grid; place-items: center; margin-bottom: 12px; }
.tcard b { display: block; font-size: 15.5px; }
.tcard p { font-size: 13.5px; color: var(--gray); margin-top: 4px; }
.tcard.is-na { opacity: .45; }
.mstick { display: none; }

/* ---------- Techniques (perso) ---------- */
.techs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tech { position: relative; padding: 30px 26px 28px; border-radius: var(--r-lg); background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); transition: all .45s var(--ease); overflow: hidden; }
.tech::before { content: ''; position: absolute; inset: auto 0 0 0; height: 0; background: var(--yellow); transition: height .5s var(--ease); z-index: 0; }
.tech > * { position: relative; z-index: 1; }
.tech:hover { transform: translateY(-6px); border-color: var(--yellow); }
.tech:hover::before { height: 4px; }
.tech__ic { width: 56px; height: 56px; border-radius: 16px; background: var(--yellow); color: var(--navy); display: grid; place-items: center; margin-bottom: 22px; transition: transform .45s var(--ease); }
.tech:hover .tech__ic { transform: rotate(-8deg) scale(1.06); }
.tech__ic .i { width: 26px; height: 26px; }
.tech h3 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.tech p { color: rgba(255, 255, 255, .7); font-size: 14.5px; margin-top: 10px; }
.tech small { display: block; margin-top: 18px; font-size: 12.5px; color: var(--yellow); font-weight: 700; letter-spacing: .02em; }
.tech__n { position: absolute; top: 24px; right: 24px; font-size: 13px; font-weight: 800; color: rgba(255, 255, 255, .3); }
.advbar { margin-top: 28px; display: flex; align-items: center; gap: 20px; padding: 22px 26px; border-radius: var(--r-lg); background: rgba(255, 255, 255, .06); border: 1px dashed rgba(255, 255, 255, .22); flex-wrap: wrap; }
.advbar b { font-size: 18px; display: block; }
.advbar p { color: rgba(255, 255, 255, .65); font-size: 14.5px; }
.advbar .row { margin-left: auto; }

/* ---------- Process ---------- */
.proc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: s; position: relative; }
.proc::before { content: ''; position: absolute; left: 30px; right: 30px; top: 30px; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px); }
.step { position: relative; padding-right: 24px; }
.step__n { width: 60px; height: 60px; border-radius: 18px; background: #fff; border: 2px solid var(--navy); display: grid; place-items: center; font-weight: 800; font-size: 17px; position: relative; z-index: 1; transition: all .4s var(--ease); }
.step:hover .step__n { background: var(--yellow); border-color: var(--yellow); transform: rotate(-6deg); }
.step:last-child .step__n { background: var(--navy); color: var(--yellow); }
.step h3 { font-size: 20px; font-weight: 800; margin-top: 22px; letter-spacing: -.02em; }
.step p { color: var(--gray); font-size: 15px; margin-top: 8px; max-width: 260px; }

/* ---------- Sectors ---------- */
.hscroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: thin; scrollbar-color: var(--navy) var(--light); }
.hscroll > * { scroll-snap-align: start; }
.sector { position: relative; aspect-ratio: 3/4; border-radius: var(--r-lg); overflow: hidden; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; isolation: isolate; background: var(--navy); }
.sector img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s var(--ease); }
.sector::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 27, 42, .95), rgba(13, 27, 42, .1) 60%); z-index: -1; }
.sector:hover img { transform: scale(1.08); }
.sector h3 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.sector p { font-size: 13.5px; color: rgba(255, 255, 255, .72); margin-top: 6px; max-height: 0; overflow: hidden; transition: max-height .5s var(--ease), margin .3s; }
.sector:hover p { max-height: 120px; }
.sector .cat__go { margin-top: 14px; }
.sector__n { position: absolute; top: 18px; left: 22px; font-size: 12px; font-weight: 800; letter-spacing: .12em; color: var(--yellow); }
.scroll-nav { display: flex; gap: 8px; }
.scroll-nav button { width: 48px; height: 48px; border-radius: 14px; border: 1.5px solid var(--line); display: grid; place-items: center; transition: all .2s; }
.scroll-nav button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Projects ---------- */
.masonry { columns: 4 260px; column-gap: 14px; }
.proj { break-inside: avoid; margin: 0 0 14px; position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: zoom-in; background: var(--light); display: block; width: 100%; text-align: left; }
.proj img { width: 100%; height: auto; transition: transform 1s var(--ease); }
.proj:hover img { transform: scale(1.05); }
.proj figcaption, .proj__cap { position: absolute; inset: auto 0 0; padding: 40px 16px 14px; background: linear-gradient(to top, rgba(13, 27, 42, .92), transparent); color: #fff; transform: translateY(30%); opacity: 0; transition: all .45s var(--ease); }
.proj:hover .proj__cap, .proj:focus-visible .proj__cap { transform: none; opacity: 1; }
.proj__cap b { display: block; font-size: 15px; } .proj__cap small { font-size: 12.5px; color: rgba(255, 255, 255, .7); }
.proj__tag { position: absolute; top: 12px; left: 12px; font-size: 11.5px; font-weight: 700; background: var(--yellow); color: var(--navy); padding: 4px 9px; border-radius: 7px; }
.pstrip { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 14px; }
.pstrip .proj { margin: 0; height: 100%; }
.pstrip .proj img { height: 100%; object-fit: cover; }
.pstrip .proj:first-child { grid-row: span 2; }
.pstrip .proj:nth-child(4) { grid-row: span 2; }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 120; background: rgba(8, 16, 26, .94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .3s; padding: 20px; }
.lb.is-open { opacity: 1; visibility: visible; }
.lb figure { margin: 0; max-width: min(1000px, 88vw); text-align: center; color: #fff; }
.lb img { max-height: 78vh; margin: 0 auto; border-radius: 14px; }
.lb figcaption { margin-top: 14px; font-size: 15px; color: rgba(255, 255, 255, .8); }
.lb figcaption b { color: var(--yellow); }
.lb__x { position: absolute; top: 18px; right: 18px; color: #fff; }
.lb__x:hover { background: rgba(255, 255, 255, .1); }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255, 255, 255, .1); color: #fff; display: grid; place-items: center; }
.lb__nav:hover { background: var(--yellow); color: var(--navy); }
.lb__prev { left: 18px; } .lb__next { right: 18px; }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.val { padding: 34px 28px 10px 0; border-right: 1px solid var(--line); margin-right: 28px; }
.val:last-child { border-right: 0; margin-right: 0; }
.val .i { width: 44px; height: 44px; color: var(--yellow); stroke-width: 1.4; }
.val h3 { font-size: 15px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-top: 20px; }
.val p { color: var(--gray); margin-top: 8px; font-size: 15px; }
.sec--navy .values, .sec--navy .val { border-color: rgba(255, 255, 255, .12); }
.sec--navy .val p { color: rgba(255, 255, 255, .65); }

/* ---------- Clients ---------- */
.clients { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.clients__track { display: flex; gap: 20px; width: max-content; animation: marq 45s linear infinite; }
.clients:hover .clients__track { animation-play-state: paused; }
.clients__it { width: 190px; height: 104px; border-radius: 14px; background: #fff; border: 1px solid var(--line-2); display: grid; place-items: center; padding: 14px 20px; flex: none; }
.clients__it img { max-height: 70px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: all .4s; }
.clients__it:hover img { filter: none; opacity: 1; }
.brands { display: flex; flex-wrap: wrap; gap: 10px; }
.brand { height: 56px; padding: 0 22px; border-radius: 12px; border: 1px solid var(--line); display: inline-flex; align-items: center; font-weight: 800; font-size: 17px; letter-spacing: -.02em; color: #3c4655; background: #fff; transition: all .3s; }
.brand:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.brand small { font-size: 12px; font-weight: 600; color: var(--gray); margin-left: 10px; }

/* ---------- Final CTA ---------- */
.fcta { position: relative; overflow: hidden; border-radius: var(--r-xl); background: var(--navy); color: #fff; padding: clamp(36px, 6vw, 84px); display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; isolation: isolate; }
.fcta::before { content: ''; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px; border: 70px solid var(--yellow); border-left-color: transparent; border-bottom-color: transparent; z-index: -1; opacity: .95; }
.fcta__img { position: absolute; inset: 0 0 0 55%; z-index: -2; opacity: .35; }
.fcta__img img { width: 100%; height: 100%; object-fit: cover; }
.fcta__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy), transparent 60%); }
.fcta .lead { color: rgba(255, 255, 255, .72); margin-top: 18px; }
.fcta__side { display: grid; gap: 12px; justify-items: start; }
.fcta__tel { display: flex; gap: 12px; align-items: center; font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-top: 10px; }
.fcta__tel .i { color: var(--yellow); width: 24px; height: 24px; }

/* ---------- Footer ---------- */
.ftr { background: var(--navy); color: #fff; padding: 80px 0 0; position: relative; overflow: hidden; }
.ftr::after { content: 'CORPOTEX'; position: absolute; bottom: -0.2em; left: 50%; transform: translateX(-50%); font-size: clamp(80px, 19vw, 300px); font-weight: 800; letter-spacing: -.06em; color: rgba(255, 255, 255, .03); pointer-events: none; white-space: nowrap; line-height: 1; }
.ftr__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; position: relative; z-index: 1; }
.ftr h4 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .5); margin-bottom: 18px; }
.ftr__grid > div > a:not(.logo):not(.btn) { display: flex; gap: 10px; align-items: center; color: rgba(255, 255, 255, .82); padding: 6px 0; font-size: 15px; transition: color .2s; }
.ftr__grid > div > a:not(.logo):not(.btn):hover { color: var(--yellow); }
.ftr__contact .i { color: var(--yellow); width: 18px; height: 18px; }
.ftr__claim { color: rgba(255, 255, 255, .6); margin-top: 20px; max-width: 360px; font-size: 15px; }
.ftr__cta { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.ftr__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; padding-bottom: 36px; margin-top: 60px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13.5px; color: rgba(255, 255, 255, .5); flex-wrap: wrap; position: relative; z-index: 1; }
.ftr__legal { display: flex; gap: 20px; }
.ftr__legal a:hover { color: #fff; }

/* ---------- Quote page ---------- */
.qp { padding: calc(var(--hdr) + 36px) 0 100px; background: linear-gradient(var(--light), var(--light)) top / 100% 340px no-repeat; }
.qp__grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; margin-top: 30px; }
.stepper { display: flex; gap: 8px; margin-top: 28px; }
.stepper div { flex: 1; }
.stepper i { display: block; height: 5px; border-radius: 3px; background: var(--line); position: relative; overflow: hidden; }
.stepper i::after { content: ''; position: absolute; inset: 0; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.stepper .is-done i::after, .stepper .is-on i::after { transform: scaleX(1); }
.stepper .is-on i::after { background: var(--yellow); }
.stepper span { display: block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--gray); }
.stepper .is-on span, .stepper .is-done span { color: var(--navy); }
.card { background: #fff; border-radius: var(--r-xl); padding: clamp(22px, 3.5vw, 40px); box-shadow: var(--sh-1), 0 0 0 1px var(--line-2); }
.card h2 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 800; letter-spacing: -.025em; }
.card > p.muted { margin-top: 6px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.fgrid .full { grid-column: 1 / -1; }
.qlines { margin-top: 22px; border-radius: 16px; border: 1px solid var(--line-2); overflow: hidden; }
.qline { display: grid; grid-template-columns: 56px 1fr auto auto; gap: 14px; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--line-2); }
.qline:last-child { border-bottom: 0; }
.qline img { width: 56px; height: 56px; border-radius: 10px; object-fit: contain; background: var(--light); mix-blend-mode: multiply; }
.qline b { font-size: 14.5px; display: block; line-height: 1.3; } .qline small { color: var(--gray); font-size: 12.5px; }
.qline .rm { color: var(--gray); width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; }
.qline .rm:hover { background: #fdecec; color: #c0262d; }
.qadd { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; font-weight: 700; font-size: 14px; color: var(--navy); background: var(--light); width: 100%; transition: background .2s; }
.qadd:hover { background: var(--cream); }
.quick { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.formnav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-2); flex-wrap: wrap; align-items: center; }
.formnav .note { font-size: 13px; color: var(--gray); display: flex; gap: 8px; align-items: center; }
.formnav .note .i { width: 16px; height: 16px; color: var(--ok); }
.aside { position: sticky; top: calc(var(--hdr) + 20px); display: grid; gap: 14px; }
.aside .card { padding: 24px; }
.aside h3 { font-size: 17px; font-weight: 800; }
.rassure { display: grid; gap: 14px; margin-top: 16px; }
.rassure div { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; }
.rassure .i { color: var(--navy); background: var(--cream); padding: 7px; width: 34px; height: 34px; border-radius: 10px; flex: none; }
.rassure b { display: block; }
.rassure small { color: var(--gray); font-size: 13px; line-height: 1.4; display: block; }
.recap { display: grid; gap: 0; margin-top: 22px; }
.recap__row { display: grid; grid-template-columns: 160px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-2); font-size: 14.5px; }
.recap__row > span { color: var(--gray); font-weight: 600; }
.recap__row ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 4px; }
.recap__edit { font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: underline; margin-left: 6px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--gray); margin-top: 20px; }
.consent input { margin-top: 3px; accent-color: var(--navy); width: 16px; height: 16px; }

/* success */
.done { text-align: center; max-width: 640px; margin: 0 auto; padding: calc(var(--hdr) + 70px) var(--gut) 110px; }
.done__ic { width: 110px; height: 110px; border-radius: 32px; background: var(--navy); color: var(--yellow); display: grid; place-items: center; margin: 0 auto 30px; position: relative; animation: pop .7s var(--ease) both; }
.done__ic .i { width: 50px; height: 50px; stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw .6s .35s forwards; }
.done__ic::after { content: ''; position: absolute; top: -10px; right: -10px; width: 34px; height: 34px; border-top: 9px solid var(--yellow); border-right: 9px solid var(--yellow); }
@keyframes pop { from { transform: scale(.6); opacity: 0; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
.done h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -.035em; }
.done p { color: var(--gray); font-size: 17px; margin: 14px auto 30px; }
.done .row { justify-content: center; }
.done__box { margin-top: 36px; text-align: left; padding: 20px 22px; border-radius: 16px; background: var(--cream-2); border: 1px solid #f5e5bb; font-size: 14.5px; }
.done__box b { display: block; margin-bottom: 4px; }

/* generic page hero */
.phero { background: var(--navy); color: #fff; padding: calc(var(--hdr) + 60px) 0 80px; position: relative; overflow: hidden; }
.phero .corner { right: var(--gut); top: calc(var(--hdr) + 40px); }
.phero .lead { color: rgba(255, 255, 255, .7); margin-top: 18px; }
.phero__img { position: absolute; inset: 0 0 0 50%; opacity: .45; }
.phero__img img { width: 100%; height: 100%; object-fit: cover; }
.phero__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 5%, transparent 70%); }
.phero > .wrap { position: relative; }
.prose { max-width: 760px; font-size: 16px; color: #3c4655; }
.prose h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin: 34px 0 10px; }
.prose p { margin: 0 0 12px; }
.stat { font-size: clamp(38px, 4.4vw, 60px); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stats > div { padding: 26px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line-2); }
.stats small { display: block; color: var(--gray); margin-top: 10px; font-size: 14px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; }
.cway { display: flex; gap: 16px; align-items: center; padding: 20px; border-radius: 16px; border: 1px solid var(--line-2); background: #fff; transition: all .3s var(--ease); }
.cway:hover { border-color: var(--navy); transform: translateX(4px); }
.cway__ic { width: 52px; height: 52px; border-radius: 14px; background: var(--cream); display: grid; place-items: center; flex: none; }
.cway b { display: block; font-size: 17px; } .cway small { color: var(--gray); }

/* toast */
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 150; transform: translate(-50%, 30px); opacity: 0; visibility: hidden; background: var(--navy); color: #fff; padding: 12px 12px 12px 16px; border-radius: 14px; display: flex; align-items: center; gap: 14px; font-size: 14.5px; font-weight: 600; box-shadow: var(--sh-3); transition: all .4s var(--ease); max-width: calc(100vw - 32px); }
.toast.is-on { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.toast .ok { width: 28px; height: 28px; border-radius: 8px; background: var(--yellow); color: var(--navy); display: grid; place-items: center; flex: none; }
.toast .ok .i { width: 16px; height: 16px; }
.toast button { background: rgba(255, 255, 255, .12); padding: 8px 12px; border-radius: 9px; font-size: 13px; font-weight: 700; white-space: nowrap; }
.toast button:hover { background: var(--yellow); color: var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav { display: none; } .burger { display: block; }
  .hsearch { min-width: 0; } .hsearch span, .hsearch kbd { display: none; } .hsearch { width: 42px; padding: 0; justify-content: center; }
  .reas__in { grid-template-columns: repeat(3, 1fr); } .reas__it:nth-child(n+4) { display: none; } .reas__it:nth-child(3) { border-right: 0; }
  .techs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1020px) {

  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .mosaic { height: 360px; min-height: 0; margin: 10px calc(var(--gut) * -1) 0; transform: rotate(-4deg) scale(1.1); grid-template-columns: repeat(4, 1fr); }
  .mosaic__col:nth-child(n+4) { display: flex; }
  .hero__badge { bottom: 40px; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .cat:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .cat:nth-child(1) { grid-column: span 2; }
  .refbox, .needs, .fcta, .two, .contact-grid { grid-template-columns: 1fr; }
  .needs__panel { min-height: 460px; }
  .pp__grid { grid-template-columns: 1fr; }
  .gal { position: relative; top: 0; grid-template-columns: 1fr; }
  .gal__thumbs { flex-direction: row; order: 2; overflow-x: auto; }
  .gal__thumbs button { width: 70px; height: 70px; flex: none; }
  .qp__grid { grid-template-columns: 1fr; }
  .aside { position: static; }
  .proc { grid-template-columns: 1fr 1fr; gap: 36px 0; } .proc::before { display: none; }
  .values { grid-template-columns: 1fr 1fr; } .val { border-right: 0; margin-right: 0; padding-right: 16px; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .pstrip { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .pstrip .proj:nth-child(n) { grid-row: span 1; }
  .pstrip .proj:first-child { grid-row: span 2; }
  .fcta__img { display: none; }
}
@media (max-width: 720px) {
  :root { --hdr: 64px; }
  body { padding-bottom: 72px; }
  .hdr__cta, .hdr .btn--wa-ghost { display: none; }
  .hsearch { display: none; }
  .logo svg.mark { width: 34px; height: 34px; } .logo .wm b { font-size: 22px; } .logo .wm small { font-size: 6.4px; }
  .hero { padding-top: calc(var(--hdr) + 28px); }
  .hero__kicker { margin-bottom: 20px; font-size: 12px; }
  .hero__cta .btn { flex: 1; }
  .hero__trust { display: none; }
  .sbar { height: 58px; padding-left: 16px; } .sbar__go span { display: none; } .sbar__go { padding: 0 14px; }
  .sbar__ph { font-size: 15px; }
  .mosaic { height: 280px; }
  .hero__badge { display: none; }
  .reas { border-radius: 16px 16px 0 0; }
  .reas__in { grid-template-columns: 1fr 1fr; } .reas__it { padding: 18px 12px; gap: 10px; border-bottom: 1px solid var(--line-2); } .reas__it:nth-child(n) { display: flex; } .reas__it:nth-child(2n) { border-right: 0; } .reas__it:nth-child(3) { border-right: 1px solid var(--line-2); }
  .reas__it:last-child { grid-column: span 2; border-bottom: 0; }
  .reas__ic { width: 38px; height: 38px; } .reas__it b { font-size: 13.5px; } .reas__it small { font-size: 11.5px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 240px; } .cat:nth-child(1) { grid-column: span 1; }
  .cat { padding: 20px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pc__body { padding: 12px; } .pc__name { font-size: 14px; } .pc__specs { display: none; } .pc__brand { font-size: 10.5px; } .pc__ref { font-size: 11.5px; }
  .pc__foot { flex-direction: column; align-items: stretch; gap: 8px; } .pc__cta { justify-content: center; }
  .pc__add { opacity: 1; transform: none; width: 38px; height: 38px; right: 8px; bottom: 8px; } .pc__add .tip { display: none; }
  .pc__badges { top: 8px; left: 8px; right: 8px; } .pc__badges .badge--y { display: none; }
  .needs__prods { grid-template-columns: repeat(3, 1fr); gap: 6px; } .mini b { font-size: 11px; } .mini small { display: none; }
  .need { padding: 16px; gap: 12px; } .need__n { display: none; }
  .techs { grid-template-columns: 1fr; }
  .proc { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; gap: 28px; }
  .ftr { padding-top: 56px; }
  .masonry { columns: 2 140px; column-gap: 8px; } .proj { margin-bottom: 8px; border-radius: 12px; }
  .proj__cap { opacity: 1; transform: none; padding: 30px 10px 10px; } .proj__cap small { display: none; } .proj__cap b { font-size: 12.5px; }
  .fgrid { grid-template-columns: 1fr; }
  .recap__row { grid-template-columns: 1fr; gap: 4px; }
  .qline { grid-template-columns: 48px 1fr auto; } .qline .qty { grid-column: 2 / 4; justify-self: start; } .qline img { width: 48px; height: 48px; }
  .keyspecs { grid-template-columns: 1fr; }
  .addbox__row .btn { min-width: 0; width: 100%; }
  .advice { flex-wrap: wrap; } .advice .btn { margin-left: 0; width: 100%; }
  .ctool { top: var(--hdr); } .ctool__count { display: none; } .subs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; width: 100%; order: 3; } .subs .chip { flex: none; }
  .ctool__r { margin-left: 0; width: 100%; } .ctool__r .sel { flex: 1; }
  .help { padding: 20px; }
  .stats { grid-template-columns: 1fr 1fr; } .stats > div { padding: 18px; }
  .advbar .row { margin-left: 0; width: 100%; } .advbar .row .btn { flex: 1; }

  /* bottom nav */
  .bnav { display: grid; grid-template-columns: repeat(4, 1fr); position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px); border-top: 1px solid var(--line-2); padding: 6px 6px calc(6px + env(safe-area-inset-bottom)); }
  .bnav a, .bnav button { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 11px; font-weight: 700; color: var(--gray); padding: 6px 0; border-radius: 10px; position: relative; }
  .bnav .is-on { color: var(--navy); }
  .bnav .is-on .i { color: var(--navy); }
  .bnav .i { width: 22px; height: 22px; }
  .bnav__q { color: var(--navy) !important; }
  .bnav__n { position: absolute; top: 2px; left: calc(50% + 6px); min-width: 18px; height: 18px; border-radius: 9px; background: var(--yellow); color: var(--navy); font-size: 10.5px; font-weight: 800; display: grid; place-items: center; padding: 0 4px; }
  .qtab { display: none; }
  .waf { bottom: 84px; right: 14px; } .waf__btn { width: 56px; height: 56px; } .waf__lbl { display: none; }
  .toast { bottom: 150px; }

  /* bottom-sheet drawers */
  .drawer, .drawer--left { top: auto; left: 0; right: 0; width: 100%; max-height: 90vh; border-radius: 22px 22px 0 0; transform: translateY(104%); }
  .drawer.is-open { transform: none; }
  .drawer__grab { display: block; width: 44px; height: 5px; border-radius: 3px; background: var(--line); margin: 10px auto 0; }
  .drawer__hd { padding-top: 12px; }
  .drawer__hd::before { top: 30px; }
  .search { padding: 0; align-items: stretch; } .search__box { border-radius: 0; max-height: none; height: 100%; width: 100%; }
  .gal__main img { padding: 16px; }
  .mstick { display: flex; position: fixed; left: 0; right: 0; bottom: calc(64px + env(safe-area-inset-bottom)); z-index: 65; padding: 10px 14px; gap: 8px; background: #fff; border-top: 1px solid var(--line-2); box-shadow: 0 -10px 30px -15px rgba(13, 27, 42, .25); transform: translateY(120%); transition: transform .4s var(--ease); }
  .mstick.is-on { transform: none; }
  .mstick .btn { flex: 1; height: 48px; }
  .mstick .btn--wa { flex: none; width: 48px; padding: 0; }
  body.has-mstick .waf { display: none; }
  .fcta { padding: 32px 22px; } .fcta::before { width: 240px; height: 240px; border-width: 40px; right: -80px; top: -80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero h1 .ln > span, .hero__sub, .hero__search, .hero__cta, .hero__trust { transform: none; opacity: 1; }
  .rv { opacity: 1; transform: none; }
}
