*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:      #009FDA;
  --brand-h:    #007AB8;
  --brand-l:    #E8F5FC;
  --dark:     #002060;
  --gray:     #374151;
  --gray-m:   #6B7280;
  --gray-l:   #D1D5DB;
  --bg:       #FFFFFF;
  --bg-off:   #F4F8FB;
  --bg-dark:  #002060;
  --border:   #D6E8F4;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--gray);
  line-height: 1.6;
  text-wrap: pretty;
}

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: white;
  border-bottom: 3px solid var(--brand);
  height: 68px; display: flex; align-items: center;
  box-shadow: 0 2px 16px rgba(0,32,96,0.10);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  width: 100%; display: flex; align-items: center; gap: 0;
}
.nav-logo {
  margin-right: auto; display: flex; align-items: center;
  gap: 12px; text-decoration: none;
}
.logo-svg text { font-family: 'DM Sans', sans-serif; }
.nav-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand);
  border: 1px solid var(--brand); padding: 2px 8px; border-radius: 2px;
}
.nav-links { display: flex; gap: 2px; list-style: none; margin-right: 20px; }
.nav-links a {
  font-size: 13px; font-weight: 600; color: var(--gray);
  text-decoration: none; padding: 8px 14px; border-radius: 4px;
  letter-spacing: 0.02em; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--brand); background: var(--brand-l); }
.btn-nav {
  background: var(--brand); color: white; border: none; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; padding: 10px 22px; border-radius: 4px;
  text-decoration: none; transition: background .2s, transform .15s;
}
.btn-nav:hover { background: var(--brand-h); transform: translateY(-1px); }


/* ── MOBILE MENU ───────────────────────────────────────── */
.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-burger span {
  display: block; height: 2px; width: 100%;
  background: var(--dark); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: absolute; top: 68px; left: 0; right: 0;
  background: white; border-bottom: 3px solid var(--brand);
  box-shadow: 0 12px 32px rgba(0,32,96,0.15);
  flex-direction: column; padding: 8px 16px 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 8px; text-decoration: none; font-size: 15px;
  font-weight: 600; color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 10px; background: var(--brand); color: white;
  text-align: center; border-radius: 4px; border-bottom: none;
}

/* ── HERO ──────────────────────────────────────────────── */
#hero {
  padding-top: 68px;
  background: linear-gradient(145deg, #002868 0%, #001840 60%, #001030 100%);
  position: relative; overflow: hidden;
}
.hero-band {
  padding: 80px 32px 0;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: end; gap: 48px; min-height: 420px;
  padding-bottom: 0;
}
.hero-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--brand); text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.hero-label::before { content:''; width: 20px; height: 2px; background: var(--brand); }
.hero-band h1 {
  font-size: clamp(32px, 4vw, 58px); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.02em; color: white;
  margin-bottom: 20px;
}
.hero-band h1 em { font-style: normal; color: var(--brand); }
.hero-band p {
  font-size: 16px; color: #9CA3AF; line-height: 1.7;
  max-width: 400px; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--brand); color: white; border: none; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 700;
  padding: 13px 26px; border-radius: 4px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(0,159,218,0.35);
}
.btn-primary:hover { background: var(--brand-h); transform: translateY(-2px); }
.btn-ghost-w {
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.2);
  font-family: inherit; font-size: 14px; font-weight: 600;
  padding: 13px 26px; border-radius: 4px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .2s, background .2s;
}
.btn-ghost-w:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
.hero-visual-wrap {
  align-self: end;
  display: flex; justify-content: flex-end;
}
.hero-machine {
  width: 100%; max-width: 480px; aspect-ratio: 5/3.5;
  background: #1F2937; border-radius: 8px 8px 0 0;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
}
.hero-machine-stripe {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(200,0,28,0.04) 12px, rgba(200,0,28,0.04) 24px);
}
.hero-machine-text {
  position: relative; z-index:1;
  font-size: 26px; font-weight: 800; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.12);
}
.hero-machine-sub {
  position: relative; z-index:1;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2); text-transform: uppercase;
}

/* ── CATEGORY STRIP ────────────────────────────────────── */
#kategorije {
  background: var(--dark); padding: 0 32px;
}
.cat-strip {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px;
}
.cat-tile {
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer; text-decoration: none;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  transition: background .2s;
  position: relative; overflow: hidden;
}
.cat-tile:last-child { border-right: none; }
.cat-tile::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.cat-tile:hover { background: rgba(255,255,255,0.04); }
.cat-tile:hover::after { transform: scaleX(1); }
.cat-tile:hover .cat-arrow { transform: translateX(4px); }
.cat-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,0,28,0.12); border-radius: 8px; flex-shrink: 0;
}
.cat-icon svg { width: 22px; height: 22px; stroke: var(--brand); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cat-name {
  font-size: 13px; font-weight: 700; color: white; letter-spacing: 0.01em;
  line-height: 1.3;
}
.cat-count { font-size: 11px; color: #6B7280; }
.cat-arrow {
  margin-top: auto; font-size: 18px; color: var(--brand);
  transition: transform .2s; line-height: 1;
}

/* ── SHARED SECTION ────────────────────────────────────── */
section { padding: 88px 32px; }
.container { max-width: 1280px; margin: 0 auto; }
.sec-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--brand); text-transform: uppercase; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.sec-label::before { content:''; width: 18px; height: 2px; background: var(--brand); }
h2 {
  font-size: clamp(26px, 2.8vw, 40px); font-weight: 800;
  color: var(--dark); line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.sec-desc {
  font-size: 15px; color: var(--gray-m); max-width: 520px;
  line-height: 1.75; margin-bottom: 52px;
}

/* ── MACHINES ─────────────────────────────────────────── */
#masine { background: var(--bg-off); }
.machines-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.machine-card {
  background: white; cursor: pointer;
  position: relative; overflow: hidden;
  transition: box-shadow .2s;
  display: flex; flex-direction: column;
}
.machine-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.12); z-index: 1; }
.machine-card:hover .mc-arrow { transform: translateX(5px); }
.mc-img {
  width: 100%; aspect-ratio: 3/2; background: #F3F4F6;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px; position: relative; overflow: hidden;
}
.mc-img-pattern {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(200,0,28,0.04) 12px, rgba(200,0,28,0.04) 24px);
}
.mc-img-text {
  position: relative; z-index:1;
  font-size: 18px; font-weight: 800; letter-spacing: 0.1em; color: rgba(0,0,0,0.15);
}
.mc-img-label {
  position: relative; z-index:1;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(0,0,0,0.25);
}
.mc-red-bar {
  height: 4px; background: var(--brand); width: 100%;
}
.mc-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.mc-body h3 {
  font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 6px;
}
.mc-body p {
  font-size: 13px; color: var(--gray-m); line-height: 1.6; margin-bottom: 16px; flex: 1;
}
.mc-specs-row {
  display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap;
}
.mc-spec {
  display: flex; flex-direction: column;
}
.mc-spec-label { font-size: 10px; color: #9CA3AF; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.mc-spec-val { font-size: 14px; font-weight: 700; color: var(--dark); }
.mc-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.mc-link {
  font-size: 12px; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 6px; text-decoration: none;
  cursor: pointer; background: none; border: none; font-family: inherit;
  transition: gap .2s;
}
.mc-link:hover { gap: 10px; }
.mc-arrow { transition: transform .2s; font-size: 16px; }

/* ── O NAMA ────────────────────────────────────────────── */
#onama {
  background: var(--bg-dark);
  position: relative; overflow: hidden;
}
.onama-bg {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -60deg, transparent, transparent 30px,
    rgba(200,0,28,0.02) 30px, rgba(200,0,28,0.02) 60px
  );
}
.onama-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.onama-left .sec-label::before { background: var(--brand); }
.onama-left h2 { color: white; margin-bottom: 20px; }
.onama-left p {
  font-size: 15px; color: #9CA3AF; line-height: 1.8; margin-bottom: 16px;
}
.onama-left p strong { color: white; font-weight: 700; }
.btn-outline-r {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--brand); color: var(--brand);
  font-family: inherit; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 22px; border-radius: 4px; text-decoration: none;
  transition: background .2s, color .2s; margin-top: 8px;
  cursor: pointer; background: none;
}
.btn-outline-r:hover { background: var(--brand); color: white; }
.onama-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.fact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 28px 24px;
}
.fact-num {
  font-size: 40px; font-weight: 800; color: var(--brand);
  line-height: 1; margin-bottom: 6px;
}
.fact-label {
  font-size: 13px; color: #9CA3AF; line-height: 1.5;
}
.fact-card.accent {
  background: var(--brand); border-color: var(--brand);
}
.fact-card.accent .fact-num { color: white; }
.fact-card.accent .fact-label { color: rgba(255,255,255,0.8); }
.viljuskari-link {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 16px 20px; text-decoration: none;
  margin-top: 8px; transition: background .2s; grid-column: 1/-1;
}
.viljuskari-link:hover { background: rgba(255,255,255,0.08); }
.viljuskari-link svg { width: 18px; height: 18px; stroke: var(--brand); fill: none; stroke-width: 2; flex-shrink: 0; }
.viljuskari-link span { font-size: 13px; font-weight: 600; color: white; }
.viljuskari-link small { font-size: 11px; color: #6B7280; display: block; }

/* ── ZAŠTO MIKASA ──────────────────────────────────────── */
#zasto { background: white; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.why-item {
  padding: 32px 28px; border-right: 1px solid var(--border);
  transition: background .2s;
}
.why-item:last-child { border-right: none; }
.why-item:hover { background: var(--brand-l); }
.why-item:hover .why-icon { background: var(--brand); }
.why-item:hover .why-icon svg { stroke: white; }
.why-icon {
  width: 48px; height: 48px;
  background: #D6EEF9; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: background .2s;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--brand); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.why-item h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-item p { font-size: 13px; color: var(--gray-m); line-height: 1.65; }

/* ── KATALOG DETAIL ────────────────────────────────────── */
#katalog { background: var(--bg-off); }
.tab-row {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.tab-btn {
  background: white; border: 1px solid var(--border);
  font-family: inherit; font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--gray-m); padding: 8px 18px;
  border-radius: 4px; cursor: pointer; transition: all .2s;
  text-transform: uppercase;
}
.tab-btn:hover { border-color: var(--brand); color: var(--brand); }
.tab-btn.active { background: var(--brand); color: white; border-color: var(--brand); }
.product-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.prod-card {
  background: white; border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.prod-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.08); border-color: var(--gray-l); }
.prod-img {
  width: 100%; aspect-ratio: 4/3; background: #F9FAFB;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; position: relative; overflow: hidden;
}
.prod-img-pat {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(200,0,28,0.04) 10px, rgba(200,0,28,0.04) 20px);
}
.prod-img-name {
  position: relative; z-index:1;
  font-size: 20px; font-weight: 800; letter-spacing: 0.08em; color: rgba(0,0,0,0.2);
}
.prod-img-hint {
  position: relative; z-index:1;
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(0,0,0,0.25); margin-top: 4px;
}
.prod-body { padding: 16px 20px; }
.prod-name { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.prod-desc { font-size: 12px; color: var(--gray-m); margin-bottom: 12px; line-height: 1.5; }
.prod-specs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 14px;
}
.ps { background: var(--bg-off); border-radius: 4px; padding: 6px 10px; }
.ps-l { font-size: 9px; color: #9CA3AF; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.ps-v { font-size: 13px; font-weight: 700; color: var(--dark); }
.prod-cta {
  width: 100%; background: var(--brand-l); border: 1px solid #9DD4EE;
  color: var(--brand); font-family: inherit; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 9px;
  border-radius: 4px; cursor: pointer; transition: background .2s;
}
.prod-cta:hover { background: var(--brand); color: white; border-color: var(--brand); }

/* ── KONTAKT ───────────────────────────────────────────── */
#kontakt { background: white; }
.kontakt-grid {
  display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1/-1; }
label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-m);
}
input, textarea, select {
  background: var(--bg-off); border: 1px solid var(--border);
  color: var(--dark); font-family: inherit; font-size: 14px;
  padding: 11px 14px; border-radius: 4px;
  transition: border-color .2s, box-shadow .2s; outline: none; width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,159,218,0.15);
}
textarea { resize: vertical; min-height: 100px; }
select option { background: white; }
.btn-submit {
  width: 100%; background: var(--brand); color: white;
  border: none; cursor: pointer; font-family: inherit;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em;
  padding: 14px; border-radius: 4px; margin-top: 4px;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(0,159,218,0.25);
}
.btn-submit:hover { background: var(--brand-h); transform: translateY(-1px); }
.info-panel { display: flex; flex-direction: column; gap: 0; }
.info-panel h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.info-panel > p { font-size: 14px; color: var(--gray-m); margin-bottom: 28px; line-height: 1.7; }
.info-cards { display: flex; flex-direction: column; gap: 10px; }
.info-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; background: var(--bg-off);
  border: 1px solid var(--border); border-radius: 6px;
}
.info-card svg { width: 18px; height: 18px; stroke: var(--brand); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 1px; }
.info-card strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); }
.info-card span { font-size: 13px; color: var(--gray-m); }
.form-ok { display: none; text-align: center; padding: 40px 0; }
.form-ok svg { stroke: var(--brand); margin-bottom: 14px; }
.form-ok h4 { font-size: 19px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.form-ok p { font-size: 14px; color: var(--gray-m); }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: #002060; padding: 56px 32px 28px;
  border-top: 3px solid var(--brand);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo-wrap { display: flex; flex-direction: column; gap: 12px; }
.footer-logo-wrap p {
  font-size: 13px; color: #6B7280; line-height: 1.7; max-width: 260px;
}
.footer-col h5 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #6B7280; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: #9CA3AF; text-decoration: none; font-size: 13px; transition: color .2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: #6B7280;
}
.footer-bottom a { color: var(--brand); text-decoration: none; }

/* ── TOAST ─────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  background: white; border-left: 4px solid var(--brand);
  border-radius: 6px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transform: translateY(100px); opacity: 0;
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .3s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-check {
  width: 32px; height: 32px; background: #D6EEF9;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.toast-check svg { width: 16px; height: 16px; stroke: var(--brand); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.toast strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.toast span { font-size: 12px; color: var(--gray-m); }

@media (max-width: 1024px) {
  .cat-strip { grid-template-columns: repeat(3, 1fr); }
  .machines-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item:nth-child(2) { border-right: none; }
  .onama-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  /* NAV */
  .nav-inner { padding: 0 16px; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .nav-badge { display: none; }
  .nav-logo img { height: 30px; }

  /* HERO */
  .hero-band { grid-template-columns: 1fr; padding: 40px 16px 0; gap: 24px; min-height: auto; }
  .hero-visual-wrap { display: none; }
  .hero-band h1 { font-size: 32px; }
  .hero-band p { font-size: 14px; }
  .btn-primary, .btn-ghost-w { font-size: 13px; padding: 11px 18px; }

  /* CATEGORY STRIP */
  .cat-strip { grid-template-columns: 1fr 1fr; }
  .cat-tile { padding: 16px 12px; }
  .cat-name { font-size: 12px; }
  .cat-count { font-size: 10px; }

  /* SECTIONS */
  section { padding: 56px 16px; }

  /* MACHINES */
  .machines-grid { grid-template-columns: 1fr; }
  .mc-body { padding: 16px; }
  .mc-specs-row { gap: 10px; flex-wrap: wrap; }

  /* CATALOG */
  .tab-row { gap: 6px; }
  .tab-btn { font-size: 11px; padding: 7px 12px; }
  .product-list { grid-template-columns: 1fr; }

  /* WHY */
  .why-grid { grid-template-columns: 1fr; border-radius: 0; }
  .why-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .why-item:last-child { border-bottom: none; }

  /* O NAMA */
  .onama-right { grid-template-columns: 1fr 1fr; }
  .fact-num { font-size: 28px; }

  /* KONTAKT */
  .kontakt-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .fg.full { grid-column: 1; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 40px 16px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 400px) {
  .cat-strip { grid-template-columns: 1fr; }
  .onama-right { grid-template-columns: 1fr; }
  .hero-band h1 { font-size: 26px; }
}