/* ==========================================================================
   BLANCUS — Sistema de design corporativo B2B
   Equipamentos profissionais de limpeza · Mercado europeu
   ========================================================================== */

/* ----- Tokens ----------------------------------------------------------- */
:root {
  /* Cor */
  --ink:        #0A0A0B;
  --ink-soft:   #16171A;
  --graphite:   #1F2126;
  --slate:      #2A2D34;
  --white:      #FFFFFF;
  --paper:      #FAFAF9;
  --mist:       #F2F2EF;
  --line:       #E7E7E3;
  --line-dark:  rgba(255,255,255,.12);
  --steel:      #6B7079;
  --steel-soft: #9A9EA6;
  --ink-70:     rgba(255,255,255,.70);
  --ink-55:     rgba(255,255,255,.55);

  --yellow:      #FFD400;
  --yellow-deep: #EAC400;
  --yellow-soft: rgba(255,212,0,.14);

  /* Tipografia */
  /* Modern corporate / geometric sans-serif */
  --font-display: "Sora", "Manrope", system-ui, sans-serif;
  --font-body:    "Manrope", "Sora", system-ui, sans-serif;

  --fs-eyebrow: .8125rem;
  --fs-body:    1.0625rem;
  --fs-lead:    clamp(1.125rem, 1.6vw, 1.375rem);
  --fs-h3:      clamp(1.25rem, 2vw, 1.5rem);
  --fs-h2:      clamp(1.9rem, 3.4vw, 2.9rem);
  --fs-h1:      clamp(2.3rem, 5vw, 4rem);
  --fs-display: clamp(2.75rem, 6.2vw, 5.5rem);

  /* Espaço & forma */
  --container: 1280px;
  --gutter:    clamp(1.25rem, 5vw, 4rem);
  --section:   clamp(4.5rem, 10vw, 9rem);
  --radius:    8px;
  --radius-sm: 5px;
  --radius-lg: 12px;

  /* Sombra / elevação */
  --shadow-sm: 0 1px 2px rgba(10,10,11,.06), 0 2px 8px rgba(10,10,11,.05);
  --shadow-md: 0 8px 24px rgba(10,10,11,.08), 0 2px 6px rgba(10,10,11,.05);
  --shadow-lg: 0 30px 60px -20px rgba(10,10,11,.28);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur:  .45s;

  /* z */
  --z-header: 100;
  --z-overlay: 90;
}

/* ----- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
}

/* ----- Utilidades ------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section   { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* Eyebrow — rótulo com traço amarelo (assinatura) */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel);
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px; background: var(--yellow); display: block;
}
.eyebrow--light { color: var(--ink-70); }

/* Linha de precisão sob títulos */
.precision {
  position: relative; display: inline-block;
}
.precision::after {
  content: ""; position: absolute; left: 0; bottom: -.32em;
  width: 100%; height: 4px; background: var(--yellow); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease);
}
.is-visible .precision::after,
.precision.is-visible::after { transform: scaleX(1); }

.lead { font-size: var(--fs-lead); color: var(--slate); line-height: 1.55; max-width: 56ch; }
.muted { color: var(--steel); }

/* ----- Botões ----------------------------------------------------------- */
.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; gap: .65rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  letter-spacing: .01em;
  padding: 1rem 1.6rem; border: 1.5px solid var(--bg); border-radius: 4px;
  cursor: pointer; min-height: 48px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { --bg: var(--yellow); --fg: var(--ink); border-color: var(--yellow); }
.btn--primary:hover { --bg: var(--yellow-deep); border-color: var(--yellow-deep); }
.btn--light { --bg: #fff; --fg: var(--ink); border-color: #fff; }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light { --bg: transparent; --fg: #fff; border-color: var(--line-dark); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--sm { padding: .7rem 1.15rem; min-height: 42px; font-size: .875rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--ink); border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: border-color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover { border-color: var(--yellow); gap: .8rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar {
  background: var(--ink); color: var(--ink-70);
  font-size: .82rem; border-bottom: 1px solid var(--line-dark);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 44px; }
.topbar__left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: .5rem; transition: color .25s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 16px; height: 16px; }
.topbar__right { display: flex; align-items: center; gap: 1.25rem; }
.lang { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; color: #fff; }
.lang a { opacity: .5; font-weight: 600; color: #fff; transition: opacity .2s, color .2s; }
.lang a:hover { opacity: 1; }
.lang a.is-active { opacity: 1; color: var(--yellow); }
.lang span { opacity: .45; font-weight: 500; }
.lang span.is-active { opacity: 1; color: var(--yellow); }

.header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--ink); color: #fff;
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.header.is-stuck { box-shadow: 0 10px 30px -12px rgba(0,0,0,.5); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 1.5rem; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: .1rem; }
.logo__img { height: 48px; width: auto; }
.logo__fallback { align-items: center; gap: .1rem; }
.footer .logo__img { height: 42px; }
.logo__mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo__word {
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem;
  letter-spacing: -.04em; color: #fff; line-height: 1;
}
.logo__word b { color: #fff; font-weight: 800; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  font-family: var(--font-display); font-weight: 500; font-size: .98rem;
  color: var(--ink-70); padding: .6rem .95rem; border-radius: 4px;
  transition: color .25s, background .25s;
}
.nav a:hover { color: #fff; }
.nav a.is-current { color: #fff; }
.nav a.is-current::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--yellow);
  margin: .25rem auto 0;
}
.header__actions { display: flex; align-items: center; gap: .9rem; }

/* Hambúrguer */
.burger {
  display: none; width: 46px; height: 46px; border: 1.5px solid var(--line-dark);
  background: transparent; border-radius: 6px; cursor: pointer; position: relative;
}
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: #fff; transition: .3s var(--ease); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.is-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.is-open .burger span:nth-child(2) { opacity: 0; }
.is-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Menu mobile */
.mobile-nav {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: var(--ink); color: #fff;
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column; padding: 9rem var(--gutter) 2rem;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  visibility: hidden;
}
.is-open .mobile-nav { transform: translateX(0); visibility: visible; }
.mobile-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 1.6rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line-dark); color: #fff;
}
.mobile-nav a.is-current { color: var(--yellow); }
.mobile-nav__cta { margin-top: auto; padding-top: 2rem; display: grid; gap: .75rem; }
.mobile-nav__cta .btn { font-size: .95rem; padding: 1rem 1.6rem; border-bottom: none; justify-content: center; width: 100%; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; background: var(--ink); color: #fff; overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(4rem, 9vw, 8rem);
}
/* Spotlights — assinatura visual */
.hero::before {
  content: ""; position: absolute; top: -20%; right: 8%; width: 55vw; height: 120%;
  pointer-events: none; opacity: .5;
  background: radial-gradient(50% 45% at 60% 0%, rgba(150,180,255,.12), transparent 68%);
  filter: blur(10px);
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero h1 {
  font-size: var(--fs-display); margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--yellow); }
.hero__lead { color: var(--ink-70); font-size: var(--fs-lead); max-width: 46ch; margin-bottom: 2.25rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.75rem; }
.hero__stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap; }
.hero__stat .n { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: #fff; line-height: 1; }
.hero__stat .n span { color: var(--yellow); }
.hero__stat .l { font-size: .85rem; color: var(--ink-55); margin-top: .35rem; }

/* Visual do herói (máquina) */
.hero__visual { position: relative; align-self: stretch; min-height: 480px; display: grid; place-items: end center; }
.hero__machine {
  position: relative; z-index: 2;
  width: 100%; height: auto; max-height: 740px; object-fit: contain;
  /* sol, üst ve alt kenarı koyu zemine yumuşatarak kaynaştır (dikiş izi olmasın) */
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0, #000 14%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 82%, transparent 99%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to right,  transparent 0, #000 14%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 82%, transparent 99%);
          mask-composite: intersect;
}
.hero__halo { display: none; }

/* Onda branca de transição (eco da referência) */
.wave-divider { display: block; width: 100%; height: clamp(40px,6vw,90px); color: var(--white); }
.wave-divider--ink { color: var(--ink); }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust { background: var(--white); border-bottom: 1px solid var(--line); }
.trust__inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
}
.trust__cell { background: #fff; padding: clamp(1.5rem,3vw,2.25rem); display: flex; gap: 1rem; align-items: flex-start; }
.trust__cell svg { width: 30px; height: 30px; color: var(--ink); flex-shrink: 0; }
.trust__cell .t { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.trust__cell .d { font-size: .9rem; color: var(--steel); margin-top: .15rem; }

/* ==========================================================================
   SECTION HEADER genérico
   ========================================================================== */
.sec-head { max-width: 64ch; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.sec-head .eyebrow { margin-bottom: 1.25rem; }
.sec-head h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--split { max-width: none; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }

/* ==========================================================================
   CATEGORIAS
   ========================================================================== */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.cat {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2.25rem); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cat::before {
  content: ""; position: absolute; inset: 0; background: var(--yellow);
  transform: translateY(101%); transition: transform var(--dur) var(--ease); z-index: 0;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat:hover::before { transform: translateY(0); }
.cat--feature { grid-row: span 2; background: var(--ink); color: #fff; border-color: var(--ink); }
.cat--feature::before { background: var(--yellow); }
.cat > * { position: relative; z-index: 1; }
.cat__icon {
  width: 56px; height: 56px; border-radius: 8px; background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; margin-bottom: 1.5rem; transition: background var(--dur) var(--ease);
}
.cat__icon svg { width: 30px; height: 30px; color: var(--ink); }
.cat--feature .cat__icon { background: rgba(255,255,255,.08); border-color: var(--line-dark); }
.cat--feature .cat__icon svg { color: var(--yellow); }
.cat:hover .cat__icon { background: var(--ink); }
.cat:hover .cat__icon svg { color: var(--yellow); }
.cat--feature:hover .cat__icon { background: var(--ink); }
.cat__name { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-h3); margin-bottom: .6rem; }
.cat__desc { color: var(--steel); font-size: .96rem; margin-bottom: 1.5rem; flex-grow: 1; }
.cat--feature .cat__desc { color: var(--ink-70); }
.cat:hover .cat__desc, .cat:hover .cat__name, .cat:hover .cat__tags li { color: var(--ink); }
.cat__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
.cat__tags li {
  font-size: .76rem; font-weight: 600; font-family: var(--font-display);
  color: var(--steel); background: #fff; border: 1px solid var(--line);
  padding: .28rem .65rem; border-radius: 4px;
}
.cat--feature .cat__tags li { background: rgba(255,255,255,.08); border-color: var(--line-dark); color: var(--ink-70); }
.cat__link { margin-top: auto; }

/* ==========================================================================
   SPOTLIGHT FEATURE (produto em destaque)
   ========================================================================== */
.spotlight { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.spotlight::before {
  content: ""; position: absolute; top: -20%; left: 30%; width: 50vw; height: 140%;
  background: radial-gradient(50% 50% at 50% 0%, rgba(255,255,255,.16), transparent 70%);
  pointer-events: none;
}
.spotlight__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.spotlight__visual { position: relative; display: grid; place-items: center; min-height: 420px; }
.spotlight__machine { width: auto; height: clamp(360px, 46vw, 520px); object-fit: contain; filter: drop-shadow(0 30px 34px rgba(0,0,0,.55)); }
.spotlight h2 { font-size: var(--fs-h2); margin-bottom: 1.25rem; }
.spotlight .lead { color: var(--ink-70); margin-bottom: 2rem; }
.feature-list { display: grid; gap: 1.25rem; margin-bottom: 2.25rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list .ico { width: 42px; height: 42px; border-radius: 6px; background: rgba(255,255,255,.07); border: 1px solid var(--line-dark); display: grid; place-items: center; flex-shrink: 0; }
.feature-list .ico svg { width: 22px; height: 22px; color: var(--yellow); }
.feature-list .t { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.feature-list .d { color: var(--ink-55); font-size: .92rem; }

/* ==========================================================================
   PORQUÊ / VALORES
   ========================================================================== */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2vw,1.5rem); }
.value { padding: 2rem 1.75rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color var(--dur), transform var(--dur) var(--ease); }
.value:hover { transform: translateY(-4px); border-color: var(--ink); }
.value__num { font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--yellow-deep); letter-spacing: .1em; }
.value h3 { font-size: 1.2rem; margin: 1rem 0 .6rem; }
.value p { color: var(--steel); font-size: .94rem; }

/* ==========================================================================
   SETORES
   ========================================================================== */
.sectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sector { background: #fff; padding: clamp(1.75rem,3vw,2.5rem); transition: background var(--dur) var(--ease); }
.sector:hover { background: var(--paper); }
.sector svg { width: 34px; height: 34px; color: var(--ink); margin-bottom: 1.25rem; }
.sector h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.sector p { color: var(--steel); font-size: .92rem; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { background: var(--yellow); color: var(--ink); }
.cta-band__inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-band h2 { font-size: clamp(1.8rem, 3.2vw, 2.75rem); max-width: 18ch; }
.cta-band p { margin-top: .75rem; max-width: 50ch; color: rgba(10,10,11,.7); }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   PÁGINA — cabeçalho interno
   ========================================================================== */
.page-hero { background: var(--ink); color: #fff; padding-block: clamp(3rem,6vw,5rem) clamp(3.5rem,7vw,6rem); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; top: -30%; right: -5%; width: 45vw; height: 160%;
  background: radial-gradient(50% 50% at 50% 30%, rgba(255,255,255,.10), transparent 70%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 60ch; }
.page-hero__inner--center { max-width: 64ch; margin-inline: auto; text-align: center; }
.page-hero__inner--center p { max-width: 54ch; margin-inline: auto; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: var(--ink-55); margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 { font-size: var(--fs-h1); margin-bottom: 1.25rem; }
.page-hero p { color: var(--ink-70); font-size: var(--fs-lead); max-width: 52ch; }

/* ==========================================================================
   PRODUTOS — linhas detalhadas
   ========================================================================== */
.prod {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem);
  align-items: center; padding-block: clamp(2.5rem,5vw,4rem);
  border-bottom: 1px solid var(--line);
}
.prod:nth-child(even) .prod__media { order: 2; }
.prod__media {
  position: relative; background: var(--ink); border-radius: var(--radius-lg); overflow: hidden;
  min-height: 360px; display: grid; place-items: center;
}
.prod__media::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 15%, rgba(255,255,255,.18), transparent 70%);
}
.prod__media svg.machine { position: relative; z-index: 1; width: clamp(180px,55%,260px); filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); }
.prod__badge {
  position: absolute; top: 1.25rem; left: 1.25rem; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: .75rem; letter-spacing: .1em;
  background: var(--yellow); color: var(--ink); padding: .4rem .8rem; border-radius: 4px;
}
.prod__eyebrow { margin-bottom: 1rem; }
.prod h2 { font-size: clamp(1.6rem,2.8vw,2.3rem); margin-bottom: 1rem; }
.prod p { color: var(--steel); margin-bottom: 1.75rem; }
.specs { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem 1.5rem; margin-bottom: 2rem; }
.specs li { display: flex; gap: .65rem; align-items: flex-start; font-size: .94rem; }
.specs svg { width: 20px; height: 20px; color: var(--yellow-deep); flex-shrink: 0; margin-top: .15rem; }
.prod__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   SOBRE
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.about-figure { background: var(--ink); border-radius: var(--radius-lg); min-height: 440px; position: relative; overflow: hidden; display: grid; place-items: center; }
.about-figure::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 10%, rgba(255,255,255,.16), transparent 70%); }
.about-figure svg { position: relative; z-index: 1; width: 50%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1rem,2vw,1.5rem); }
.stat { text-align: center; padding: 2rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,4vw,3rem); line-height: 1; }
.stat .n span { color: var(--yellow-deep); }
.stat .l { color: var(--steel); font-size: .9rem; margin-top: .5rem; }

.timeline { display: grid; gap: 0; max-width: 720px; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 2rem; padding-block: 1.75rem; border-bottom: 1px solid var(--line); }
.tl-item .year { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.tl-item .year span { display: block; width: 28px; height: 3px; background: var(--yellow); margin-top: .5rem; }
.tl-item h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.tl-item p { color: var(--steel); font-size: .94rem; }

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-info { display: grid; gap: 1.5rem; }
.contact-card { display: flex; gap: 1rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; align-items: flex-start; }
.contact-card svg { width: 26px; height: 26px; color: var(--ink); flex-shrink: 0; }
.contact-card .t { font-family: var(--font-display); font-weight: 700; margin-bottom: .2rem; }
.contact-card a, .contact-card p { color: var(--steel); font-size: .95rem; }
.contact-card a:hover { color: var(--ink); }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem,3vw,2.5rem); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; }
.field label .req { color: #C0392B; }
.field input, .field select, .field textarea {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: .9rem 1rem; min-height: 50px; transition: border-color .2s, box-shadow .2s;
  width: 100%; max-width: 100%; box-sizing: border-box;
}
.field textarea { min-height: 130px; resize: vertical; }
.contact-grid > *, .contact-info, .form, .form__row > *, .field { min-width: 0; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px var(--yellow-soft);
}
.field .hint { font-size: .82rem; color: var(--steel); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #C0392B; }
.field .err { font-size: .82rem; color: #C0392B; display: none; }
.field.has-error .err { display: block; }
.form__success {
  display: none; align-items: center; gap: .75rem; background: #0E3B2E; color: #fff;
  padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem;
}
.form__success.is-shown { display: flex; }
.form__success svg { width: 22px; height: 22px; color: var(--yellow); flex-shrink: 0; }
.consent { display: flex; gap: .65rem; align-items: flex-start; }
.consent input { width: 20px; height: 20px; min-height: auto; margin-top: .2rem; accent-color: var(--ink); }
.consent label { font-weight: 400; font-family: var(--font-body); font-size: .88rem; color: var(--steel); }

.map-embed { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; height: 360px; background: var(--mist); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: var(--ink-70); padding-block: clamp(3.5rem,6vw,5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(2rem,4vw,3rem); padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer .logo__word { font-size: 1.5rem; }
.footer__about { margin: 1.25rem 0 1.5rem; max-width: 34ch; font-size: .92rem; color: var(--ink-55); }
.footer__social { display: flex; gap: .6rem; }
.footer__social a { width: 42px; height: 42px; border: 1px solid var(--line-dark); border-radius: 6px; display: grid; place-items: center; transition: background .25s, border-color .25s; }
.footer__social a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.footer__social svg { width: 18px; height: 18px; }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer__links { display: grid; gap: .7rem; }
.footer__links a { font-size: .94rem; transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: grid; gap: .85rem; font-size: .94rem; }
.footer__contact div { display: flex; gap: .65rem; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; margin-top: .2rem; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 2rem; font-size: .85rem; color: var(--ink-55); flex-wrap: wrap; }
.footer__bottom a:hover { color: #fff; }

/* WhatsApp flutuante */
.wa-float {
  position: fixed; right: clamp(1rem,3vw,2rem); bottom: clamp(1rem,3vw,2rem); z-index: 80;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* ==========================================================================
   REVEAL (animação on-scroll)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; min-height: 300px; }
  .spotlight__grid { grid-template-columns: 1fr; }
  .spotlight__visual { min-height: 320px; order: -1; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .cat--feature { grid-row: span 1; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust__inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav, .header__actions .btn { display: none; }
  .burger { display: block; }
  .sectors { grid-template-columns: 1fr; }
  .sec-head--split { grid-template-columns: 1fr; }
  .prod { grid-template-columns: 1fr; }
  .prod:nth-child(even) .prod__media { order: 0; }
  .prod__media { min-height: 280px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { min-height: 320px; order: -1; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .topbar__left { gap: 1rem; }
}
@media (max-width: 560px) {
  .cats { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
  .topbar__left .topbar__hide { display: none; }
  .tl-item { grid-template-columns: 1fr; gap: .5rem; }
}

/* Reduzir movimento */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .precision::after { transform: scaleX(1); }
}

/* ==========================================================================
   NAV DROPDOWN (Produtos) + SEKMELER
   ========================================================================== */
.nav-dd { position: relative; }
.nav-dd__toggle {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-display); font-weight: 500; font-size: .98rem;
  color: var(--ink-70); padding: .6rem .95rem; border-radius: 4px; transition: color .25s;
}
.nav-dd:hover .nav-dd__toggle, .nav-dd:focus-within .nav-dd__toggle, .nav-dd__toggle:hover { color: #fff; }
.nav-dd__toggle.is-current { color: #fff; }
.nav-dd__chev { width: 13px; height: 13px; transition: transform .25s var(--ease); }
.nav-dd:hover .nav-dd__chev, .nav-dd:focus-within .nav-dd__chev { transform: rotate(180deg); }
.nav-dd::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.nav-dd__menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--ink-soft); border: 1px solid var(--line-dark); border-radius: 8px;
  padding: .5rem; min-width: 300px; display: grid; gap: 1px;
  opacity: 0; visibility: hidden; pointer-events: none; box-shadow: var(--shadow-lg); z-index: 120;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.nav-dd:hover .nav-dd__menu, .nav-dd:focus-within .nav-dd__menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dd__menu a {
  display: flex; align-items: center; gap: .6rem; padding: .7rem .85rem; border-radius: 6px;
  font-family: var(--font-display); font-weight: 500; font-size: .92rem; color: var(--ink-70);
  white-space: nowrap; transition: background .2s, color .2s;
}
.nav-dd__menu a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; opacity: 0; transition: opacity .2s; }
.nav-dd__menu a:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav-dd__menu a:hover::before { opacity: 1; }

/* Mobil alt menü */
.mnav-sub { display: grid; gap: 0; padding: .25rem 0 1rem; }
.mobile-nav .mnav-sub a {
  font-family: var(--font-body); font-weight: 500; font-size: 1.02rem; color: var(--ink-55);
  padding: .55rem 0 .55rem 1rem; border: none; border-left: 2px solid var(--line-dark);
}
.mobile-nav .mnav-sub a:hover { color: #fff; border-color: var(--yellow); }

/* Sekmeler (ürünler sayfası) */
.prod-tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: clamp(2rem,4vw,3rem); }
.prod-tab {
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  padding: .7rem 1.05rem; border-radius: 4px; border: 1.5px solid var(--line);
  background: #fff; color: var(--slate); cursor: pointer;
  transition: background .25s var(--ease), color .25s, border-color .25s, transform .25s;
}
.prod-tab:hover { border-color: var(--ink); transform: translateY(-1px); }
.prod-tab.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.prod--panel { display: none; border-bottom: none; padding-block: 0; }
.prod--panel.is-active { display: grid; }
.prod--panel .prod__media { order: 0; }

/* ===== Mega-menu (Produtos): 2 sütun, numaralı, görselli ===== */
/* ===== Mega-menu — premium B2B (açık panel) ===== */
.nav-dd__menu--mega {
  width: min(1120px, 95vw);
  grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, auto);
  grid-auto-flow: column; column-gap: 4rem; row-gap: 0;
  padding: 2.25rem 2.75rem;
  background: #ffffff; border: 1px solid #e8e8e4; border-radius: 10px;
  box-shadow: 0 28px 70px -28px rgba(10,10,11,.45);
}
.nav-dd__menu--mega::before {                 /* dikey ayraç */
  content: ""; position: absolute; top: 2.25rem; bottom: 2.25rem; left: 50%;
  width: 1px; background: #ececea;
}
.nav-dd__menu--mega a::before { content: none; }
.nav-dd__menu--mega .mm-item {
  display: grid; grid-template-columns: 2.2rem 92px 1fr auto; align-items: center; gap: 1.4rem;
  padding: 1.2rem .4rem; border-bottom: 1px solid #ededeb; border-radius: 0;
  white-space: normal; transition: background .2s;
}
.nav-dd__menu--mega .mm-item:nth-child(4),
.nav-dd__menu--mega .mm-item:nth-child(8) { border-bottom: 0; }
.nav-dd__menu--mega .mm-item:hover { background: #f6f6f3; }
.nav-dd__menu--mega .mm-num {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--yellow-deep); letter-spacing: .02em;
}
.nav-dd__menu--mega .mm-thumb {
  width: 92px; height: 92px; background: none; border: 0; padding: 0;
  display: grid; place-items: center;
}
.nav-dd__menu--mega .mm-thumb svg,
.nav-dd__menu--mega .mm-thumb img { max-width: 92px; max-height: 82px; width: auto; height: auto; object-fit: contain; }
.nav-dd__menu--mega .mm-text { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.nav-dd__menu--mega .mm-name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.18rem;
  color: #14213a; line-height: 1.2; letter-spacing: -.01em;
}
.nav-dd__menu--mega .mm-desc {
  font-family: var(--font-body); font-size: .9rem; color: #6b7079; line-height: 1.35;
}
.nav-dd__menu--mega .mm-arrow {
  width: 20px; height: 20px; color: #c2c4ca; transition: transform .2s, color .2s;
}
.nav-dd__menu--mega .mm-item:hover .mm-arrow { color: var(--ink); transform: translateX(4px); }
.nav-dd__menu--mega .mm-item:hover .mm-name { color: var(--ink); }

@media (max-width: 1180px) {
  .nav-dd__menu--mega { width: min(940px, 95vw); column-gap: 2.5rem; padding: 1.75rem 2rem; }
  .nav-dd__menu--mega .mm-item { grid-template-columns: 2rem 74px 1fr auto; gap: 1rem; padding: 1rem .3rem; }
  .nav-dd__menu--mega .mm-thumb { width: 74px; height: 74px; }
  .nav-dd__menu--mega .mm-name { font-size: 1.05rem; }
}
@media (max-width: 760px) {
  .nav-dd__menu--mega { width: auto; grid-template-columns: 1fr; grid-auto-flow: row; }
  .nav-dd__menu--mega::before { display: none; }
}

/* ==========================================================================
   ANA SAYFA — Gama de produtos (8 kategori kartı)
   ========================================================================== */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.pcard {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pcard__img { height: 168px; background: #f4f4f2; display: grid; place-items: center; padding: 1.25rem; }
.pcard__img img { max-width: 100%; max-height: 130px; width: auto; height: auto; object-fit: contain; }
.pcard__body { padding: 1.25rem 1.25rem 1.4rem; display: flex; flex-direction: column; flex-grow: 1; }
.pcard__name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: #14213a; line-height: 1.2; letter-spacing: -.01em; margin-bottom: .4rem; }
.pcard__desc { color: var(--steel); font-size: .92rem; line-height: 1.4; flex-grow: 1; margin-bottom: 1rem; }
.pcard__more { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--ink); }
.pcard__more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.pcard:hover .pcard__more { color: var(--yellow-deep); }
.pcard:hover .pcard__more svg { transform: translateX(4px); }
@media (max-width: 1024px) { .pgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pgrid { grid-template-columns: 1fr; } }

/* ==========================================================================
   PRODUCTS — kategori vitrini (overview) + kategori detay sayfası
   ========================================================================== */
.catgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.catcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.catcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.catcard__img { position: relative; height: 200px; background: #f4f4f2; display: grid; place-items: center; padding: 1.5rem; }
.catcard__img img { max-width: 100%; max-height: 150px; width: auto; height: auto; object-fit: contain; }
.catcard__num { position: absolute; top: .9rem; left: 1.1rem; font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--yellow-deep); }
.catcard__body { padding: 1.25rem 1.25rem 1.4rem; display: flex; flex-direction: column; flex-grow: 1; }
.catcard__name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: #14213a; line-height: 1.2; letter-spacing: -.01em; margin-bottom: .4rem; }
.catcard__desc { color: var(--steel); font-size: .92rem; line-height: 1.4; flex-grow: 1; margin-bottom: 1.1rem; }
.catcard__btn { align-self: flex-start; }
@media (max-width: 1024px) { .catgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .catgrid { grid-template-columns: 1fr; } }

.cat-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cat-hero__back { display: inline-flex; align-items: center; gap: .4rem; color: var(--ink-55); font-family: var(--font-display); font-weight: 600; font-size: .85rem; margin-bottom: 1.25rem; }
.cat-hero__back svg { width: 16px; height: 16px; }
.cat-hero__back:hover { color: #fff; }
.cat-hero__text h1 { font-size: var(--fs-h1); margin: .25rem 0 1.25rem; }
.cat-hero__text p { color: var(--ink-70); font-size: var(--fs-lead); max-width: 52ch; margin-bottom: 2rem; }
.cat-hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.cat-hero__media { position: relative; display: grid; place-items: center; min-height: 380px; }
.cat-hero__media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 55% at 55% 45%, rgba(255,255,255,.14), transparent 70%); }
.cat-hero__media img { position: relative; z-index: 1; max-height: 480px; width: auto; filter: drop-shadow(0 28px 32px rgba(0,0,0,.55)); }
@media (max-width: 860px) { .cat-hero__grid { grid-template-columns: 1fr; } .cat-hero__media { order: -1; min-height: 280px; } .cat-hero__media img { max-height: 320px; } }

.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2.5rem; }
.benefits li { display: flex; gap: .85rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; color: var(--slate); }
.benefits svg { width: 22px; height: 22px; color: var(--yellow-deep); flex-shrink: 0; margin-top: .15rem; }
@media (max-width: 640px) { .benefits { grid-template-columns: 1fr; } }

.downloads { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: clamp(1.5rem, 3vw, 2.5rem); }
.downloads__intro .eyebrow { margin-bottom: .75rem; }
.downloads__intro p { color: var(--steel); }
.downloads__cards { display: grid; gap: .85rem; }
.dlcard { display: flex; align-items: center; gap: .85rem; padding: 1rem 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-family: var(--font-display); font-weight: 600; font-size: .95rem; transition: border-color .2s, transform .2s; }
.dlcard svg { width: 24px; height: 24px; color: var(--ink); }
.dlcard:hover { border-color: var(--ink); transform: translateY(-2px); }
@media (max-width: 760px) { .downloads { grid-template-columns: 1fr; } }

/* Kategori hero: makine.png koyu render kenarlarını zemine kaynaştır */
.cat-hero__media img[src*="makine.png"],
.cat-hero__media img[src*="rideon.png"],
.cat-hero__media img[src*="aspirador.png"],
.cat-hero__media img[src*="WalkBehindScrubbers.png"],
.cat-hero__media img[src*="JETPOWER.png"],
.cat-hero__media img[src*="jetpump.png"],
.cat-hero__media img[src*="street.png"],
.cat-hero__media img[src*="arabalisokak.png"],
.cat-hero__media img[src*="/trolley.png"] {
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent),
                      linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-composite: source-in;
          mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent),
                      linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
          mask-composite: intersect;
}

/* Kategori sayfası — ürün kartları (görsel + ad, tüm kart tıklanabilir) */
.modelgrid { display: grid; grid-template-columns: repeat(auto-fill, 270px); justify-content: start; gap: clamp(1rem, 2vw, 1.5rem); }
.modelcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.modelcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--ink); }
.modelcard__img { height: 220px; background: #f4f4f2; display: grid; place-items: center; padding: 1.5rem; }
.modelcard__img img { max-width: 80%; max-height: 175px; width: auto; height: auto; object-fit: contain; }
.modelcard__img img[src*="dikey"] { max-height: 205px; }
.product__img img[src*="dikey"] { max-height: 420px; }
.modelcard__img img[src*="combo-"] { max-width: 100%; max-height: 185px; }
.product__img img[src*="combo-"] { max-width: 100%; max-height: 360px; }
.modelcard__name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: #14213a; letter-spacing: -.01em; padding: 1rem 1.25rem 1.25rem; }
@media (max-width: 620px) { .modelgrid { grid-template-columns: 1fr; } }

/* ==========================================================================
   ÜRÜN DETAY SAYFASI — sade B2B katalog düzeni (açık zemin)
   ========================================================================== */
.product__back { display: inline-flex; align-items: center; gap: .4rem; color: var(--steel); font-family: var(--font-display); font-weight: 600; font-size: .85rem; margin-bottom: 1.75rem; }
.product__back svg { width: 16px; height: 16px; }
.product__back:hover { color: var(--ink); }
.product { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.product__name { font-size: clamp(1.7rem, 3vw, 2.3rem); color: #14213a; letter-spacing: -.02em; margin-bottom: 1.5rem; }
.product__img { background: #f5f5f3; border: 1px solid var(--line); border-radius: 8px; display: grid; place-items: center; padding: 2rem; min-height: 320px; margin-bottom: 1.75rem; }
.product__img img { max-width: 100%; max-height: 340px; width: auto; height: auto; object-fit: contain; }
.product__intro { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: #14213a; margin-bottom: .75rem; }
.product__desc { color: var(--slate); margin-bottom: 1.75rem; }
.product__sub { font-size: 1.05rem; color: #14213a; margin-bottom: .85rem; }
.product__features { display: grid; gap: .6rem; }
.product__features li { color: var(--slate); font-size: .95rem; padding-left: 1.1rem; position: relative; line-height: 1.5; }
.product__features li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; background: var(--yellow); border-radius: 1px; }
.product__features strong { color: #14213a; font-weight: 600; }
.spec-title { font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); margin-bottom: 1rem; }
.spec-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); }
.spec-table td { padding: .8rem 1.1rem; font-size: .94rem; border-bottom: 1px solid var(--line); }
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table tr:nth-child(odd) { background: #f6f6f4; }
.spec-table td:first-child { color: var(--steel); }
.spec-table td:last-child { text-align: right; font-weight: 600; color: #14213a; font-family: var(--font-display); }
.product__actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.catalog-link { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 600; color: var(--yellow-deep); }
.catalog-link svg { width: 26px; height: 26px; color: var(--yellow-deep); }
.catalog-link:hover { color: var(--ink); }
.product__btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.product-questions { margin-top: clamp(2.5rem, 5vw, 4rem); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem); }
.product-questions span { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.4rem); color: #14213a; }
@media (max-width: 900px) { .product { grid-template-columns: 1fr; } }

/* Ürün sayfası — üst boşluğu azalt (geri linki yukarı) */
.product-page { padding-top: clamp(1.5rem, 3vw, 2.5rem); }

/* Ürün başlığı alt türü */
.product__type { display: block; font-family: var(--font-display); font-weight: 500; font-size: .42em; color: var(--steel); letter-spacing: 0; margin-top: .5rem; }

/* Products toggle aktif çizgisi: yanında değil, kelimenin altında */
.nav-dd__toggle { position: relative; }
.nav .nav-dd__toggle.is-current::after {
  position: absolute; left: 50%; transform: translateX(calc(-50% - 9px));
  bottom: .3rem; width: 22px; height: 2px; margin: 0;
}

/* Ride-on render'ı orantılı büyüt */
.cat-hero__media img[src*="rideon.png"],
.cat-hero__media img[src*="WalkBehindScrubbers.png"],
.cat-hero__media img[src*="street.png"],
.cat-hero__media img[src*="arabalisokak.png"],
.cat-hero__media img[src*="/trolley.png"] { width: 118%; max-width: 118%; max-height: 560px; }
@media (max-width: 860px) { .cat-hero__media img[src*="rideon.png"],
.cat-hero__media img[src*="WalkBehindScrubbers.png"],
.cat-hero__media img[src*="street.png"],
.cat-hero__media img[src*="arabalisokak.png"],
.cat-hero__media img[src*="/trolley.png"] { width: 100%; max-width: 100%; } }

/* Trolley hero — biraz daha büyük */
.cat-hero__media img[src*="/trolley.png"] { width: 138%; max-width: 138%; }
@media (max-width: 860px) { .cat-hero__media img[src*="/trolley.png"] { width: 100%; max-width: 100%; } }

/* ==========================================================================
   ABOUT US sayfası
   ========================================================================== */
.about2 { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about2-fig { background: #f4f4f2; border: 1px solid var(--line); border-radius: 8px; display: grid; place-items: center; padding: 2.5rem; min-height: 360px; }
.about2-fig img { max-width: 100%; max-height: 360px; width: auto; height: auto; object-fit: contain; }
.about2-h { font-size: var(--fs-h2); color: #14213a; letter-spacing: -.02em; margin: 1rem 0 1.25rem; }
.about2 .muted { margin-bottom: 1rem; }
@media (max-width: 860px) { .about2 { grid-template-columns: 1fr; } .about2-fig { order: -1; min-height: 260px; } }

.brand-intro { color: var(--steel); max-width: 74ch; margin: 0 auto .85rem; }
.brandgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); margin-top: clamp(2rem, 4vw, 3rem); }
.brandcard { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: clamp(1.75rem, 3vw, 2.25rem); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.brandcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.brandcard__logo { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; color: #14213a; }
.brandcard__logo::after { content: ""; display: block; width: 34px; height: 3px; background: var(--yellow); margin-top: .6rem; }
.brandcard__sub { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--steel); margin: .95rem 0 .75rem; }
.brandcard__desc { color: var(--slate); font-size: .95rem; line-height: 1.55; }
@media (max-width: 860px) { .brandgrid { grid-template-columns: 1fr; } }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.why-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.whyfeat { border-top: 2px solid var(--yellow); padding-top: 1rem; }
.whyfeat__t { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #14213a; margin-bottom: .4rem; }
.whyfeat__d { color: var(--steel); font-size: .92rem; line-height: 1.5; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .why-feats { grid-template-columns: 1fr; } }

.about-cta { background: var(--ink); color: #fff; }
.about-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-block: clamp(3rem, 6vw, 4.5rem); }
.about-cta h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); max-width: 20ch; }
.about-cta p { color: var(--ink-70); margin-top: .75rem; max-width: 48ch; }
.about-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* About — bina fotoğrafı (Who we are) */
.about2-fig--photo { background: none; padding: 0; overflow: hidden; min-height: 0; align-self: center; }
.about2-fig--photo img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; display: block; }
@media (max-width: 860px) { .about2-fig--photo img { aspect-ratio: 16 / 10; } }

/* About — görselsiz düzenler */
.about2--solo { display: block; }
.about2--solo > div { max-width: 74ch; }

/* About — marka kartı logoları */
.brandcard__logoimg { margin-bottom: 1.1rem; }
.brandcard__logoimg img { height: 42px; width: auto; max-width: 170px; object-fit: contain; display: block; border-radius: 3px; }

/* About hero — sahne fotoğrafı koyu zemine tamamen erit (sinematik vinyet) */
.cat-hero__media img[src*="tepe.png"] {
  width: 116%; max-width: 116%; max-height: 560px;
  filter: drop-shadow(0 22px 44px rgba(0,0,0,.65));
  -webkit-mask-image:
    radial-gradient(66% 74% at 57% 50%, #000 34%, rgba(0,0,0,.5) 66%, transparent 86%),
    linear-gradient(to top, transparent 0%, #000 22%);
          mask-image:
    radial-gradient(66% 74% at 57% 50%, #000 34%, rgba(0,0,0,.5) 66%, transparent 86%),
    linear-gradient(to top, transparent 0%, #000 22%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}
@media (max-width: 860px) { .cat-hero__media img[src*="tepe.png"] { width: 100%; max-width: 100%; } }
.cat-hero__media img[src*="b45.png"] {
  max-height: 660px; width: auto; max-width: 100%; margin-inline: auto;
  filter: drop-shadow(0 26px 50px rgba(0,0,0,.7));
  -webkit-mask-image:
    radial-gradient(58% 70% at 50% 46%, #000 30%, rgba(0,0,0,.4) 60%, transparent 82%),
    linear-gradient(to top, transparent 0%, #000 18%);
          mask-image:
    radial-gradient(58% 70% at 50% 46%, #000 30%, rgba(0,0,0,.4) 60%, transparent 82%),
    linear-gradient(to top, transparent 0%, #000 18%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}

/* Trolleys — modular banner: kenarları beyaz sayfaya erit (kutu hissini kaldır) */
.modular-banner {
  width: 100%; height: auto; display: block;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%),
                      linear-gradient(to bottom, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%),
                      linear-gradient(to bottom, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-composite: intersect;
}
