/* =========================================================
   ULTIMET GROUP D.o.o. — glavni stilovi
   Paleta: crna / bijela + crveni akcent (boje iz loga)
   Mobile-first, bez frameworka
   ========================================================= */

:root {
  --navy: #14161f;          /* crna (sa daškom tamnoplave iz loga) */
  --navy-2: #1d2130;
  --logo-navy: #242b47;     /* tamnoplava iz loga */
  --anthracite: #22242c;
  --steel: #454a58;
  --gray: #6b7684;
  --light: #f5f6f8;
  --white: #ffffff;
  --accent: #e8232b;        /* crvena iz loga */
  --accent-dark: #b4161d;
  --border: #e0e3e9;
  --radius: 6px;
  --shadow: 0 4px 18px rgba(16, 18, 26, 0.10);
  --shadow-lg: 0 10px 34px rgba(16, 18, 26, 0.18);
  --font: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--anthracite);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.section { padding: 56px 0; }
.section--alt { background: var(--light); }
.section--dark { background: var(--navy); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: #c3ccd6; }

.section-head { margin-bottom: 36px; }
.section-head .kicker {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 8px;
}
.section-head h2 { font-size: 28px; }
.section-head p { color: var(--gray); margin-top: 10px; max-width: 640px; }

/* ---------- Dugmad ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  text-align: center;
}
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn--outline:hover { background: var(--white); color: var(--navy); }
.btn--outline-dark { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--block { display: block; width: 100%; }

/* ---------- Header / navigacija ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(16,18,26,.10);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand .brand-text {
  color: var(--logo-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: .3px;
  line-height: 1.1;
}
.brand .brand-sub { display: block; font-family: var(--font); font-size: 9.5px; font-weight: 600; color: var(--gray); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 3px; }

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: block;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: .25s;
}

.main-nav {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px 20px;
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.main-nav.open { transform: translateX(0); }
.main-nav ul { list-style: none; }
.main-nav > ul > li { border-bottom: 1px solid rgba(16,18,26,.08); }
.main-nav a {
  display: block;
  color: var(--anthracite);
  padding: 14px 6px;
  font-weight: 600;
  font-size: 16px;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent); }

/* dropdown (Proizvodi) */
.has-dropdown > a { display: flex; justify-content: space-between; align-items: center; }
.has-dropdown > a::after { content: '▾'; font-size: 12px; color: var(--accent); }
.dropdown {
  display: none;
  background: var(--light);
  border-radius: var(--radius);
  margin: 0 0 10px;
  padding: 6px 0;
}
.has-dropdown.open .dropdown { display: block; }
.dropdown a { padding: 10px 18px; font-size: 15px; font-weight: 500; }
.dropdown .dd-group { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; padding: 12px 18px 4px; font-weight: 700; }
.dropdown .dd-sub { padding-left: 30px; color: var(--steel); }

.nav-cta { margin-top: 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(110deg, rgba(16,18,26,.94) 35%, rgba(16,18,26,.72)),
    repeating-linear-gradient(90deg, #1d2130 0 60px, #171a25 60px 120px);
  color: var(--white);
  padding: 72px 0 84px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 380px;
  height: 380px;
  border: 46px solid rgba(232,35,43,.10);
  border-radius: 50%;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(30px, 5.5vw, 50px);
  max-width: 760px;
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { max-width: 620px; color: #c3ccd6; font-size: 17px; margin-bottom: 30px; }
.hero .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .kicker {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}

/* ---------- Traka prednosti ---------- */
.stats-bar { background: var(--accent); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.stat {
  padding: 22px 16px;
  text-align: center;
  color: var(--white);
}
.stat .stat-value { font-size: 28px; font-weight: 800; line-height: 1; }
.stat .stat-label { font-size: 13px; opacity: .92; margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Kartice kategorija ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card .cat-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy-2), var(--steel));
}
.cat-card .cat-bg svg { position: absolute; right: 14px; top: 14px; opacity: .16; }
.cat-card .cat-body {
  position: relative;
  padding: 22px;
  width: 100%;
  background: linear-gradient(transparent, rgba(16,18,26,.92) 40%);
  color: var(--white);
}
.cat-card h3 { color: var(--white); font-size: 20px; margin-bottom: 6px; }
.cat-card p { font-size: 14px; color: #c3ccd6; margin-bottom: 12px; }
.cat-card .cat-link { color: var(--accent); font-weight: 700; font-size: 14px; }

/* ---------- Proizvodi ---------- */
.products-layout { display: grid; grid-template-columns: 1fr; gap: 30px; }

.filters {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  align-self: start;
}
.filters h3 { font-size: 16px; margin-bottom: 14px; }
.filter-group { margin-bottom: 20px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group .fg-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  font-weight: 700;
  margin-bottom: 8px;
}
.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 5px 0;
  cursor: pointer;
}
.filter-group input { accent-color: var(--accent); width: 16px; height: 16px; }
.filter-cat-list { list-style: none; }
.filter-cat-list > li { margin-bottom: 4px; }
.filter-cat-list button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 4px;
  width: 100%;
  text-align: left;
  color: var(--anthracite);
}
.filter-cat-list button:hover { background: #e8edf2; }
.filter-cat-list button.active { background: var(--navy); color: var(--white); font-weight: 600; }
.filter-cat-list .sub-list { list-style: none; padding-left: 16px; }
.filter-clear { margin-top: 14px; width: 100%; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-img {
  height: 190px;
  background: linear-gradient(150deg, var(--navy-2), var(--steel));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img .img-ph { text-align: center; color: #8b98a7; font-size: 12px; letter-spacing: 1px; }
.product-img .img-ph svg { margin: 0 auto 8px; display: block; opacity: .5; }
.product-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-body .p-cat { font-size: 12px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-body h3 { font-size: 17px; margin-bottom: 8px; }
.product-body p { font-size: 14px; color: var(--gray); flex: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 14px; }
.tag {
  font-size: 11.5px;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--steel);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.tag--accent { background: rgba(232,35,43,.10); border-color: rgba(232,35,43,.30); color: var(--accent-dark); }

.no-results { padding: 40px 20px; text-align: center; color: var(--gray); grid-column: 1 / -1; }

/* ---------- Katalozi ---------- */
.catalog-list { display: grid; gap: 16px; grid-template-columns: 1fr; }
.catalog-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.catalog-item .pdf-ico {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(232,35,43,.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}
.catalog-item .cat-title { font-weight: 600; flex: 1; font-size: 15px; }
.catalog-item .cat-missing { font-size: 13px; color: var(--gray); font-style: italic; }

/* ---------- Reference ---------- */
.ref-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.ref-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.ref-img {
  height: 210px;
  background: linear-gradient(150deg, var(--navy-2), var(--steel));
  display: flex;
  align-items: center;
  justify-content: center;
}
.ref-img img { width: 100%; height: 100%; object-fit: cover; }
.ref-img .img-ph { color: #8b98a7; font-size: 12px; letter-spacing: 1px; text-align: center; }
.ref-body { padding: 18px; }
.ref-body h3 { font-size: 16px; margin-bottom: 6px; }
.ref-body p { font-size: 14px; color: var(--gray); }

/* ---------- O nama ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
.about-text p { margin-bottom: 16px; color: var(--steel); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.value-card {
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.value-card h3 { font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--gray); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-info-list .ci-ico {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(232,35,43,.12);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-list .ci-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); font-weight: 700; }
.contact-info-list .ci-value { font-weight: 600; color: var(--navy); word-break: break-word; }

.map-embed {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 260px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Forme ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  background: var(--white);
  color: var(--anthracite);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,35,43,.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
.form-msg { padding: 12px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 16px; display: none; }
.form-msg.ok { display: block; background: #e6f6ec; color: #1c7c3f; border: 1px solid #b9e6c8; }
.form-msg.err { display: block; background: #fdeaea; color: #b3261e; border: 1px solid #f5c6c4; }

/* ---------- Modal (Pošalji upit) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,18,26,.72);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal h3 { margin-bottom: 4px; font-size: 20px; }
.modal .modal-sub { color: var(--gray); font-size: 14px; margin-bottom: 20px; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--light);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
  color: var(--steel);
  line-height: 1;
}
.modal-close:hover { background: var(--border); }

/* ---------- CTA sekcija ---------- */
.cta-band {
  background: linear-gradient(110deg, var(--navy), var(--navy-2));
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.cta-band h2 { color: var(--white); font-size: 26px; margin-bottom: 12px; }
.cta-band p { color: #c3ccd6; max-width: 560px; margin: 0 auto 26px; }

/* ---------- Podstranica hero ---------- */
.page-hero {
  background: linear-gradient(110deg, var(--navy) 45%, var(--navy-2));
  color: var(--white);
  padding: 46px 0;
}
.page-hero h1 { color: var(--white); font-size: clamp(26px, 4vw, 38px); }
.page-hero .crumbs { font-size: 13px; color: #97a4b3; margin-bottom: 8px; }
.page-hero .crumbs a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { background: #0b0c12; color: #97a4b3; padding: 50px 0 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; }
.footer-grid h4 { color: var(--white); font-size: 15px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand img { height: 40px; margin-bottom: 12px; }
.footer-brand .footer-logo-text { font-family: Georgia, 'Times New Roman', serif; color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.footer-brand p { max-width: 300px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
}

/* ---------- About teaser (naslovna) ---------- */
.teaser-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.teaser-visual {
  min-height: 240px;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(16,18,26,.85), rgba(61,74,88,.75)),
    repeating-linear-gradient(45deg, #262a38 0 26px, #20242f 26px 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =========================================================
   Tablet i desktop
   ========================================================= */
@media (min-width: 700px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .catalog-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
  .section { padding: 76px 0; }
  .section-head h2 { font-size: 34px; }
}

/* =========================================================
   Animacije (poštuju prefers-reduced-motion)
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {

  /* scroll-reveal: elementi ulijeću odozdo kad uđu u ekran */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1);
    will-change: opacity, transform;
  }
  .reveal.in { opacity: 1; transform: none; }

  /* ulazna animacija hero sekcije */
  .hero .kicker, .hero h1, .hero p, .hero .hero-actions {
    animation: heroUp .8s cubic-bezier(.22,.61,.36,1) both;
  }
  .hero h1 { animation-delay: .12s; }
  .hero p { animation-delay: .24s; }
  .hero .hero-actions { animation-delay: .36s; }
  @keyframes heroUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
  }
  .hero::after { animation: heroRing 1.4s ease both .2s; }
  @keyframes heroRing {
    from { opacity: 0; transform: scale(.85) rotate(-12deg); }
    to   { opacity: 1; transform: none; }
  }

  /* zumiranje fotografija na hover */
  .product-img img, .ref-img img { transition: transform .55s ease; }
  .product-card:hover .product-img img,
  .ref-card:hover .ref-img img { transform: scale(1.06); }

  /* dugmad — blagi lift */
  .btn { transition: all .2s ease, transform .22s ease, box-shadow .22s ease; }
  .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(232,35,43,.35); }
  .btn--outline:hover, .btn--outline-dark:hover { transform: translateY(-2px); }

  /* podvlaka koja se izvlači ispod linkova u navigaciji (desktop) */
  .main-nav > ul > li > a { position: relative; }
  .main-nav > ul > li > a::before {
    content: '';
    position: absolute;
    left: 15px; right: 100%;
    bottom: 18px;
    height: 2px;
    background: var(--accent);
    transition: right .28s ease;
  }
  .main-nav > ul > li > a:hover::before,
  .main-nav > ul > li > a.active::before { right: 15px; }
  .main-nav .nav-cta a::before { display: none; }

  /* kartice kategorija — ikona lagano zaživi */
  .cat-card .cat-bg svg { transition: transform .5s ease, opacity .5s ease; }
  .cat-card:hover .cat-bg svg { transform: scale(1.12) rotate(3deg); opacity: .28; }

  /* modal — mekani ulaz */
  .modal-overlay.open .modal { animation: modalIn .32s cubic-bezier(.22,.61,.36,1) both; }
  @keyframes modalIn {
    from { opacity: 0; transform: translateY(26px) scale(.97); }
    to   { opacity: 1; transform: none; }
  }
}

@media (max-width: 999px) {
  .main-nav > ul > li > a::before { display: none; }
}

@media (min-width: 1000px) {
  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    transform: none;
    padding: 0;
    background: transparent;
    overflow: visible;
  }
  .main-nav > ul { display: flex; align-items: center; gap: 4px; }
  .main-nav > ul > li { border-bottom: none; position: relative; }
  .main-nav a { padding: 26px 15px; font-size: 15px; }
  .nav-cta { margin: 0 0 0 12px; }
  .nav-cta .btn { padding: 10px 20px; font-size: 14px; }

  .has-dropdown > a::after { margin-left: 6px; }
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    margin: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 8px 0 12px;
  }
  .dropdown a:hover { background: var(--light); }
  .has-dropdown:hover .dropdown, .has-dropdown.open .dropdown { display: block; }
  .dropdown a { padding: 9px 20px; }
  .dropdown .dd-sub { padding-left: 34px; }

  .products-layout { grid-template-columns: 280px 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1.2fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .teaser-grid { grid-template-columns: 1fr 1fr; }
  .teaser-visual { min-height: 340px; }
}
