/* ==========================================================================
   Gazioğlu Boya — site.css
   Mobile-first. No frameworks. Animations pause off-screen (see site.js).
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --brand: #3E04F7;
  --brand-600: #3300D4;
  --brand-700: #2800A8;
  --brand-900: #130A3D;
  --brand-50: #F1EDFF;
  --brand-100: #E2DAFF;
  --ink: #16122E;
  --text: #3A3655;
  --muted: #6B6785;
  --line: #E8E5F0;
  --line-2: #DAD6E6;
  --bg: #FBFAF7;
  --cream: #F5F1E9;
  --yellow: #FFC72C;
  --orange: #FF7A1A;
  --red: #F2362B;
  --green: #12B76A;
  --teal: #00B4D8;
  --pink: #F0147D;
  --violet: #8B3DFF;
  --wa: #25D366;
  --wa-600: #1DAA52;
  --wa-ink: #0A7A3B;
  --sh-s: 0 1px 2px rgba(22, 18, 46, .05), 0 4px 14px -6px rgba(22, 18, 46, .12);
  --sh: 0 18px 44px -22px rgba(22, 18, 46, .3), 0 2px 6px rgba(22, 18, 46, .05);
  --sh-l: 0 40px 80px -40px rgba(40, 0, 168, .45), 0 12px 30px -18px rgba(22, 18, 46, .3);
  --ease: cubic-bezier(.22, .8, .2, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --container: 1220px;
  --gutter: clamp(16px, 4.2vw, 40px);
  --hdr: 68px;
  --dock-space: 0px;
}
@media (max-width: 1079px) {
  :root { --dock-space: calc(84px + env(safe-area-inset-bottom)); --hdr: 64px; }
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr) + 16px); }
body {
  margin: 0; min-height: 100vh;
  font: 400 1rem/1.62 var(--font);
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: var(--dock-space);
}
@supports (overflow: clip) { body { overflow-x: clip; } }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-weight: 800; letter-spacing: -.032em; line-height: 1.06; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd { margin: 0; }
table { border-collapse: collapse; }
b, strong { font-weight: 750; }
::selection { background: var(--brand); color: #fff; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 10px; }
[hidden] { display: none !important; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.i { width: 1.25em; height: 1.25em; flex: none; }
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.skip { position: fixed; left: 12px; top: -64px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 12px; font-weight: 700; transition: top .2s; }
.skip:focus { top: 12px; }
.link { white-space: nowrap; color: var(--brand); font-weight: 700; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; text-decoration-color: rgba(62, 4, 247, .35); }
.grad-text { background: linear-gradient(90deg, #FFC72C, #FF7A1A 35%, #F0147D 65%, #B18CFF); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* painted highlight under words */
.u-mark {
  --m: 62, 4, 247;
  background-image: linear-gradient(transparent 60%, rgba(var(--m), .2) 60%, rgba(var(--m), .2) 92%, transparent 92%);
  background-repeat: no-repeat; background-size: 100% 100%;
  padding: 0 .05em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.js .rv .u-mark { background-size: 0% 100%; transition: background-size 1.1s var(--ease) .35s; }
.js .rv.is-in .u-mark { background-size: 100% 100%; }
.u-mark--green { --m: 18, 183, 106; }
.u-mark--orange { --m: 255, 122, 26; }
.u-mark--pink { --m: 240, 20, 125; }
.u-mark--teal { --m: 0, 180, 216; }
.u-mark--yellow { --m: 255, 180, 0; }
.u-mark--violet { --m: 139, 61, 255; }

/* ---------- 3. Buttons ---------- */
.btn {
  --h: 54px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: var(--h); padding: .7rem 1.35rem; border-radius: 999px;
  font-weight: 750; font-size: 1rem; line-height: 1.1; letter-spacing: -.01em; white-space: nowrap;
  isolation: isolate; overflow: hidden; cursor: pointer; user-select: none; touch-action: manipulation;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s;
}
.btn .i { width: 1.28em; height: 1.28em; }
.btn:active { transform: scale(.965); }
.btn--sm { --h: 44px; padding: .55rem 1.05rem; font-size: .94rem; gap: .45rem; }
.btn--lg { --h: 60px; padding: .8rem 1.6rem; font-size: 1.05rem; }
.btn--xl { --h: 68px; padding: .85rem 1.75rem .85rem 1.3rem; font-size: 1.1rem; border-radius: 22px; gap: .8rem; }
.btn--xl .i { width: 1.45em; height: 1.45em; }
.btn--block { width: 100%; }
.btn__txt { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; text-align: left; }
.btn__txt small { font-size: .76rem; font-weight: 600; opacity: .85; letter-spacing: 0; }
.btn--call { background: var(--brand); color: #fff; box-shadow: 0 14px 30px -14px rgba(62, 4, 247, .85), inset 0 -3px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .18); }
.btn--dir { background: var(--yellow); color: var(--ink); box-shadow: 0 14px 30px -16px rgba(214, 150, 0, .9), inset 0 -3px 0 rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .5); }
.btn--wa { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-2), var(--sh-s); }
.btn--wa .i { color: var(--wa-600); }
.btn--wa-solid { background: var(--wa); color: #05361A; box-shadow: 0 14px 30px -16px rgba(37, 211, 102, .9), inset 0 -3px 0 rgba(0, 0, 0, .12); }
.btn--light { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn--white { background: #fff; color: var(--brand-700); box-shadow: 0 14px 30px -16px rgba(0, 0, 0, .5); }
.btn--glass { background: rgba(255, 255, 255, .14); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .38); }
@media (hover: hover) {
  .btn--call:hover { background: var(--brand-600); transform: translateY(-2px); }
  .btn--dir:hover { background: #FFD24F; transform: translateY(-2px); }
  .btn--wa:hover, .btn--light:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--ink), var(--sh-s); }
  .btn--wa-solid:hover { background: #3BE07B; transform: translateY(-2px); }
  .btn--white:hover { transform: translateY(-2px); }
  .btn--glass:hover { background: rgba(255, 255, 255, .22); }
}
.btn--shine::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .45) 50%, transparent 65%);
  transform: translateX(-110%); animation: shine 5.5s var(--ease) 1.8s infinite;
}
@keyframes shine { 0%, 70% { transform: translateX(-110%); } 100% { transform: translateX(110%); } }

/* paint droplets burst on tap (spawned by JS) */
.splash { position: fixed; left: 0; top: 0; z-index: 95; width: var(--s); height: var(--s); margin: calc(var(--s) / -2) 0 0 calc(var(--s) / -2); border-radius: 50% 50% 50% 50% / 60% 60% 45% 45%; background: var(--c); pointer-events: none; animation: splash .75s var(--ease) forwards; }
@keyframes splash {
  from { transform: translate(var(--x), var(--y)) scale(.5); opacity: .95; }
  to { transform: translate(calc(var(--x) + var(--dx)), calc(var(--y) + var(--dy))) scale(1); opacity: 0; }
}

/* ---------- 4. Header / nav / menu ---------- */
.progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 80; pointer-events: none; }
.progress span { display: block; height: 100%; transform-origin: 0 50%; transform: scaleX(var(--p, 0)); background: linear-gradient(90deg, #3E04F7, #8B3DFF, #F0147D, #FF7A1A, #FFC72C, #12B76A, #00B4D8); }

.hdr { position: fixed; inset: 0 0 auto; z-index: 70; height: var(--hdr); transition: transform .4s var(--ease), background-color .3s, box-shadow .3s; }
.hdr__in { height: 100%; display: flex; align-items: center; gap: 14px; }
.hdr.is-solid, body.menu-open .hdr { background: rgba(251, 250, 247, .86); -webkit-backdrop-filter: saturate(1.8) blur(16px); backdrop-filter: saturate(1.8) blur(16px); box-shadow: 0 1px 0 rgba(22, 18, 46, .07), 0 10px 30px -20px rgba(22, 18, 46, .3); }
.hdr.is-hidden { transform: translateY(-105%); }
body.menu-open .hdr { transform: none; }

.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand__logo { width: 62px; height: auto; flex: none; overflow: visible; }
.brand__txt { display: flex; flex-direction: column; min-width: 0; }
.brand__name { font-weight: 800; color: var(--ink); font-size: 1.06rem; letter-spacing: -.025em; line-height: 1.15; }
.brand__status, .brand__sub { font-size: .76rem; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 6px; white-space: nowrap; min-width: 0; }
.brand__status span { overflow: hidden; text-overflow: ellipsis; }
.logo .logo-dot { transform-box: fill-box; transform-origin: 50% 100%; }
.js .hdr .logo .logo-dot { animation: dotdrop 1s var(--spring) .25s both; }
@keyframes dotdrop { 0% { transform: translateY(-90%) scale(.6); opacity: 0; } 60% { transform: translateY(6%) scale(1.08, .9); opacity: 1; } 100% { transform: none; opacity: 1; } }

.nav { display: none; margin-left: auto; gap: 2px; }
.nav a { padding: 9px 12px; border-radius: 999px; font-weight: 650; font-size: .93rem; color: var(--ink); transition: background-color .2s, color .2s; white-space: nowrap; }
.nav a:hover { background: var(--brand-50); color: var(--brand); }
.hdr__ctas { display: none; gap: 8px; margin-left: 6px; }
.burger { margin-left: auto; width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; background: #fff; box-shadow: inset 0 0 0 1.5px var(--line-2), var(--sh-s); color: var(--ink); }
.burger .i { width: 22px; height: 22px; grid-area: 1 / 1; transition: transform .3s var(--ease), opacity .2s; }
.burger .i-close { opacity: 0; transform: rotate(-90deg) scale(.6); }
.burger[aria-expanded="true"] .i-open { opacity: 0; transform: rotate(90deg) scale(.6); }
.burger[aria-expanded="true"] .i-close { opacity: 1; transform: none; }
@media (min-width: 1080px) {
  .nav, .hdr__ctas { display: flex; }
  .burger { display: none; }
  .brand__logo { width: 68px; }
  .hdr .brand { flex: none; }
}
@media (min-width: 1080px) and (max-width: 1359px) {
  .nav a[href="/#markalar"], .nav a[href="/#epoksi-hesap"] { display: none; }
}

.dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none; }
.dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: inherit; animation: ping 2.2s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 80%, 100% { transform: scale(2.8); opacity: 0; } }
.dot--lg { width: 12px; height: 12px; }
html[data-open="false"] .dot { background: #E5484D; }
html[data-open="false"] .dot::after { animation: none; opacity: 0; }

.menu {
  position: fixed; inset: 0; z-index: 65; display: flex; flex-direction: column; gap: 18px;
  padding: calc(var(--hdr) + 10px) var(--gutter) calc(20px + env(safe-area-inset-bottom));
  background: var(--bg); overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .3s var(--ease), transform .4s var(--ease), visibility 0s .4s;
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .3s var(--ease), transform .4s var(--ease), visibility 0s; }
.menu__links a { display: flex; align-items: center; justify-content: space-between; padding: 13px 2px; border-bottom: 1px solid var(--line); font-size: 1.42rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.menu__links a .i { color: var(--brand); width: 22px; height: 22px; }
.menu.is-open .menu__links a { animation: menuIn .5s var(--ease) both; }
.menu.is-open .menu__links a:nth-child(2) { animation-delay: .04s; }
.menu.is-open .menu__links a:nth-child(3) { animation-delay: .08s; }
.menu.is-open .menu__links a:nth-child(4) { animation-delay: .12s; }
.menu.is-open .menu__links a:nth-child(5) { animation-delay: .16s; }
.menu.is-open .menu__links a:nth-child(6) { animation-delay: .2s; }
@keyframes menuIn { from { opacity: 0; transform: translateY(14px); } }
.menu__sub { display: flex; flex-wrap: wrap; gap: 8px; }
.menu__sub a { padding: 8px 14px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1.5px var(--line); font-weight: 650; font-size: .9rem; color: var(--ink); }
.menu__foot { margin-top: auto; display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
.menu__status { display: flex; align-items: center; gap: 8px; font-weight: 650; color: var(--muted); font-size: .9rem; }
.menu__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
body.menu-open { overflow: hidden; }
@media (min-width: 1080px) { .menu { display: none; } }

/* ---------- 5. Hero ---------- */
.hero { --hero-c: #2271B3; --hero-ink: #fff; position: relative; padding: calc(var(--hdr) + 16px) 0 28px; isolation: isolate; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; will-change: transform; }
.blob--1 { width: 760px; height: 760px; right: -260px; top: -300px; background: radial-gradient(closest-side, rgba(62, 4, 247, .2), rgba(62, 4, 247, 0)); animation: drift1 22s var(--ease-io) infinite alternate; }
.blob--2 { width: 560px; height: 560px; left: -240px; top: 180px; background: radial-gradient(closest-side, rgba(0, 180, 216, .17), rgba(0, 180, 216, 0)); animation: drift2 26s var(--ease-io) infinite alternate; }
.blob--3 { width: 600px; height: 600px; right: 6%; bottom: -330px; background: radial-gradient(closest-side, rgba(240, 20, 125, .14), rgba(240, 20, 125, 0)); animation: drift3 24s var(--ease-io) infinite alternate; }
.blob--4 { width: 460px; height: 460px; left: 28%; top: -230px; background: radial-gradient(closest-side, rgba(255, 199, 44, .26), rgba(255, 199, 44, 0)); animation: drift2 20s var(--ease-io) infinite alternate-reverse; }
@keyframes drift1 { to { transform: translate(-80px, 60px) scale(1.08); } }
@keyframes drift2 { to { transform: translate(70px, -40px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-60px, -50px) scale(.95); } }
.hero__dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(22, 18, 46, .1) 1.1px, transparent 1.4px); background-size: 22px 22px; -webkit-mask-image: radial-gradient(ellipse 70% 60% at 72% 42%, #000 5%, transparent 72%); mask-image: radial-gradient(ellipse 70% 60% at 72% 42%, #000 5%, transparent 72%); }
.hero__in { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; align-items: center; }
@media (min-width: 1080px) {
  .hero { padding: calc(var(--hdr) + 40px) 0 56px; min-height: min(920px, 100svh); display: flex; align-items: center; }
  .hero__in { grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: 44px; }
}

.hero__loc { display: inline-flex; align-items: center; gap: 8px; max-width: 100%; padding: 5px 13px 5px 5px; border-radius: 999px; background: rgba(255, 255, 255, .82); box-shadow: inset 0 0 0 1px var(--line), var(--sh-s); font-size: .84rem; font-weight: 700; color: var(--ink); transition: transform .25s var(--ease), box-shadow .25s; }
.hero__loc:hover { transform: translateY(-1px); box-shadow: inset 0 0 0 1px var(--line-2), var(--sh); }
.hero__locicon { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--ink); flex: none; }
.hero__locicon .i { width: 16px; height: 16px; }
.hero__loctxt { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero__open { display: inline-flex; align-items: center; gap: 6px; padding-left: 10px; border-left: 1px solid var(--line-2); color: var(--muted); font-weight: 650; white-space: nowrap; }
@media (max-width: 719px) { .hero__open { display: none; } }

.hero__title { margin-top: 18px; font-size: clamp(2.9rem, 11.4vw, 5.7rem); line-height: .98; letter-spacing: -.048em; }
.hero__kicker { display: block; margin-bottom: 14px; font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--brand); line-height: 1.25; }
.hero__line { display: block; }
.paint-word { position: relative; display: inline-block; padding: 0 .14em .02em; margin: 0 -.02em 0 -.14em; color: var(--hero-ink, #fff); isolation: isolate; transition: color .45s var(--ease); }
.paint-word__bg, .paint-word__bg2 {
  position: absolute; inset: .1em -.04em -.04em -.02em; z-index: -1;
  background: var(--hero-c, #2271B3);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 120' preserveAspectRatio='none'%3E%3Cpath d='M16 28C44 14 120 9 200 11c70 1 140-2 182 7 12 3 14 11 6 16l8 6c6 6-2 10-10 10l14 8c5 6-3 12-11 12l8 10c4 8-6 14-18 14-46 10-126 14-196 12-70 0-130 4-158-6-14-4-18-16-12-26-6-8-4-18 2-24-8-8-6-16 2-22z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 120' preserveAspectRatio='none'%3E%3Cpath d='M16 28C44 14 120 9 200 11c70 1 140-2 182 7 12 3 14 11 6 16l8 6c6 6-2 10-10 10l14 8c5 6-3 12-11 12l8 10c4 8-6 14-18 14-46 10-126 14-196 12-70 0-130 4-158-6-14-4-18-16-12-26-6-8-4-18 2-24-8-8-6-16 2-22z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.paint-word__bg2 { opacity: 0; }
.paint-word__bg2.is-wipe { opacity: 1; animation: wipe .75s var(--ease) both; }
@keyframes wipe { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
.paint-word__txt { position: relative; }

.hero__lead { margin-top: 18px; max-width: 34em; font-size: clamp(1.02rem, 1.45vw, 1.16rem); line-height: 1.62; }
.hero__lead strong { color: var(--ink); }
.hero__ctas { margin-top: 24px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
@media (max-width: 559px) { .hero__ctas .btn { width: 100%; justify-content: flex-start; } }
@media (min-width: 560px) { .hero__ctas { grid-template-columns: none; grid-auto-flow: column; justify-content: start; } }
.hero__wa { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 6px 0; font-weight: 700; color: var(--ink); font-size: .95rem; border-bottom: 2px solid rgba(37, 211, 102, .55); }
.hero__wa .i:first-child { color: var(--wa-600); }
.hero__wa .i-arr { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.hero__wa:hover .i-arr { transform: translateX(4px); }
.hero__trust { margin-top: 26px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.hero__trust li { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 16px; background: rgba(255, 255, 255, .72); box-shadow: inset 0 0 0 1px var(--line); }
.hero__trust b { font-size: 1.35rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1; display: flex; align-items: center; font-variant-numeric: tabular-nums; }
.hero__trust b .i { width: 24px; height: 24px; color: var(--green); }
.hero__trust li > span { font-size: .8rem; font-weight: 650; color: var(--muted); line-height: 1.25; }
@media (min-width: 720px) {
  .hero__trust { grid-template-columns: repeat(4, auto); justify-content: start; gap: 28px; }
  .hero__trust li { background: none; box-shadow: none; padding: 0; flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero__trust b { font-size: 1.7rem; }
}

/* hero "colour lab" visual */
.hero__visual { position: relative; }
.lab { position: relative; width: 100%; max-width: 580px; margin-inline: auto; aspect-ratio: 1 / .92; }
@media (max-width: 1079px) { .lab { max-width: 540px; aspect-ratio: 1 / .84; } }
.lab__glow { position: absolute; inset: 6% 4% 4% 8%; border-radius: 45%; background: radial-gradient(closest-side, rgba(62, 4, 247, .13), transparent); }
.lab__card { position: absolute; left: 1%; top: 8%; width: 60%; height: 76%; padding: clamp(10px, 2.2vw, 16px); border-radius: clamp(16px, 3vw, 24px); background: #fff; box-shadow: var(--sh-l), inset 0 0 0 1px rgba(22, 18, 46, .05); transform: rotate(-5deg); display: flex; flex-direction: column; gap: clamp(8px, 1.6vw, 12px); z-index: 1; }
.lab__cardhead { display: flex; justify-content: space-between; align-items: center; font-size: clamp(.6rem, 1.4vw, .72rem); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.lab__cardno b { color: var(--ink); }
.lab__swatch { position: relative; flex: 1; border-radius: clamp(10px, 2vw, 14px); background: repeating-linear-gradient(45deg, #F5F3F9 0 10px, #EFECF5 10px 20px); box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; }
.lab__paint { position: absolute; inset: 0; width: 100%; height: 100%; }
.lab__ok { position: absolute; left: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px 6px 7px; border-radius: 999px; background: rgba(255, 255, 255, .94); color: var(--ink); font-size: clamp(.64rem, 1.5vw, .76rem); font-weight: 800; box-shadow: var(--sh-s); opacity: 0; transform: translateY(8px) scale(.9); transition: opacity .35s var(--ease), transform .45s var(--spring); }
.lab__ok .i { width: 17px; height: 17px; padding: 3px; color: #fff; background: var(--green); border-radius: 50%; }
.lab.is-ok .lab__ok { opacity: 1; transform: none; }
.lab__cardmeta { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; min-height: 1.6em; }
.lab__code { font-size: clamp(1rem, 2.6vw, 1.3rem); font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.lab__name { font-size: clamp(.74rem, 1.8vw, .88rem); font-weight: 650; color: var(--muted); }
.lab__strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.lab__strip i { height: clamp(7px, 1.4vw, 10px); border-radius: 3px; transition: background-color .6s var(--ease); }
.lab__strip i:nth-child(1) { background: color-mix(in srgb, var(--hero-c) 18%, #fff); }
.lab__strip i:nth-child(2) { background: color-mix(in srgb, var(--hero-c) 34%, #fff); }
.lab__strip i:nth-child(3) { background: color-mix(in srgb, var(--hero-c) 52%, #fff); }
.lab__strip i:nth-child(4) { background: color-mix(in srgb, var(--hero-c) 72%, #fff); }
.lab__strip i:nth-child(5) { background: var(--hero-c); }
.lab__strip i:nth-child(6) { background: color-mix(in srgb, var(--hero-c) 72%, #000); }
.lab__mist { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.lab__can { position: absolute; right: 1%; bottom: 0; height: 93%; width: auto; z-index: 3; overflow: visible; transform: rotate(-7deg); transform-origin: 60% 92%; }
.lab__can.is-shake { animation: canshake .5s var(--ease-io); }
@keyframes canshake { 0%, 100% { transform: rotate(-7deg); } 20% { transform: rotate(-14deg) translateY(-7px); } 40% { transform: rotate(-1deg) translateY(-2px); } 60% { transform: rotate(-12deg) translateY(-5px); } 80% { transform: rotate(-5deg); } }
.can__act { transition: transform .15s; }
.lab.is-spraying .can__act { transform: translateY(3px); }
.paint-fill { fill: var(--hero-c, #2271B3); transition: fill .5s var(--ease); }
.can__brand { font: 800 13px var(--font); letter-spacing: .24em; fill: var(--hero-ink, #fff); transition: fill .45s; }
.can__type { font: 700 11px var(--font); letter-spacing: .2em; fill: var(--hero-ink, #fff); opacity: .85; transition: fill .45s; }
.can__code { font: 800 25px var(--font); letter-spacing: -.02em; fill: var(--ink); }
.can__name { font: 650 14px var(--font); fill: #6B6785; }
.can__ml { font: 600 11px var(--font); fill: #9C98B1; letter-spacing: .08em; }
.lab__chip { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px 8px 10px; border-radius: 999px; background: #fff; box-shadow: var(--sh); font-size: .8rem; font-weight: 750; color: var(--ink); white-space: nowrap; animation: float 6s var(--ease-io) infinite; }
.lab__chip .i { width: 18px; height: 18px; color: var(--brand); }
.lab__chip--a { left: 30%; top: -1%; animation-delay: -1s; }
.lab__chip--b { left: -2%; bottom: 13%; animation-delay: -3s; }
.lab__chip--b .i { color: var(--pink); }
.lab__chip--c { left: 36%; bottom: 1%; animation-delay: -4.5s; }
.lab__chip--c .i { color: var(--green); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 559px) {
  .lab__chip { font-size: .7rem; padding: 6px 10px 6px 8px; gap: 5px; }
  .lab__chip .i { width: 14px; height: 14px; }
  .lab__chip--a { left: 26%; top: -2%; }
}

/* ---------- 6. Ribbon ---------- */
.ribbon { position: relative; overflow: hidden; pointer-events: none; margin-top: -1px; } /* sits right on the hero's gradient: no pale strip in between */
.ribbon__band { display: flex; overflow: hidden; }
.ribbon__band--b { padding: 14px 0; background: #F3E5BA; color: #5A4A1E; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .06); }
.ribbon__track { display: flex; align-items: center; gap: 24px; width: max-content; padding-right: 24px; animation: marquee 44s linear infinite; font-weight: 800; font-size: .86rem; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.ribbon__track i { font-style: normal; color: #E0A500; font-size: .6em; }
@media (min-width: 720px) { .ribbon__band--b { padding: 16px 0; } .ribbon__track { font-size: .92rem; gap: 30px; padding-right: 30px; } }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 7. Sections ---------- */
.sec { position: relative; padding-block: clamp(56px, 7.5vw, 104px); }
.sec-head { max-width: 780px; margin-bottom: clamp(26px, 4vw, 48px); }
.sec-head h2 { font-size: clamp(2.15rem, 6.2vw, 3.6rem); }
.sec-head p { margin-top: 14px; font-size: clamp(1rem, 1.4vw, 1.14rem); color: var(--muted); max-width: 40em; }
.sec-head--light h2 { color: #fff; }
.sec-head--light p { color: #CFC9EC; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; padding: 6px 12px 6px 10px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.eyebrow i { width: 9px; height: 9px; border-radius: 50%; background: var(--c); }
.eyebrow--light { background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16); color: #fff; }

/* ---------- 8. Services ---------- */
.svc-sec { padding-top: clamp(28px, 5vw, 64px); }
.svc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 760px) { .svc-grid { gap: 18px; } }
@media (min-width: 1080px) { .svc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }
.svc { position: relative; display: flex; flex-direction: column; border-radius: 24px; background: #fff; box-shadow: var(--sh-s), inset 0 0 0 1px rgba(22, 18, 46, .05); overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.svc__art { position: relative; aspect-ratio: 320 / 220; background: var(--tint); overflow: hidden; }
.svc__art .il { width: 100%; height: 100%; }
.svc__body { display: flex; flex-direction: column; gap: 6px; padding: 12px 13px 14px; flex: 1; }
.svc__tag { align-self: flex-start; font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); background: var(--brand-50); padding: 4px 8px; border-radius: 7px; }
.svc__title { font-size: 1rem; letter-spacing: -.02em; line-height: 1.2; }
.svc__desc { font-size: .84rem; line-height: 1.48; color: var(--muted); }
.svc__more { margin-top: auto; padding-top: 6px; display: inline-flex; align-items: center; gap: 6px; font-weight: 750; font-size: .88rem; color: var(--brand); }
.svc__more .i { width: 1em; height: 1em; transition: transform .3s var(--ease); }
@media (max-width: 759px) {
  .svc__tag { display: none; }
  .svc__desc { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
}
@media (min-width: 760px) {
  .svc__body { padding: 18px 20px 20px; gap: 8px; }
  .svc__title { font-size: 1.2rem; }
  .svc__desc { font-size: .9rem; }
}
@media (hover: hover) {
  .svc:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(22, 18, 46, .42), inset 0 0 0 1px rgba(22, 18, 46, .05); }
  .svc:hover .svc__more .i { transform: translateX(4px); }
}
.svc-help { margin-top: 18px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 16px 18px; border-radius: 22px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.svc-help p { flex: 1 1 260px; font-size: .95rem; }
.svc-help b { color: var(--ink); }
.svc-help__icon { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: var(--yellow); color: var(--ink); flex: none; }

/* illustration text */
.il-t { font: 800 11px var(--font); letter-spacing: .14em; fill: var(--ink); }
.il-t--xs { font-size: 8px; letter-spacing: .12em; }
.il-t--muted { font-weight: 650; letter-spacing: .02em; fill: var(--muted); }

/* --- oto: scratch repair --- */
.io-scratch { stroke-dasharray: 100 100; animation: io-erase 6s var(--ease-io) infinite; }
@keyframes io-erase { 0%, 16% { stroke-dashoffset: 0; opacity: 1; } 46%, 88% { stroke-dashoffset: -100; opacity: 1; } 89% { stroke-dashoffset: 0; opacity: 0; } 100% { stroke-dashoffset: 0; opacity: 1; } }
.io-pen { animation: io-pen 6s var(--ease-io) infinite; }
@keyframes io-pen { 0% { transform: translate(-26px, -30px); opacity: 0; } 10%, 16% { transform: translate(0, 0); opacity: 1; } 46% { transform: translate(49px, -2px); opacity: 1; } 56%, 100% { transform: translate(80px, -34px); opacity: 0; } }
.io-spark { transform-origin: 0 0; animation: io-spark 6s var(--ease) infinite; }
@keyframes io-spark { 0%, 44% { transform: scale(0) rotate(0); opacity: 0; } 52% { transform: scale(1.2) rotate(45deg); opacity: 1; } 64%, 100% { transform: scale(0) rotate(90deg); opacity: 0; } }
.io-sweep { animation: io-sweep 6s var(--ease-io) infinite; }
@keyframes io-sweep { 0%, 56% { transform: translateX(0); } 76%, 100% { transform: translateX(430px); } }

/* --- spray: can filling --- */
.isp-paint { fill: #F2362B; animation: isp-color 12s steps(1, end) infinite; }
@keyframes isp-color { 0% { fill: #F2362B; } 25% { fill: #2F6BFF; } 50% { fill: #12B76A; } 75% { fill: #FFB020; } 100% { fill: #F2362B; } }
.isp-level { animation: isp-fill 3s var(--ease-io) infinite; }
@keyframes isp-fill { 0%, 8% { transform: translateY(40px); opacity: 1; } 70%, 90% { transform: translateY(0); opacity: 1; } 97% { transform: translateY(0); opacity: 0; } 98%, 100% { transform: translateY(40px); opacity: 0; } }
.isp-wave, .isp-wave2 { animation: isp-wave 1.2s linear infinite, isp-color 12s steps(1, end) infinite; }
.isp-wave2 { animation-duration: 2.4s, 12s; }
@keyframes isp-wave { to { transform: translateX(-24px); } }
.isp-drop { animation: isp-drop .8s ease-in infinite, isp-color 12s steps(1, end) infinite; }
.isp-drop2 { animation-delay: -.4s, 0s; }
@keyframes isp-drop { 0% { transform: translateY(-6px); opacity: 0; } 25% { opacity: 1; } 100% { transform: translateY(8px); opacity: 0; } }
.isp-ok { transform-origin: 238px 110px; animation: isp-ok 3s var(--spring) infinite; }
@keyframes isp-ok { 0%, 68% { transform: scale(0); } 76%, 92% { transform: scale(1); } 100% { transform: scale(0); } }
.isp-ring { animation: isp-ring 12s steps(1, end) infinite; }
@keyframes isp-ring { 0% { transform: translateY(0); } 25% { transform: translateY(34px); } 50% { transform: translateY(68px); } 75% { transform: translateY(102px); } 100% { transform: translateY(0); } }

/* --- epoxy: roller coating --- */
.ie-coat { stroke-dasharray: 100 100; animation: ie-coat 6s linear infinite; }
.ie-coatc { stroke: #5D7D8C; animation: ie-coat 6s linear infinite, ie-stroke 18s steps(1, end) infinite; }
@keyframes ie-coat { 0%, 8% { stroke-dashoffset: 100; opacity: 1; } 62%, 92% { stroke-dashoffset: 0; opacity: 1; } 99% { stroke-dashoffset: 0; opacity: 0; } 100% { stroke-dashoffset: 100; opacity: 0; } }
@keyframes ie-stroke { 0% { stroke: #5D7D8C; } 33.333% { stroke: #3E8E6A; } 66.666% { stroke: #3B6FB6; } 100% { stroke: #5D7D8C; } }
.ie-rollc { fill: #5D7D8C; animation: ie-fill 18s steps(1, end) infinite; }
@keyframes ie-fill { 0% { fill: #5D7D8C; } 33.333% { fill: #3E8E6A; } 66.666% { fill: #3B6FB6; } 100% { fill: #5D7D8C; } }
.ie-roller { transform-origin: 160px 96px; animation: ie-roll 6s linear infinite; }
@keyframes ie-roll { 0% { transform: translateY(-16px) scale(.6); opacity: 0; } 8% { transform: translateY(0) scale(.62); opacity: 1; } 62% { transform: translateY(124px) scale(1.12); opacity: 1; } 70%, 100% { transform: translateY(150px) scale(1.2); opacity: 0; } }
.ie-lines { animation: ie-lines 6s ease infinite; }
@keyframes ie-lines { 0%, 62% { opacity: 0; } 72%, 92% { opacity: 1; } 99%, 100% { opacity: 0; } }

/* --- mix: colour matching --- */
.im-sample { fill: #C8553D; animation: im-sample 15s steps(1, end) infinite; }
@keyframes im-sample { 0% { fill: #C8553D; } 33.333% { fill: #1F8A8A; } 66.666% { fill: #D9A21B; } 100% { fill: #C8553D; } }
.im-mix { fill: #C8553D; animation: im-mix 15s linear infinite; }
@keyframes im-mix { 0% { fill: #BDBACB; } 13% { fill: #B97A69; } 21%, 33.2% { fill: #C8553D; } 33.34% { fill: #BDBACB; } 46.3% { fill: #4D928B; } 54.3%, 66.5% { fill: #1F8A8A; } 66.67% { fill: #BDBACB; } 79.6% { fill: #CFAE5E; } 87.6%, 100% { fill: #D9A21B; } }
.im-bar { transform-box: fill-box; transform-origin: 0 50%; animation: im-bar 5s var(--ease-io) infinite; }
@keyframes im-bar { 0%, 5% { transform: scaleX(0); opacity: 1; } 63%, 95% { transform: scaleX(1); opacity: 1; } 100% { transform: scaleX(1); opacity: 0; } }
.im-de { animation: im-de 5s ease infinite; }
@keyframes im-de { 0%, 62% { opacity: 0; } 68%, 94% { opacity: 1; } 100% { opacity: 0; } }
.im-ok { transform-origin: 278px 38px; animation: im-ok 5s var(--spring) infinite; }
@keyframes im-ok { 0%, 62% { transform: scale(0); } 70%, 94% { transform: scale(1); } 100% { transform: scale(0); } }
.im-beam { animation: im-beam 5s var(--ease-io) infinite; }
@keyframes im-beam { 0%, 4% { transform: translateX(0); opacity: 0; } 8% { opacity: .85; } 40% { transform: translateX(92px); opacity: .85; } 44%, 100% { transform: translateX(92px); opacity: 0; } }
.im-a { animation: im-a 1.2s ease-in-out infinite; }
.im-a:nth-child(2) { animation-delay: .18s; }
.im-a:nth-child(3) { animation-delay: .36s; }
@keyframes im-a { 0%, 100% { opacity: .2; } 50% { opacity: 1; } }

/* --- wood: varnish --- */
.iw-v { stroke-dasharray: 100 100; stroke-opacity: .78; }
.iw-v1 { animation: iw-v1 7s linear infinite; }
.iw-v2 { animation: iw-v2 7s linear infinite; }
.iw-v3 { animation: iw-v3 7s linear infinite; }
@keyframes iw-v1 { 0%, 5% { stroke-dashoffset: 100; opacity: 1; } 25%, 93% { stroke-dashoffset: 0; opacity: 1; } 99% { stroke-dashoffset: 0; opacity: 0; } 100% { stroke-dashoffset: 100; opacity: 0; } }
@keyframes iw-v2 { 0%, 30% { stroke-dashoffset: 100; opacity: 1; } 50%, 93% { stroke-dashoffset: 0; opacity: 1; } 99% { stroke-dashoffset: 0; opacity: 0; } 100% { stroke-dashoffset: 100; opacity: 0; } }
@keyframes iw-v3 { 0%, 55% { stroke-dashoffset: 100; opacity: 1; } 75%, 93% { stroke-dashoffset: 0; opacity: 1; } 99% { stroke-dashoffset: 0; opacity: 0; } 100% { stroke-dashoffset: 100; opacity: 0; } }
.iw-brush { animation: iw-brush 7s linear infinite; }
@keyframes iw-brush { 0% { transform: translate(0, -24px); opacity: 0; } 5% { transform: translate(0, 0); opacity: 1; } 25% { transform: translate(0, 158px); } 28% { transform: translate(82px, -12px); } 30% { transform: translate(82px, 0); } 50% { transform: translate(82px, 158px); } 53% { transform: translate(164px, -12px); } 55% { transform: translate(164px, 0); } 75% { transform: translate(164px, 158px); opacity: 1; } 82%, 100% { transform: translate(200px, 120px); opacity: 0; } }
.iw-shine { animation: iw-shine 7s var(--ease-io) infinite; }
@keyframes iw-shine { 0%, 76% { transform: translateX(0); } 90%, 100% { transform: translateX(430px); } }

/* --- house: facade roller --- */
.ih-paint { stroke: #8FC3E8; stroke-dasharray: 100 100; animation: ih-paint 6s linear infinite, ih-color 18s steps(1, end) infinite; }
@keyframes ih-paint { 0%, 8% { stroke-dashoffset: 100; opacity: 1; } 62%, 92% { stroke-dashoffset: 0; opacity: 1; } 99% { stroke-dashoffset: 0; opacity: 0; } 100% { stroke-dashoffset: 100; opacity: 0; } }
@keyframes ih-color { 0% { stroke: #8FC3E8; } 33.333% { stroke: #E7916F; } 66.666% { stroke: #A7C49A; } 100% { stroke: #8FC3E8; } }
.ih-rollc { fill: #8FC3E8; animation: ih-rfill 18s steps(1, end) infinite; }
@keyframes ih-rfill { 0% { fill: #8FC3E8; } 33.333% { fill: #E7916F; } 66.666% { fill: #A7C49A; } 100% { fill: #8FC3E8; } }
.ih-roller { animation: ih-roll 6s linear infinite; }
@keyframes ih-roll { 0% { transform: translateX(0); opacity: 0; } 6%, 8% { transform: translateX(0); opacity: 1; } 62% { transform: translateX(172px); opacity: 1; } 70%, 100% { transform: translateX(190px); opacity: 0; } }
.ih-bob { animation: ih-bob .6s var(--ease-io) infinite alternate; }
@keyframes ih-bob { from { transform: translateY(-24px); } to { transform: translateY(26px); } }
.ih-cloud { animation: ih-cloud 14s var(--ease-io) infinite alternate; }
@keyframes ih-cloud { to { transform: translateX(34px); } }

/* --- steel: primer + top coat --- */
.it-coat { stroke-dasharray: 100 100; }
.it-primer { animation: it-primer 8s linear infinite; }
@keyframes it-primer { 0%, 6% { stroke-dashoffset: 100; opacity: 1; } 38%, 93% { stroke-dashoffset: 0; opacity: 1; } 99% { stroke-dashoffset: 0; opacity: 0; } 100% { stroke-dashoffset: 100; opacity: 0; } }
.it-topc { stroke: #F2B600; animation: it-top 8s linear infinite, it-color 24s steps(1, end) infinite; }
@keyframes it-top { 0%, 46% { stroke-dashoffset: 100; opacity: 1; } 78%, 93% { stroke-dashoffset: 0; opacity: 1; } 99% { stroke-dashoffset: 0; opacity: 0; } 100% { stroke-dashoffset: 100; opacity: 0; } }
@keyframes it-color { 0% { stroke: #F2B600; } 33.333% { stroke: #2F5FB8; } 66.666% { stroke: #3C8C5A; } 100% { stroke: #F2B600; } }
.it-gun { animation: it-gun 8s linear infinite; }
@keyframes it-gun { 0%, 4% { transform: translate(0, 0); opacity: 0; } 6% { transform: translate(0, 0); opacity: 1; } 38% { transform: translate(136px, -34px); opacity: 1; } 41% { transform: translate(136px, -34px); opacity: 0; } 44% { transform: translate(0, 0); opacity: 0; } 46% { transform: translate(0, 0); opacity: 1; } 78% { transform: translate(136px, -34px); opacity: 1; } 82%, 100% { transform: translate(136px, -34px); opacity: 0; } }
.it-mistc { fill: #A34A33; animation: it-mistc 24s steps(1, end) infinite; }
@keyframes it-mistc { 0% { fill: #A34A33; } 14% { fill: #F2B600; } 33.333% { fill: #A34A33; } 47.33% { fill: #2F5FB8; } 66.666% { fill: #A34A33; } 80.66% { fill: #3C8C5A; } 100% { fill: #A34A33; } }
.it-mist { transform-origin: 0 20px; animation: it-mist .5s ease-in-out infinite alternate; }
@keyframes it-mist { from { transform: scale(.9); opacity: .65; } to { transform: scale(1.08); opacity: 1; } }

/* --- gun: equipment --- */
.ig-paintf { fill: #E0452E; animation: ig-color 10.8s steps(1, end) infinite; }
@keyframes ig-color { 0% { fill: #E0452E; } 33.333% { fill: #2F6BFF; } 66.666% { fill: #12B76A; } 100% { fill: #E0452E; } }
.ig-wave { animation: ig-wave 1.4s linear infinite, ig-color 10.8s steps(1, end) infinite; }
@keyframes ig-wave { to { transform: translateX(-20px); } }
.ig-trig { transform-origin: 152px 108px; animation: ig-trig 3.6s var(--ease-io) infinite; }
@keyframes ig-trig { 0%, 8% { transform: rotate(0); } 14%, 68% { transform: rotate(-14deg); } 76%, 100% { transform: rotate(0); } }
.ig-fan { animation: ig-fan 3.6s ease infinite; }
@keyframes ig-fan { 0%, 12% { opacity: 0; } 20%, 66% { opacity: 1; } 78%, 100% { opacity: 0; } }
.ig-d { animation: ig-d .9s linear infinite, ig-color 10.8s steps(1, end) infinite; }
.ig-d:nth-child(1) { --ty: -30px; animation-delay: -.1s, 0s; }
.ig-d:nth-child(2) { --ty: -12px; animation-delay: -.3s, 0s; }
.ig-d:nth-child(3) { --ty: 6px; animation-delay: -.5s, 0s; }
.ig-d:nth-child(4) { --ty: 22px; animation-delay: -.7s, 0s; }
.ig-d:nth-child(5) { --ty: 36px; animation-delay: -.2s, 0s; }
.ig-d:nth-child(6) { --ty: -40px; animation-delay: -.6s, 0s; }
@keyframes ig-d { from { transform: translate(0, 0); opacity: .95; } to { transform: translate(-74px, var(--ty)); opacity: 0; } }
.ig-acc { animation: float 5s var(--ease-io) infinite; }
.ig-acc2 { animation-delay: -1.6s; }
.ig-acc3 { animation-delay: -3.2s; }

/* ---------- 9. Colour studio ---------- */
.studio { background: radial-gradient(1000px 600px at 85% -10%, rgba(139, 61, 255, .42), transparent 60%), radial-gradient(900px 520px at -10% 105%, rgba(0, 180, 216, .26), transparent 60%), var(--brand-900); color: #D6D1EE; z-index: 2; }
.studio__drips { position: absolute; left: 0; right: 0; bottom: -35px; height: 36px; pointer-events: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 36'%3E%3Cpath fill='%23130A3D' d='M0 0h720v6c-18 0-22 16-34 16s-14-16-30-16H560c-14 0-15 26-28 26s-14-26-28-26H410c-14 0-16 12-30 12s-14-12-28-12H250c-14 0-15 20-28 20s-14-20-28-20H90c-14 0-16 10-28 10S48 6 34 6H0z'/%3E%3C/svg%3E") 0 0 / 720px 36px repeat-x; }
.studio__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 1080px) { .studio__grid { grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr); gap: 26px; align-items: start; } }
.stage { position: relative; padding: 8px; border-radius: 30px; background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03)); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1); }
.stage__tabs { display: flex; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(0, 0, 0, .28); }
.stage__tab { flex: 1; height: 42px; border-radius: 999px; display: flex; align-items: center; justify-content: center; gap: 6px; font-weight: 750; font-size: .9rem; color: #CFC9EA; transition: background-color .25s, color .25s; }
.stage__tab .i { width: 18px; height: 18px; }
.stage__tab[aria-selected="true"] { background: #fff; color: var(--ink); }
@media (max-width: 380px) { .stage__tab { font-size: .8rem; gap: 4px; } .stage__tab .i { width: 15px; height: 15px; } }
.stage__view { position: relative; margin-top: 8px; border-radius: 23px; overflow: hidden; background: radial-gradient(120% 90% at 50% 8%, #2C2170, #150D45); }
.stage__svg { width: 100%; height: auto; aspect-ratio: 560 / 400; }
.scene { opacity: 0; transform: scale(.96); transform-origin: 280px 200px; transition: opacity .45s var(--ease), transform .6s var(--ease); }
.scene.is-active { opacity: 1; transform: none; }
.pick-fill { fill: var(--pick); transition: fill .55s var(--ease); }
.pick-ink { fill: var(--pick-ink, #fff); transition: fill .4s; }
.st-float { animation: float 5s var(--ease-io) infinite; }
.st-float--2 { animation-delay: -2s; }
.st-float--3 { animation-delay: -3.5s; }
.stage__puff { position: absolute; left: 50%; top: 52%; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, var(--pick), transparent); opacity: 0; transform: translate(-50%, -50%) scale(.3); pointer-events: none; }
.stage__puff.is-go { animation: puff .8s var(--ease); }
@keyframes puff { 0% { opacity: .5; transform: translate(-50%, -50%) scale(.3); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.4); } }
.stage__note { display: flex; gap: 8px; align-items: flex-start; margin: 10px 8px 4px; font-size: .78rem; color: #A9A2D0; line-height: 1.45; }
.stage__note .i { width: 16px; height: 16px; margin-top: 1px; }
.picker { padding: 18px; border-radius: 30px; background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1); }
@media (min-width: 760px) { .picker { padding: 24px; } }
.readout { display: flex; align-items: center; gap: 14px; }
.readout__chip { width: 58px; height: 58px; border-radius: 18px; background: var(--pick); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .2), 0 12px 24px -10px rgba(0, 0, 0, .6); transition: background-color .5s var(--ease); flex: none; }
.readout__code { font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.1; }
.readout__name { font-size: .95rem; font-weight: 650; color: #CFC9EA; }
.swatches { margin-top: 16px; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
@media (min-width: 560px) { .swatches { gap: 10px; } }
.sw { position: relative; aspect-ratio: 1; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .2), 0 6px 14px -8px rgba(0, 0, 0, .7); transition: transform .25s var(--spring), box-shadow .25s; }
@media (hover: hover) { .sw:hover { transform: scale(1.1); } }
.sw[aria-checked="true"] { transform: scale(1.1); box-shadow: 0 0 0 3px var(--brand-900), 0 0 0 5.5px #fff, 0 10px 18px -8px rgba(0, 0, 0, .7); }
.sw[aria-checked="true"]::after { content: ""; position: absolute; inset: 34%; border-radius: 50%; background: var(--sw-ink, #fff); opacity: .9; }
.sw:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; border-radius: 50%; }
.picker__cta { margin-top: 18px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
.picker__cta .btn { white-space: normal; text-align: center; }
.custom { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .12); }
.custom label { display: block; font-weight: 750; color: #fff; font-size: .95rem; margin-bottom: 8px; }
.custom__row { display: flex; gap: 8px; }
.custom input { flex: 1; min-width: 0; height: 48px; padding: 0 14px; border-radius: 14px; border: 0; background: rgba(255, 255, 255, .1); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .18); font-size: 16px; }
.custom input::placeholder { color: #9D96C4; }
.custom input:focus { outline: none; box-shadow: inset 0 0 0 2px var(--yellow); }
.custom .btn { --h: 48px; border-radius: 14px; }
.custom__hint { margin-top: 8px; font-size: .78rem; color: #A9A2D0; }
.custom.is-error input { box-shadow: inset 0 0 0 2px #FF6B6B; animation: nudge .35s; }
@keyframes nudge { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }

/* ---------- 10. Steps ---------- */
.steps-sec { padding-top: clamp(90px, 11vw, 150px); }
.steps { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
.step { position: relative; padding: 18px 18px 22px; border-radius: 26px; background: #fff; box-shadow: var(--sh-s), inset 0 0 0 1px rgba(22, 18, 46, .05); overflow: hidden; }
.step__num { position: absolute; right: 18px; top: 6px; font-size: 5rem; font-weight: 800; letter-spacing: -.06em; line-height: 1; color: var(--c); opacity: .1; }
.step__art { position: relative; height: 110px; margin-bottom: 18px; padding: 12px; border-radius: 18px; background: color-mix(in srgb, var(--c) 8%, #fff); display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; overflow: hidden; }
.step h3 { font-size: 1.25rem; }
.step p { margin-top: 8px; color: var(--muted); font-size: .95rem; }
.step__chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 12px; background: #fff; box-shadow: var(--sh-s); font-weight: 800; font-size: .8rem; color: var(--ink); animation: float 5s var(--ease-io) infinite; }
.step__chip::before { content: ""; width: 14px; height: 14px; border-radius: 5px; background: var(--c); }
.step__chip:nth-child(1) { rotate: -4deg; }
.step__chip:nth-child(2) { rotate: 3deg; animation-delay: -1.6s; }
.step__chip:nth-child(3) { rotate: -2deg; animation-delay: -3.2s; }
.step__art--mix { gap: 12px; padding-bottom: 34px; }
.step__art--mix i { width: 28px; height: 28px; border-radius: 50%; background: var(--c); animation: mixdot 2.4s var(--ease-io) infinite; box-shadow: 0 6px 12px -6px rgba(0, 0, 0, .4); }
.step__art--mix i:nth-child(2) { animation-delay: .15s; }
.step__art--mix i:nth-child(3) { animation-delay: .3s; }
.step__art--mix i:nth-child(4) { animation-delay: .45s; }
@keyframes mixdot { 0%, 100% { transform: translateY(0); } 30% { transform: translateY(-12px); } }
.step__bar { position: absolute; left: 16px; right: 16px; bottom: 16px; height: 8px; border-radius: 4px; background: rgba(22, 18, 46, .08); overflow: hidden; }
.step__bar b { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, #2271B3, #FFC72C, #F2362B); transform-origin: 0 50%; animation: barfill 2.4s var(--ease-io) infinite; }
@keyframes barfill { 0% { transform: scaleX(0); } 70%, 100% { transform: scaleX(1); } }
.step__art--done { flex-direction: column; gap: 10px; }
.step__ok { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #fff; animation: okpulse 2.4s var(--ease) infinite; }
.step__ok .i { width: 26px; height: 26px; }
@keyframes okpulse { 0% { box-shadow: 0 0 0 0 rgba(18, 183, 106, .45); } 70%, 100% { box-shadow: 0 0 0 18px rgba(18, 183, 106, 0); } }
.step__time { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: #fff; box-shadow: var(--sh-s); font-weight: 750; font-size: .78rem; color: var(--ink); }
.step__time .i { width: 16px; height: 16px; color: var(--green); }

/* ---------- 11. Paint-code finder ---------- */
.finder-sec { background: linear-gradient(180deg, var(--bg), #F1EFFA); }
.finder { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 1080px) {
  .finder { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); grid-template-areas: "brands brands" "stage info"; gap: 20px 26px; align-items: start; }
  .finder__brands { grid-area: brands; }
  .finder__stage { grid-area: stage; }
  .finder__info { grid-area: info; }
}
.finder__brands { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; margin-inline: calc(-1 * var(--gutter)); padding: 4px var(--gutter) 8px; scroll-padding-inline: var(--gutter); }
.finder__brands::-webkit-scrollbar { display: none; }
@media (min-width: 1080px) { .finder__brands { flex-wrap: wrap; overflow: visible; margin: 0; padding: 0; } }
.bchip { flex: none; height: 44px; padding: 0 16px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1.5px var(--line-2); font-weight: 750; font-size: .92rem; color: var(--ink); transition: background-color .2s, color .2s, box-shadow .2s; }
.bchip[aria-pressed="true"] { background: var(--ink); color: #fff; box-shadow: 0 10px 20px -12px rgba(22, 18, 46, .8); }
@media (hover: hover) { .bchip:hover { box-shadow: inset 0 0 0 1.5px var(--ink); } .bchip[aria-pressed="true"]:hover { box-shadow: 0 10px 20px -12px rgba(22, 18, 46, .8); } }
.finder__stage { padding: 14px 14px 16px; border-radius: 28px; background: #fff; box-shadow: var(--sh); }
.carmap { position: relative; }
.carmap__svg { width: 100%; height: auto; }
.hot { position: absolute; left: var(--x); top: var(--y); width: 34px; height: 34px; margin: -17px 0 0 -17px; border-radius: 50%; display: grid; place-items: center; background: #C9C5D9; color: #fff; font-weight: 800; font-size: .88rem; box-shadow: 0 0 0 4px rgba(255, 255, 255, .92), 0 6px 14px -6px rgba(22, 18, 46, .5); transform: scale(.66); opacity: .6; transition: transform .4s var(--spring), background-color .3s, opacity .3s; }
.hot.is-on { background: var(--brand); opacity: 1; transform: scale(1); }
.hot.is-on::before { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--brand); animation: hotping 1.8s var(--ease) infinite; }
.hot.is-on.is-first { background: var(--pink); }
.hot.is-on.is-first::before { border-color: var(--pink); }
@keyframes hotping { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(2); opacity: 0; } }
.hot--fuel { background: var(--yellow); color: var(--ink); opacity: 1; transform: scale(.82); }
.hot--fuel .i { width: 16px; height: 16px; }
.finder__legend { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 8px; font-size: .8rem; color: var(--muted); font-weight: 600; }
.finder__legend span { display: inline-flex; align-items: center; gap: 6px; }
.lg { width: 12px; height: 12px; border-radius: 50%; }
.lg--on { background: var(--brand); }
.lg--fuel { background: var(--yellow); }
.finder__info { padding: 20px; border-radius: 28px; background: #fff; box-shadow: var(--sh); }
@media (min-width: 760px) { .finder__info { padding: 26px; } }
.finder__info.is-swap { animation: swap .45s var(--ease); }
@keyframes swap { from { opacity: .35; transform: translateY(8px); } }
.finder__kicker { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.finder__brand { font-size: 1.7rem; margin-top: 2px; }
.finder__spots { margin-top: 14px; display: grid; gap: 8px; counter-reset: s; }
.finder__spots li { position: relative; padding: 10px 12px 10px 50px; border-radius: 16px; background: var(--brand-50); counter-increment: s; }
.finder__spots li::before { content: counter(s); position: absolute; left: 11px; top: 50%; width: 28px; height: 28px; margin-top: -14px; border-radius: 50%; display: grid; place-items: center; background: var(--brand); color: #fff; font-weight: 800; font-size: .85rem; }
.finder__spots li:first-child { background: #FFE9F3; }
.finder__spots li:first-child::before { background: var(--pink); }
.finder__spots b { display: block; color: var(--ink); font-size: .98rem; line-height: 1.3; }
.finder__spots span { display: block; font-size: .84rem; color: var(--muted); line-height: 1.4; }
.finder__facts { margin-top: 12px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.finder__facts div { padding: 10px 12px; border-radius: 14px; box-shadow: inset 0 0 0 1px var(--line); }
.finder__facts dt { font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.finder__facts dd { margin-top: 2px; font-weight: 700; color: var(--ink); font-size: .9rem; line-height: 1.35; }
.finder__note { margin-top: 14px; font-size: .92rem; padding-left: 12px; border-left: 3px solid var(--yellow); }
.finder__cta { margin-top: 18px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
.finder__cta .btn { white-space: normal; }
@media (min-width: 560px) and (max-width: 1079px) { .finder__cta { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.finder__guide { margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9rem; color: var(--brand); }
.finder__guide .i { width: 18px; height: 18px; }
.finder__fallback { margin-top: 16px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 16px 18px; border-radius: 22px; background: var(--ink); color: #DAD6EE; }
.finder__fallback p { flex: 1 1 280px; font-size: .95rem; }
.finder__fallback b { color: #fff; }
.finder__fbicon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: rgba(255, 255, 255, .1); color: var(--yellow); flex: none; }

/* ---------- 12. Epoxy calculator ---------- */
.calc-sec { background: #F1EFFA; padding-top: 0; }
.calc { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; padding: clamp(18px, 3vw, 40px); border-radius: 32px; background: #fff; box-shadow: var(--sh); }
@media (min-width: 1000px) { .calc { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; } }
.calc__title { font-size: clamp(1.75rem, 4.4vw, 2.7rem); }
.calc__lead { margin-top: 10px; color: var(--muted); }
.field { margin-top: 20px; }
.field__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.field label, .field__label { display: block; font-weight: 750; color: var(--ink); font-size: .95rem; }
.field__label { margin-bottom: 8px; }
.area-box { display: flex; align-items: center; gap: 6px; height: 50px; padding: 0 14px; border-radius: 14px; background: var(--brand-50); box-shadow: inset 0 0 0 1.5px var(--brand-100); }
.area-box:focus-within { box-shadow: inset 0 0 0 2px var(--brand); }
.area-box input { width: 4.4ch; border: 0; background: none; font-size: 1.35rem; font-weight: 800; color: var(--ink); text-align: right; outline: none; -moz-appearance: textfield; appearance: textfield; }
.area-box input::-webkit-outer-spin-button, .area-box input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.area-box span { font-weight: 700; color: var(--muted); }
.range { -webkit-appearance: none; appearance: none; display: block; width: 100%; height: 12px; margin: 10px 0; border-radius: 999px; background: linear-gradient(90deg, var(--green) 0 var(--p, 5%), #E7E4F0 var(--p, 5%)); outline: none; cursor: pointer; }
.range::-webkit-slider-thumb { -webkit-appearance: none; width: 30px; height: 30px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px var(--green), 0 6px 14px -4px rgba(22, 18, 46, .4); cursor: grab; }
.range::-moz-range-thumb { width: 30px; height: 30px; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px var(--green), 0 6px 14px -4px rgba(22, 18, 46, .4); cursor: grab; }
.range:focus-visible { outline: 3px solid var(--brand); outline-offset: 8px; }
.field__scale { display: flex; justify-content: space-between; font-size: .72rem; color: var(--muted); font-weight: 600; }
.seg { display: flex; gap: 4px; padding: 4px; border-radius: 16px; background: #F1EFF7; }
.seg button { flex: 1; min-height: 46px; padding: 0 10px; border-radius: 12px; font-weight: 750; font-size: .9rem; color: var(--muted); transition: background-color .2s, color .2s, box-shadow .2s; }
.seg button[aria-pressed="true"] { background: #fff; color: var(--ink); box-shadow: var(--sh-s); }
.check { margin-top: 18px; display: flex; align-items: center; gap: 12px; cursor: pointer; font-weight: 650; color: var(--ink); position: relative; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check__box { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: #fff; box-shadow: inset 0 0 0 2px var(--line-2); color: transparent; transition: .2s; flex: none; }
.check input:checked + .check__box { background: var(--green); box-shadow: none; color: #fff; }
.check input:focus-visible + .check__box { outline: 3px solid var(--brand); outline-offset: 2px; }
.check__box .i { width: 16px; height: 16px; }
.check small { color: var(--muted); font-weight: 600; }
.calc__out { padding: 18px; border-radius: 26px; background: linear-gradient(160deg, #F2FBF7, #EEF3FF); box-shadow: inset 0 0 0 1px rgba(22, 18, 46, .05); }
@media (min-width: 760px) { .calc__out { padding: 26px; } }
.calc__floor { position: relative; max-width: 360px; margin-inline: auto; }
.calc__floor svg { width: 100%; height: auto; }
.cc-coat { fill: var(--green); transform-box: fill-box; transform-origin: 50% 100%; transform: scaleY(var(--fill, .5)); transition: transform .7s var(--ease), fill .4s; }
.calc__area-tag { position: absolute; left: 50%; top: 58%; transform: translate(-50%, -50%); padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .92); font-weight: 750; color: var(--ink); box-shadow: var(--sh-s); font-size: .9rem; white-space: nowrap; }
.calc__label { margin-top: 14px; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.calc__big { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 800; color: var(--ink); letter-spacing: -.045em; line-height: 1.05; font-variant-numeric: tabular-nums; }
.calc__big small { font-size: .42em; letter-spacing: 0; color: var(--muted); }
.calc__rows { margin-top: 12px; display: grid; gap: 10px; }
.calc__rows li { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) auto; align-items: center; gap: 10px; font-size: .88rem; transition: opacity .3s; }
.calc__rows span { font-weight: 650; color: var(--ink); line-height: 1.3; }
.calc__rows i { height: 8px; border-radius: 4px; background: rgba(22, 18, 46, .08); overflow: hidden; }
.calc__rows i b { display: block; height: 100%; width: var(--w); border-radius: 4px; background: var(--green); transition: width .6s var(--ease); }
.calc__rows li[data-row="primer"] i b { background: var(--violet); }
.calc__rows li[data-row="waste"] i b { background: var(--orange); }
.calc__rows em { font-style: normal; font-weight: 800; color: var(--ink); white-space: nowrap; min-width: 5.6em; text-align: right; font-variant-numeric: tabular-nums; }
.calc__rows li.is-off { opacity: .35; }
.calc__rows li.is-incl i { background: repeating-linear-gradient(90deg, rgba(255, 122, 26, .45) 0 6px, transparent 6px 11px); } /* waste is inside the kg ranges */
.calc__note { margin-top: 14px; font-size: .8rem; color: var(--muted); }
.calc__cta { margin-top: 16px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
.calc__cta .btn { white-space: normal; }
@media (min-width: 560px) { .calc__cta { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- 13. Products ---------- */
.tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; margin-inline: calc(-1 * var(--gutter)); padding: 4px var(--gutter) 8px; }
.tabs::-webkit-scrollbar { display: none; }
@media (min-width: 760px) { .tabs { margin: 0; padding: 0 0 4px; flex-wrap: wrap; } }
.tab { flex: none; display: inline-flex; align-items: center; gap: 8px; height: 48px; padding: 0 18px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1.5px var(--line-2); font-weight: 750; color: var(--ink); transition: background-color .2s, color .2s, box-shadow .2s; }
.tab .i { width: 20px; height: 20px; }
.tab[aria-selected="true"] { background: var(--ink); color: #fff; box-shadow: 0 12px 24px -14px rgba(22, 18, 46, .8); }
.panels { margin-top: 12px; }
.panel { position: relative; padding: clamp(16px, 3vw, 32px); border-radius: 28px; background: #fff; box-shadow: var(--sh-s), inset 0 0 0 1px rgba(22, 18, 46, .05); overflow: hidden; }
.panel::before { content: ""; position: absolute; right: -70px; top: -70px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(closest-side, color-mix(in srgb, var(--c) 20%, transparent), transparent); pointer-events: none; }
.panel.is-in { animation: panelIn .45s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } }
.plist { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
@media (min-width: 640px) { .plist { gap: 10px; } }
@media (min-width: 1000px) { .plist { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.plist li { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 16px; background: color-mix(in srgb, var(--c) 7%, #fff); font-weight: 650; color: var(--ink); font-size: .86rem; line-height: 1.3; }
@media (min-width: 640px) { .plist li { gap: 12px; padding: 12px 14px; font-size: .95rem; } }
.plist li::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--c); flex: none; transform: rotate(45deg); }
.panel__link { position: relative; margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-weight: 750; color: color-mix(in srgb, var(--c) 72%, #16122E); }
.panel__link .i { width: 1em; height: 1em; }

/* ---------- 14. Brands ---------- */
.brands-sec { overflow: hidden; background: var(--bg); }
.marquee { display: flex; gap: 12px; overflow: hidden; padding: 6px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee + .marquee { margin-top: 6px; }
.marquee__track { display: flex; gap: 12px; flex: none; min-width: 100%; justify-content: space-around; animation: marquee2 42s linear infinite; }
.marquee--rev .marquee__track { animation-direction: reverse; animation-duration: 48s; }
@keyframes marquee2 { to { transform: translateX(calc(-100% - 12px)); } }
@media (hover: hover) { .marquee:hover .marquee__track { animation-play-state: paused; } }
.bm { flex: none; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; height: 100px; min-width: 150px; padding: 0 24px; border-radius: 22px; background: #fff; box-shadow: inset 0 0 0 1px var(--line), var(--sh-s); }
.bm img { display: block; width: var(--w); height: var(--h); max-width: none; object-fit: contain; }
.bm__badge { border-radius: 8px; }
.bm small { font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); background: var(--brand-50); padding: 3px 8px; border-radius: 6px; line-height: 1.3; }
.bm--soft { height: 72px; min-width: 120px; padding: 0 20px; }
@media (max-width: 559px) {
  .bm { height: 90px; min-width: 128px; padding: 0 18px; gap: 7px; }
  .bm img { width: calc(var(--w) * .82); height: calc(var(--h) * .82); }
  .bm--soft { height: 62px; min-width: 100px; padding: 0 16px; }
}
.brand-notes { margin-top: 26px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
@media (min-width: 860px) { .brand-notes { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.brand-note { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 22px; background: #fff; box-shadow: var(--sh-s); }
.brand-note__logos { flex: none; display: flex; align-items: center; justify-content: center; gap: 8px; min-width: 96px; min-height: 54px; padding: 8px 12px; border-radius: 14px; box-shadow: inset 0 0 0 1px var(--line); }
.brand-note__logos img { display: block; }
.brand-note b { display: block; color: var(--ink); font-size: 1.02rem; }
.brand-note div > span { display: block; color: var(--muted); font-size: .9rem; line-height: 1.4; }

/* ---------- 15. About ---------- */
.about-sec { background: var(--cream); }
.about { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; align-items: center; }
@media (min-width: 1000px) { .about { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 64px; } }
.about__art { position: relative; padding: 16px 0; text-align: center; }
.about__num { width: min(100%, 440px); margin-inline: auto; overflow: visible; }
.about__numtxt { font: 800 220px var(--font); letter-spacing: -.06em; }
.about__numtxt--ghost { fill: none; stroke: #D9D2C3; stroke-width: 2; }
.ab-wave { animation: ab-wave 2.6s linear infinite; }
@keyframes ab-wave { to { transform: translateX(-140px); } }
.js .about__art .ab-liquid { transform: translateY(190px); transition: transform 2.6s var(--ease) .2s; }
.js .about__art.is-in .ab-liquid { transform: none; }
.about__numlabel { margin-top: -10px; font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.about__badge { position: absolute; display: flex; flex-direction: column; align-items: flex-start; padding: 10px 14px; border-radius: 18px; background: #fff; box-shadow: var(--sh); font-size: .76rem; font-weight: 650; color: var(--muted); text-align: left; line-height: 1.3; animation: float 6s var(--ease-io) infinite; }
.about__badge b { font-size: 1.25rem; color: var(--ink); font-weight: 800; letter-spacing: -.02em; }
.about__badge--a { left: 0; top: 8%; }
.about__badge--b { right: 0; bottom: 18%; animation-delay: -3s; }
@media (max-width: 599px) { .about__badge { padding: 8px 12px; } .about__badge b { font-size: 1.05rem; } .about__badge--a { top: 0; } .about__badge--b { bottom: 30%; } }
.about__copy h2 { font-size: clamp(2.15rem, 5.6vw, 3.4rem); }
.about__lead { margin-top: 16px; font-size: 1.12rem; color: var(--ink); font-weight: 600; }
.about__copy p + p { margin-top: 12px; }
.timeline { position: relative; margin-top: 24px; display: grid; padding-left: 24px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 12px; bottom: 12px; width: 2px; border-radius: 2px; background: linear-gradient(var(--brand), var(--pink), var(--yellow)); }
.timeline li { position: relative; display: flex; gap: 14px; align-items: baseline; padding: 9px 0 9px 12px; }
.timeline li::before { content: ""; position: absolute; left: -23px; top: 16px; width: 14px; height: 14px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px var(--brand); }
.timeline li:nth-child(2)::before { box-shadow: 0 0 0 3px var(--pink); }
.timeline li:nth-child(3)::before { box-shadow: 0 0 0 3px var(--yellow); }
.timeline b { min-width: 62px; font-size: 1.1rem; color: var(--ink); font-weight: 800; }

/* ---------- 16. Visit ---------- */
.visit { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; }
@media (min-width: 1000px) { .visit { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 26px; align-items: stretch; } }
.mapcard { position: relative; min-height: 330px; border-radius: 30px; overflow: hidden; background: #E8EFEA; box-shadow: var(--sh); isolation: isolate; }
@media (min-width: 1000px) { .mapcard { min-height: 540px; } }
.mapcard__art { position: absolute; inset: 0; width: 100%; height: 100%; }
.mapcard__pulse { position: absolute; left: 56%; top: 46%; width: 18px; height: 18px; margin: -9px 0 0 -9px; border-radius: 50%; background: var(--brand); animation: mappulse 2s var(--ease) infinite; }
@keyframes mappulse { 0% { box-shadow: 0 0 0 0 rgba(62, 4, 247, .45); } 100% { box-shadow: 0 0 0 34px rgba(62, 4, 247, 0); } }
.mapcard__pin { position: absolute; left: 56%; top: 46%; width: 76px; height: 76px; margin: -92px 0 0 -38px; border-radius: 50% 50% 50% 0; background: #fff; transform: rotate(-45deg); box-shadow: 0 18px 30px -12px rgba(22, 18, 46, .5); display: grid; place-items: center; animation: pinbob 2.8s var(--ease-io) infinite; }
.mapcard__logo { width: 50px; transform: rotate(45deg); }
@keyframes pinbob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
.mapcard__label { position: absolute; left: 56%; top: 46%; margin: 18px 0 0 -92px; width: 184px; text-align: center; padding: 8px 12px; border-radius: 14px; background: var(--ink); color: #D8D4EA; font-size: .8rem; line-height: 1.3; box-shadow: var(--sh); }
.mapcard__label b { display: block; color: #fff; font-size: .95rem; }
.mapcard__load { position: absolute; right: 14px; bottom: 14px; z-index: 2; }
.mapcard iframe { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; border: 0; }
.visit__info { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; align-content: start; }
.status-card { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 22px; background: #E9FBF1; box-shadow: inset 0 0 0 1px rgba(18, 183, 106, .25); }
html[data-open="false"] .status-card { background: #FFF1F0; box-shadow: inset 0 0 0 1px rgba(229, 72, 77, .25); }
.status-card__main { font-weight: 800; color: var(--ink); font-size: 1.05rem; line-height: 1.3; }
.status-card__sub { font-size: .88rem; color: var(--muted); }
.addr { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 22px; background: #fff; box-shadow: var(--sh-s); }
.addr > .i { width: 24px; height: 24px; color: var(--brand); }
.addr div { flex: 1; min-width: 0; }
.addr__main { font-weight: 750; color: var(--ink); line-height: 1.35; }
.addr__sub { font-size: .88rem; color: var(--muted); }
.addr__copy { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand); flex: none; transition: background-color .2s; }
.addr__copy:hover { background: var(--brand-100); }
.hours { width: 100%; background: #fff; border-radius: 22px; box-shadow: var(--sh-s); overflow: hidden; }
.hours th, .hours td { padding: 9px 18px; font-size: .92rem; text-align: left; border-bottom: 1px solid var(--line); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours th { font-weight: 650; color: var(--text); }
.hours td { text-align: right; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.hours tr.is-today th, .hours tr.is-today td { background: var(--brand-50); color: var(--brand-700); font-weight: 800; }
.hours tr.is-today th::after { content: "Bugün"; margin-left: 8px; padding: 2px 6px; border-radius: 6px; background: var(--brand); color: #fff; font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; vertical-align: 2px; }
.visit__ctas { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
.visit__ctas .btn { white-space: normal; }
.visit__alt { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.visit__mail { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 6px; font-weight: 650; color: var(--muted); font-size: .9rem; word-break: break-all; }

/* ---------- 17. FAQ ---------- */
.faq { display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; }
@media (min-width: 1000px) { .faq { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 48px; align-items: start; } .faq .sec-head { position: sticky; top: calc(var(--hdr) + 24px); } }
.faq__list { display: grid; gap: 10px; }
.qa { border-radius: 20px; background: #fff; box-shadow: var(--sh-s), inset 0 0 0 1px rgba(22, 18, 46, .05); overflow: hidden; }
.qa summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 20px; font-weight: 750; color: var(--ink); cursor: pointer; line-height: 1.35; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .i { width: 22px; height: 22px; color: var(--brand); transition: transform .3s var(--ease); }
.qa[open] summary .i { transform: rotate(180deg); }
.qa summary:focus-visible { outline-offset: -3px; border-radius: 20px; }
.qa__a { padding: 0 20px 18px; font-size: .96rem; }

/* ---------- 18. CTA band ---------- */
.cta { position: relative; z-index: 2; padding: clamp(70px, 10vw, 120px) 0 clamp(78px, 10vw, 124px); background: radial-gradient(900px 520px at 100% 0%, rgba(240, 20, 125, .38), transparent 60%), radial-gradient(760px 480px at 0% 0%, rgba(0, 180, 216, .3), transparent 60%), var(--brand); color: #fff; }
.cta__in { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta__kicker { font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: #FFE08A; }
.cta__title { margin-top: 14px; max-width: 15ch; color: #fff; font-size: clamp(2.2rem, 6.6vw, 4.3rem); }
.cta__sub { margin-top: 14px; max-width: 40em; color: #DCD3FF; font-size: 1.05rem; }
.cta__btns { margin-top: 28px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; width: 100%; max-width: 420px; }
.cta__btns .btn { justify-content: flex-start; }
@media (min-width: 900px) { .cta__btns { grid-template-columns: none; grid-auto-flow: column; max-width: none; width: auto; } .cta__btns .btn { justify-content: center; } }
.cta__drip { position: absolute; left: 0; bottom: -58px; width: 100%; height: 60px; fill: var(--brand); z-index: 1; }
.cta__drops { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta__drops i { position: absolute; top: -20px; width: 14px; height: 18px; border-radius: 50% 50% 50% 50% / 62% 62% 40% 40%; background: rgba(255, 255, 255, .16); animation: fall 7s linear infinite; }
.cta__drops i:nth-child(1) { left: 8%; animation-delay: -1s; }
.cta__drops i:nth-child(2) { left: 22%; animation-delay: -4s; width: 10px; height: 13px; }
.cta__drops i:nth-child(3) { left: 41%; animation-delay: -2.5s; }
.cta__drops i:nth-child(4) { left: 63%; animation-delay: -5.5s; width: 11px; height: 14px; }
.cta__drops i:nth-child(5) { left: 79%; animation-delay: -3s; }
.cta__drops i:nth-child(6) { left: 92%; animation-delay: -6.2s; width: 9px; height: 12px; }
@keyframes fall { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: 1; } 100% { transform: translateY(560px); opacity: 0; } }

/* ---------- 19. Footer ---------- */
.ftr { position: relative; padding: 108px 0 30px; background: var(--cream); }
.ftr__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; }
@media (min-width: 760px) { .ftr__grid { grid-template-columns: 1.3fr 1fr 1fr; } .ftr__brand { grid-column: 1 / -1; } }
@media (min-width: 1080px) { .ftr__grid { grid-template-columns: 1.4fr 1fr 1.15fr 1fr; } .ftr__brand { grid-column: auto; } }
.brand--lg .brand__logo { width: 82px; }
.brand--lg .brand__name { font-size: 1.25rem; }
.ftr__about { margin-top: 14px; font-size: .93rem; color: var(--muted); max-width: 30em; }
.ftr__social { margin-top: 14px; display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); font-size: .9rem; }
.ftr__social .i { width: 30px; height: 30px; padding: 6px; border-radius: 10px; background: #1877F2; color: #fff; }
.ftr__h { margin-bottom: 12px; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.ftr__list { display: grid; gap: 9px; font-size: .94rem; }
.ftr__list li { display: flex; justify-content: space-between; gap: 12px; }
.ftr__list a { transition: color .2s; }
.ftr__list a:hover { color: var(--brand); }
.ftr__list--contact li { justify-content: flex-start; align-items: flex-start; }
.ftr__list--contact .i { width: 18px; height: 18px; margin-top: 3px; color: var(--brand); }
.ftr__list--contact a { word-break: break-word; }
.ftr__list b { color: var(--ink); font-weight: 700; white-space: nowrap; }
.ftr__status { margin-top: 14px; display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .88rem; color: var(--ink); }
.ftr__bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(22, 18, 46, .1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 20px; font-size: .8rem; color: var(--muted); }

/* ---------- 20. Dock / WhatsApp / toast ---------- */
.dock { position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 60; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(0, .95fr); gap: 7px; padding: 7px; border-radius: 24px; background: rgba(255, 255, 255, .9); -webkit-backdrop-filter: blur(18px) saturate(1.8); backdrop-filter: blur(18px) saturate(1.8); box-shadow: 0 20px 44px -18px rgba(22, 18, 46, .55), inset 0 0 0 1px rgba(22, 18, 46, .07); transform: translateY(calc(100% + 40px)); transition: transform .55s var(--spring); }
.dock.is-visible { transform: none; }
.dock__btn { height: 54px; border-radius: 17px; display: flex; align-items: center; justify-content: center; gap: 7px; font-weight: 800; font-size: .98rem; letter-spacing: -.01em; transition: transform .15s; }
.dock__btn:active { transform: scale(.96); }
.dock__btn .i { width: 21px; height: 21px; }
.dock__btn--call { background: var(--brand); color: #fff; }
.dock__btn--dir { background: var(--yellow); color: var(--ink); }
.dock__btn--wa { background: #E7FAEF; color: var(--wa-ink); }
html[data-open="false"] .dock__btn--wa { background: var(--wa); color: #05361A; }
@media (max-width: 419px) { .dock { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr) minmax(0, .6fr); } .dock__btn--wa span { display: none; } .dock__btn--wa .i { width: 25px; height: 25px; } }
@media (max-width: 339px) { .dock__btn { font-size: .9rem; gap: 5px; } }
@media (min-width: 1080px) { .dock { display: none; } }
.wa-fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: none; align-items: center; gap: 10px; }
@media (min-width: 1080px) { .wa-fab { display: flex; } }
.wa-fab__icon { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: var(--wa); color: #fff; box-shadow: 0 16px 30px -12px rgba(37, 211, 102, .85); transition: transform .3s var(--spring); }
.wa-fab__icon .i { width: 30px; height: 30px; }
.wa-fab__label { padding: 10px 14px; border-radius: 14px; background: #fff; color: var(--ink); font-weight: 750; font-size: .9rem; box-shadow: var(--sh); opacity: 0; transform: translateX(10px); transition: .3s var(--ease); pointer-events: none; }
.wa-fab:hover .wa-fab__label, .wa-fab:focus-visible .wa-fab__label { opacity: 1; transform: none; }
.wa-fab:hover .wa-fab__icon { transform: scale(1.08); }
.toast { position: fixed; left: 50%; bottom: calc(var(--dock-space) + 18px); z-index: 90; max-width: calc(100% - 32px); padding: 12px 18px; border-radius: 14px; background: var(--ink); color: #fff; font-weight: 700; font-size: .92rem; box-shadow: var(--sh); opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: .35s var(--ease); }
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- 21. Reveal / pause / reduced motion ---------- */
.js .rv { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.js .rv.is-in { opacity: 1; transform: none; }
.is-paused, .is-paused * { animation-play-state: paused !important; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .js .rv { opacity: 1; transform: none; }
  .io-scratch, .io-pen, .ie-roller, .im-beam, .iw-brush, .ih-roller, .it-gun, .ig-d { opacity: 0; }
  .io-spark { transform: scale(.9); }
  .js .about__art .ab-liquid { transform: none; }
}

/* ---------- 22. Polish additions ---------- */
.lab__swatch::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .45) 46%, transparent 62%); transform: translateX(-110%); pointer-events: none; }
.lab.is-ok .lab__swatch::after { transform: translateX(110%); transition: transform 1.1s var(--ease) .1s; }
.qa.is-closing summary .i { transform: none; }
.hot::after { content: attr(aria-label); position: absolute; left: 50%; bottom: calc(100% + 10px); transform: translate(-50%, 4px); padding: 6px 10px; border-radius: 10px; background: var(--ink); color: #fff; font-size: .75rem; font-weight: 700; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s var(--ease); }
.hot:hover::after, .hot:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }
.finder__label { margin-top: 12px; padding: 12px 14px; border-radius: 16px; background: #fff; box-shadow: inset 0 0 0 1.5px var(--line-2); font: 600 .74rem/1.5 ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; color: var(--muted); position: relative; overflow: hidden; }
.finder__label::before { content: ""; position: absolute; right: 12px; top: 12px; width: 84px; height: 34px; background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 4px, var(--ink) 4px 5px, transparent 5px 8px); opacity: .75; border-radius: 2px; }
.finder__label p { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-right: 96px; }

.finder__label .fl-hi { display: inline-block; margin-top: 4px; padding: 3px 8px; border-radius: 8px; background: #FFE9F3; color: var(--ink); font-weight: 800; box-shadow: 0 0 0 2px var(--pink); animation: flhi 1.8s var(--ease-io) infinite; }
@keyframes flhi { 0%, 100% { box-shadow: 0 0 0 2px var(--pink); } 50% { box-shadow: 0 0 0 5px rgba(240, 20, 125, .25); } }
.finder__labelcap { margin-top: 12px; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ==========================================================================
   23. Service landing pages
   ========================================================================== */
.phero { position: relative; padding: calc(var(--hdr) + 16px) 0 30px; isolation: isolate; overflow: hidden; }
.phero__in { display: grid; grid-template-columns: minmax(0, 1fr); gap: 26px; align-items: center; }
@media (min-width: 1080px) {
  .phero { padding: calc(var(--hdr) + 44px) 0 60px; }
  .phero__in { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 52px; }
}
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .82rem; font-weight: 650; color: var(--muted); }
.crumbs a { color: var(--brand); }
.crumbs .i { width: 14px; height: 14px; opacity: .6; }
.phero__title { margin-top: 14px; font-size: clamp(2.2rem, 7.6vw, 4.2rem); line-height: 1.02; letter-spacing: -.042em; }
.phero__title .hl { color: var(--c, var(--brand)); }
.phero__lead { margin-top: 16px; max-width: 36em; font-size: clamp(1.02rem, 1.4vw, 1.15rem); }
.phero .hero__ctas { margin-top: 24px; }
.chips { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 999px; background: rgba(255, 255, 255, .85); box-shadow: inset 0 0 0 1px var(--line); font-weight: 700; font-size: .82rem; color: var(--ink); }
.chip .i { width: 17px; height: 17px; color: var(--c, var(--brand)); }
.phero__visual { position: relative; padding: 0 6px; }
.phero__art { position: relative; border-radius: clamp(24px, 4vw, 34px); background: var(--tint); box-shadow: var(--sh-l), inset 0 0 0 1px rgba(22, 18, 46, .05); overflow: hidden; aspect-ratio: 320 / 220; }
.phero__art .il { width: 100%; height: 100%; }
.phero__badge { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 16px; background: #fff; box-shadow: var(--sh); font-weight: 750; font-size: .84rem; color: var(--ink); animation: float 6s var(--ease-io) infinite; }
.phero__badge .i { width: 20px; height: 20px; color: var(--c, var(--brand)); }
.phero__badge--a { left: -8px; bottom: 12%; }
.phero__badge--b { right: -6px; top: 10%; animation-delay: -3s; }
@media (max-width: 559px) {
  .phero__visual { padding: 14px 0; }
  .phero__badge { font-size: .74rem; padding: 8px 11px; }
  .phero__badge--a { left: 0; bottom: -2px; }
  .phero__badge--b { right: 0; top: -2px; }
}

/* "what's in stock" cards */
.cards4 { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
@media (min-width: 640px) { .cards4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .cards4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; } .cards4--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.card4 { position: relative; padding: 20px; border-radius: 24px; background: #fff; box-shadow: var(--sh-s), inset 0 0 0 1px rgba(22, 18, 46, .05); overflow: hidden; }
.card4::after { content: ""; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(closest-side, color-mix(in srgb, var(--c) 16%, transparent), transparent); pointer-events: none; }
.card4__icon { width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 13%, #fff); color: var(--c); }
.card4__icon .i { width: 24px; height: 24px; }
.card4 h3 { margin-top: 14px; font-size: 1.15rem; }
.card4 ul { margin-top: 10px; display: grid; gap: 7px; }
.card4 li { display: flex; gap: 9px; align-items: flex-start; font-size: .93rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.card4 li::before { content: ""; width: 8px; height: 8px; margin-top: 7px; border-radius: 2px; background: var(--c); transform: rotate(45deg); flex: none; }

/* feature split blocks */
.feat { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; align-items: center; }
.feat + .feat { margin-top: clamp(48px, 7vw, 96px); }
@media (min-width: 1000px) { .feat { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; } .feat--rev .feat__art, .feat--rev .facts { order: 2; } }
.feat__art { position: relative; border-radius: 30px; background: var(--tint); aspect-ratio: 320 / 220; overflow: hidden; box-shadow: var(--sh), inset 0 0 0 1px rgba(22, 18, 46, .05); }
.feat__art .il { width: 100%; height: 100%; }
.feat h2 { font-size: clamp(1.85rem, 4.6vw, 2.8rem); }
.feat__txt > p { margin-top: 12px; color: var(--muted); font-size: 1.02rem; }
.checks { margin-top: 18px; display: grid; gap: 10px; }
.checks li { display: flex; gap: 11px; align-items: flex-start; font-weight: 650; color: var(--ink); line-height: 1.4; }
.checks li::before { content: ""; width: 22px; height: 22px; flex: none; margin-top: -1px; border-radius: 50%; background: var(--c, var(--green)) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat; }
.feat__cta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.feat__cta .btn { white-space: normal; }
@media (max-width: 559px) { .feat__cta .btn { width: 100%; } }

/* big-number fact panel (used instead of an illustration) */
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 16px; border-radius: 30px; background: var(--tint, #F1EFFA); box-shadow: inset 0 0 0 1px rgba(22, 18, 46, .05); }
.fact { padding: 18px 16px; border-radius: 22px; background: #fff; box-shadow: var(--sh-s); }
.fact b { display: block; font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 800; letter-spacing: -.04em; color: var(--ink); line-height: 1.05; }
.fact span { display: block; margin-top: 6px; font-size: .84rem; font-weight: 600; color: var(--muted); line-height: 1.35; }
.fact--wide { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; }
.fact--wide b { font-size: 1.1rem; letter-spacing: -.01em; }
.fact--wide span { margin-top: 2px; }
.fact__ic { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: color-mix(in srgb, var(--c, var(--green)) 14%, #fff); color: var(--c, var(--green)); flex: none; }
.fact__ic .i { width: 22px; height: 22px; }

/* 4-step process */
.steps--4 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 700px) { .steps--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .steps--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.step__icon { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; margin-bottom: 16px; background: color-mix(in srgb, var(--c) 13%, #fff); color: var(--c); }
.step__icon .i { width: 26px; height: 26px; }

/* solventli / solventsiz comparison */
.compare { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
@media (min-width: 860px) { .compare { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
.cmp { position: relative; padding: 24px; border-radius: 28px; background: #fff; box-shadow: var(--sh-s), inset 0 0 0 1px rgba(22, 18, 46, .05); overflow: hidden; }
.cmp::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: var(--c); }
.cmp__tag { display: inline-block; padding: 5px 10px; border-radius: 8px; background: color-mix(in srgb, var(--c) 12%, #fff); color: color-mix(in srgb, var(--c) 62%, #16122E); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cmp h3 { margin-top: 12px; font-size: 1.45rem; }
.cmp > p { margin-top: 6px; color: var(--muted); font-size: .95rem; }
.center-cta { margin-top: 22px; display: flex; justify-content: center; }
.center-cta .btn { white-space: normal; }

/* other services */
.others-sec { padding-top: clamp(40px, 6vw, 72px); }
.others__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.others__head h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.others { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 1000px) { .others { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } }
.other { position: relative; display: flex; flex-direction: column; gap: 4px; padding: 16px 16px 18px; border-radius: 22px; background: #fff; box-shadow: var(--sh-s), inset 0 0 0 1px rgba(22, 18, 46, .05); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.other__ic { width: 44px; height: 44px; margin-bottom: 8px; border-radius: 14px; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 13%, #fff); color: var(--c); }
.other__ic .i { width: 22px; height: 22px; }
.other b { color: var(--ink); font-size: 1rem; line-height: 1.25; }
.other > span:not(.other__ic) { font-size: .84rem; color: var(--muted); line-height: 1.4; }
.other__go { position: absolute; right: 16px; top: 18px; width: 18px; height: 18px; color: var(--c); transition: transform .3s var(--ease); }
@media (hover: hover) { .other:hover { transform: translateY(-4px); box-shadow: var(--sh); } .other:hover .other__go { transform: translateX(3px); } }
.page-oto .other[data-page="oto"], .page-sprey .other[data-page="sprey"], .page-epoksi .other[data-page="epoksi"], .page-sanayi .other[data-page="sanayi"], .page-cephe .other[data-page="cephe"] { display: none; }
.faq-sec--tint { background: #F1EFFA; }
.sec--tint { background: linear-gradient(180deg, var(--bg), #F1EFFA); }
.sec--cream { background: var(--cream); }
.phero + .sec { padding-top: clamp(30px, 4.5vw, 64px); }
.card4__icon, .other__ic, .step__icon, .fact__ic { color: color-mix(in srgb, var(--c) 85%, #16122E); }
.logo { height: auto; }

/* ---------- 24. Service-area page ---------- */
.hub { position: relative; aspect-ratio: 520 / 360; border-radius: clamp(24px, 4vw, 34px); background: radial-gradient(circle at 50% 50%, #fff 0, #F3F0FF 62%, #ECE8FB 100%); box-shadow: var(--sh-l), inset 0 0 0 1px rgba(22, 18, 46, .05); overflow: hidden; }
.hub__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hub__ring { fill: none; stroke: rgba(62, 4, 247, .1); stroke-width: 1.5; stroke-dasharray: 3 7; }
.hub__line { stroke: var(--brand); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 5 9; opacity: .45; animation: hubflow 1.4s linear infinite; }
@keyframes hubflow { to { stroke-dashoffset: -28; } }
.hub__node circle { fill: var(--brand); }
.hub__node .hub__ping { fill: none; stroke: var(--brand); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: hubping 2.4s var(--ease) infinite; }
.hub__node:nth-child(2n) .hub__ping { animation-delay: -1.2s; }
@keyframes hubping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2.6); opacity: 0; } }
.hub__node rect { fill: #fff; stroke: var(--line-2); stroke-width: 1; filter: drop-shadow(0 6px 10px rgba(22, 18, 46, .12)); }
.hub__node text { font: 750 13px var(--font); fill: var(--ink); }
.hub__center { position: absolute; left: 50%; top: 50%; width: 31%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; text-align: center; box-shadow: 0 0 0 10px rgba(62, 4, 247, .07), 0 0 0 22px rgba(62, 4, 247, .04), var(--sh); }
.hub__logo { width: 52%; height: auto; margin-bottom: 4px; }
.hub__center b { font-size: clamp(.66rem, 1.6vw, .86rem); color: var(--ink); line-height: 1.15; }
.hub__center span { font-size: clamp(.56rem, 1.3vw, .7rem); font-weight: 650; color: var(--muted); line-height: 1.2; }
@media (max-width: 559px) { .hub__node text { font-size: 15px; } }

.districts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 760px) { .districts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; } }
@media (min-width: 1080px) { .districts { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.district { position: relative; display: flex; flex-direction: column; gap: 4px; padding: 16px 16px 18px; border-radius: 22px; background: #fff; box-shadow: var(--sh-s), inset 0 0 0 1px rgba(22, 18, 46, .05); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.district__ic { width: 42px; height: 42px; margin-bottom: 8px; border-radius: 13px; display: grid; place-items: center; background: var(--yellow); color: var(--ink); }
.district__ic .i { width: 20px; height: 20px; }
.district b { font-size: 1.02rem; color: var(--ink); line-height: 1.25; }
.district > span:not(.district__ic) { font-size: .84rem; color: var(--muted); line-height: 1.35; }
.district__go { position: absolute; right: 16px; top: 18px; width: 18px; height: 18px; color: var(--brand); transition: transform .3s var(--ease); }
@media (hover: hover) { .district:hover { transform: translateY(-4px); box-shadow: var(--sh); } .district:hover .district__go { transform: translateX(3px); } }
@media (min-width: 1080px) { .page-bolge .others { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.ftr__more { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .9rem; color: var(--brand); }
.ftr__more .i { width: 1em; height: 1em; }
