/* DELUXE — PVC i ALU stolarija Srebrenik */
:root {
  --green: #004C37;
  --green-dark: #003429;
  --green-mid: #0a5c44;
  --cream: #F7F7F3;
  --white: #FFFFFF;
  --ink: #17201D;
  --ink-soft: #3a4541;
  --muted: #5c6863;
  --line: #E8ECE9;
  --bronze: #8B7355;
  --bronze-soft: #c4b5a0;
  --danger: #9b2c2c;
  --ok: #0d6b4c;
  --header-h: 64px;
  --mobile-bar-h: 64px;
  --radius: 2px;
  --radius-md: 4px;
  --shadow-soft: 0 12px 40px rgba(23, 32, 29, 0.08);
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--green-dark); }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn-wa {
  background: #128C7E;
  color: var(--white);
  border-color: #128C7E;
}

.btn-wa:hover {
  background: #0e7368;
  color: var(--white);
}

.btn-full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.text-link:hover {
  border-bottom-color: var(--green);
  color: var(--green-dark);
}

.text-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease);
}

.text-link:hover svg { transform: translateX(3px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(247, 247, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 236, 233, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 36px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-md);
  transition: color 0.15s, background 0.15s;
}

.nav-desktop a:hover {
  color: var(--green);
  background: rgba(0, 76, 55, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: none;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-phone:hover { color: var(--green); }

.header-cta {
  display: none;
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  padding: 0;
}

.menu-toggle svg { width: 24px; height: 24px; }

.menu-toggle .icon-close { display: none; }
body.menu-open .menu-toggle .icon-open { display: none; }
body.menu-open .menu-toggle .icon-close { display: block; }

/* Mobile fullscreen menu */
.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--cream);
  z-index: 999;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

body.menu-open .nav-mobile { transform: translateX(0); }
body.menu-open { overflow: hidden; }

.nav-mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.nav-mobile-actions {
  margin-top: auto;
  padding-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .header-phone { display: inline-flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none; }
  .logo img { height: 40px; }
}

/* Hero */
.hero {
  padding: 1.5rem 0 2.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 18ch;
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 38ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-trust {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero-media {
  position: relative;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-wa {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
}

.hero-wa-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #128C7E;
  color: white;
  display: grid;
  place-items: center;
}

.hero-wa-icon svg { width: 18px; height: 18px; }

.hero-wa strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.hero-wa p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.hero-wa a {
  text-decoration: none;
  color: inherit;
}

@media (min-width: 860px) {
  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    min-height: calc(100vh - var(--header-h) - 4rem);
    max-height: 820px;
  }

  .hero-media picture,
  .hero-media img {
    aspect-ratio: 5 / 6;
    min-height: 520px;
  }

  .hero-wa {
    left: auto;
    right: 1.25rem;
    bottom: 1.25rem;
    width: min(280px, 90%);
  }
}

/* Values strip */
.values {
  border-block: 1px solid var(--line);
  background: var(--white);
  padding: 1.75rem 0;
}

.values-grid {
  display: grid;
  gap: 0;
}

.value-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.value-item:last-child { border-bottom: 0; }

.value-item svg {
  width: 24px;
  height: 24px;
  color: var(--green);
  margin-top: 2px;
}

.value-item span {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}

@media (min-width: 800px) {
  .values { padding: 0; }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .value-item {
    padding: 1.5rem 1.25rem;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .value-item:last-child { border-right: 0; }
  .value-item:first-child { padding-left: 0; }
  .value-item:last-child { padding-right: 0; }
}

/* Sections common */
.section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 2.25rem;
  max-width: 40rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.section-dark {
  background: var(--green-dark);
  color: var(--cream);
}

.section-dark .section-head h2 { color: var(--white); }
.section-dark .section-head p { color: rgba(247, 247, 243, 0.78); }

.section-white { background: var(--white); }

/* Products editorial grid */
.products-grid {
  display: grid;
  gap: 1.25rem;
}

.product-card {
  position: relative;
  display: grid;
  background: var(--white);
  overflow: hidden;
}

.product-card picture,
.product-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.product-body {
  padding: 1.25rem 0 0.5rem;
}

.product-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.product-body p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 36ch;
}

@media (min-width: 720px) {
  .products-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem 1.75rem;
  }

  .product-card:nth-child(1) {
    grid-row: 1 / 3;
  }

  .product-card:nth-child(1) picture,
  .product-card:nth-child(1) img {
    aspect-ratio: 4 / 5;
    min-height: 100%;
  }

  .product-card:nth-child(1) .product-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 52, 41, 0.92) 0%, rgba(0, 52, 41, 0.55) 60%, transparent 100%);
    color: var(--white);
  }

  .product-card:nth-child(1) .product-body h3 { color: var(--white); }
  .product-card:nth-child(1) .product-body p { color: rgba(247, 247, 243, 0.85); }
  .product-card:nth-child(1) .text-link { color: var(--white); }
  .product-card:nth-child(1) .text-link:hover { border-bottom-color: var(--white); color: var(--white); }
}

@media (min-width: 1000px) {
  .products-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .product-card:nth-child(1) { grid-row: 1 / 3; }

  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    grid-column: span 1;
  }
}

/* Projects gallery */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  min-height: 40px;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.filter-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.filter-btn.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.projects-masonry {
  columns: 1;
  column-gap: 1rem;
}

.project-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  background: var(--white);
  cursor: pointer;
  border: 0;
  padding: 0;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  display: block;
}

.project-item[hidden] { display: none; }

.project-item picture,
.project-item img {
  width: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.project-meta {
  padding: 0.9rem 0.1rem 0.4rem;
}

.project-meta .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green);
}

.tag-muted { color: var(--muted); }

.project-meta h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.project-meta p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (min-width: 640px) {
  .projects-masonry { columns: 2; column-gap: 1.25rem; }
}

@media (min-width: 1000px) {
  .projects-masonry { columns: 3; column-gap: 1.5rem; }
  .project-item:nth-child(3n+1) img { min-height: 280px; object-fit: cover; }
}

/* Process */
.process {
  display: grid;
  gap: 0;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.process-step:last-of-type { border-bottom: 0; }

.process-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.process-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 36ch;
}

.process-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.process-visuals img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 900px) {
  .process-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
  }

  .process-visuals {
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }

  .process-visuals img:first-child {
    aspect-ratio: 4 / 5;
  }
}

/* Quote / conversion form */
.quote-grid {
  display: grid;
  gap: 2.5rem;
}

.quote-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 16ch;
}

.quote-copy p {
  margin: 0 0 1.25rem;
  color: rgba(247, 247, 243, 0.8);
  font-size: 1.05rem;
  max-width: 38ch;
}

.quote-wa-hint {
  font-size: 0.92rem;
  color: rgba(247, 247, 243, 0.7);
  margin-top: 1rem;
}

.quote-wa-hint a {
  color: var(--white);
  font-weight: 600;
}

.quote-form {
  background: var(--white);
  color: var(--ink);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .quote-form { padding: 2rem; }
}

@media (min-width: 900px) {
  .quote-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* Form */
.form-row {
  margin-bottom: 1.1rem;
}

.form-row label,
.form-legend {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.form-error {
  display: none;
  font-size: 0.8rem;
  color: var(--danger);
  margin-top: 0.3rem;
}

.form-row.is-invalid .form-error { display: block; }

.form-row.is-invalid input,
.form-row.is-invalid select,
.form-row.is-invalid textarea {
  border-color: var(--danger);
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}

textarea { min-height: 96px; resize: vertical; }

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

.choice-grid {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .choice-grid { grid-template-columns: 1fr 1fr; }
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.choice input:checked + span {
  border-color: var(--green);
  background: rgba(0, 76, 55, 0.07);
  color: var(--green-dark);
  font-weight: 600;
}

.choice input:focus-visible + span {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.file-drop {
  border: 1.5px dashed #c5cdc8;
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  background: var(--cream);
  cursor: pointer;
}

.file-drop:hover { border-color: var(--green); }

.file-drop input { display: none; }

.file-drop p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.file-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.form-grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.is-visible { display: block; }
.quote-form.is-success .form-fields { display: none; }

.form-success h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: var(--green-dark);
}

.form-success p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 16ch;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 40ch;
}

.about-facts {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.about-facts li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  font-size: 0.92rem;
}

.about-facts strong {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
  }
}

/* Before / after (instead of reviews) */
.ba-grid {
  display: grid;
  gap: 1.25rem;
}

.ba-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ba-item h3 {
  margin: 0.85rem 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.ba-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (min-width: 720px) {
  .ba-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}

/* FAQ */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2rem 1.15rem 0;
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--green);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 52ch;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 52, 41, 0.92) 0%, rgba(0, 52, 41, 0.45) 55%, rgba(0, 52, 41, 0.2) 100%);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
  color: var(--white);
}

.final-cta-content h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 18ch;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.final-phone {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.final-phone:hover { color: var(--cream); }

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(247, 247, 243, 0.75);
  padding: 3.5rem 0 7rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  max-width: 28ch;
  line-height: 1.55;
}

.footer-col h3 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 247, 243, 0.5);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  color: rgba(247, 247, 243, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-col a:hover { color: var(--white); }

.footer-contact a {
  display: block;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 247, 243, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(247, 247, 243, 0.65);
  text-decoration: none;
  margin-left: 1rem;
}

.footer-bottom a:hover { color: var(--white); }

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }

  .site-footer { padding-bottom: 3.5rem; }
}

/* Mobile sticky conversion bar */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: var(--mobile-bar-h);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem;
}

.mobile-bar a svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.mobile-bar a.accent {
  background: var(--green);
  color: var(--white);
}

.mobile-bar a.accent svg { color: var(--white); }

@media (min-width: 960px) {
  .mobile-bar { display: none; }
}

body { padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom)); }
@media (min-width: 960px) {
  body { padding-bottom: 0; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(23, 32, 29, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.is-open { display: flex; }

.lightbox-inner {
  width: min(920px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--cream);
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
}

.lightbox-img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  background: #0d1613;
}

.lightbox-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.lightbox-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.lightbox-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Legal pages */
.legal-page {
  padding: 3rem 0 5rem;
}

.legal-page h1 {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.legal-page h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  max-width: 65ch;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   MOBILE DESIGN SYSTEM (≤767px) — crafted mobile experience
   Desktop rules above remain the base for ≥768px
   ========================================================= */
@media (max-width: 767px) {
  :root {
    --header-h: 64px;
    --sticky-cta-h: 68px;
    --section-gap: 68px;
    --page-pad: 20px;
    --radius-m: 12px;
  }

  @media (max-width: 320px) {
    :root { --page-pad: 16px; }
  }

  body {
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px) + 8px);
  }

  body.form-in-view {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .container,
  .container-wide,
  .header-inner {
    width: calc(100% - (var(--page-pad) * 2));
    margin-inline: auto;
  }

  /* ----- Header ----- */
  .site-header {
    height: var(--header-h);
    background: #FFFFFF;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid #E8ECE9;
    box-shadow: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .site-header.is-scrolled {
    box-shadow: 0 4px 16px rgba(23, 32, 29, 0.08);
    border-bottom-color: transparent;
  }

  .header-inner { height: var(--header-h); }

  .logo img {
    height: auto;
    width: 110px;
    max-height: 44px;
    object-fit: contain;
    object-position: left center;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .menu-toggle svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
  }

  .nav-mobile {
    padding: 28px var(--page-pad) calc(28px + env(safe-area-inset-bottom));
  }

  .nav-mobile a {
    font-size: 22px;
    font-weight: 600;
    padding: 18px 0;
    line-height: 1.25;
  }

  .nav-mobile-actions {
    gap: 12px;
    padding-top: 28px;
  }

  .nav-mobile-actions .btn {
    min-height: 54px;
    font-size: 16px;
    border-radius: var(--radius-m);
  }

  /* ----- Hero ----- */
  .hero {
    padding: 28px 0 0;
  }

  .hero-grid {
    gap: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
    max-width: none;
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.55;
    max-width: none;
    margin-bottom: 24px;
    color: var(--ink-soft);
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }

  .hero-cta .btn-primary {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
    border-radius: var(--radius-m);
    gap: 10px;
  }

  .hero-cta .btn-secondary {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
    border-radius: var(--radius-m);
    background: transparent;
    border-color: transparent;
    color: var(--green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    padding: 0.5rem 0;
  }

  .hero-cta .btn-secondary:hover {
    background: transparent;
    color: var(--green-dark);
  }

  .hero-trust {
    display: none; /* replaced by trust-grid */
  }

  .hero-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin-bottom: 28px;
    padding: 0;
    list-style: none;
  }

  .hero-trust-grid li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
  }

  .hero-trust-grid svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--green);
  }

  .hero-media {
    margin-top: 0;
    order: 2;
  }

  .hero-media picture,
  .hero-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: 280px;
    object-fit: cover;
    object-position: center 35%;
    border-radius: 12px;
  }

  .hero-wa {
    position: static;
    margin-top: 16px;
    border-radius: 12px;
    padding: 14px 16px;
  }

  /* ----- Sections spacing ----- */
  .section {
    padding: var(--section-gap) 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: 28px;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .section-head p {
    font-size: 16px;
    line-height: 1.55;
  }

  .values {
    padding: 28px 0;
    margin-top: 32px;
  }

  .value-item {
    padding: 14px 0;
    grid-template-columns: 24px 1fr;
    gap: 12px;
  }

  .value-item span {
    font-size: 15px;
  }

  /* ----- Products: featured + horizontal ----- */
  .products-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .product-card {
    background: transparent;
    border-radius: 0;
  }

  .product-card:nth-child(1) {
    background: var(--white);
    border-radius: var(--radius-m);
    overflow: hidden;
    border: 1px solid var(--line);
  }

  .product-card:nth-child(1) picture,
  .product-card:nth-child(1) img {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    border-radius: 0;
  }

  .product-card:nth-child(1) .product-body {
    position: static;
    background: none;
    color: inherit;
    padding: 16px 16px 18px;
  }

  .product-card:nth-child(1) .product-body h3 {
    color: var(--ink);
    font-size: 20px;
    margin-bottom: 8px;
  }

  .product-card:nth-child(1) .product-body p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
    max-width: none;
  }

  .product-card:nth-child(1) .text-link {
    color: var(--green);
    font-size: 15px;
  }

  /* Horizontal product rows */
  .product-card:nth-child(n+2) {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 120px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
  }

  .product-card:nth-child(n+2):last-child {
    border-bottom: 0;
  }

  .product-card:nth-child(n+2) picture,
  .product-card:nth-child(n+2) img {
    width: 104px;
    height: 104px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
  }

  .product-card:nth-child(n+2).product-card--icon {
    grid-template-columns: 104px 1fr;
  }

  .product-card--icon .product-thumb-icon {
    width: 104px;
    height: 104px;
    border-radius: 10px;
    background: var(--line);
    display: grid;
    place-items: center;
    color: var(--green);
  }

  .product-card--icon .product-thumb-icon svg {
    width: 36px;
    height: 36px;
  }

  .product-card:nth-child(n+2) .product-body {
    padding: 0;
  }

  .product-card:nth-child(n+2) .product-body h3 {
    font-size: 18px;
    margin-bottom: 4px;
    line-height: 1.25;
  }

  .product-card:nth-child(n+2) .product-body p {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: none;
  }

  .product-card:nth-child(n+2) .text-link {
    font-size: 14px;
  }

  /* ----- Projects ----- */
  .filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 calc(var(--page-pad) * -1) 24px;
    padding: 0 var(--page-pad) 4px;
  }

  .filters::-webkit-scrollbar { display: none; }

  .filter-btn {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .projects-masonry {
    columns: 1;
    column-gap: 0;
  }

  .project-item {
    margin-bottom: 28px;
    background: transparent;
  }

  .project-item picture,
  .project-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }

  .project-meta {
    padding: 12px 2px 0;
  }

  .project-meta .tags {
    margin-bottom: 6px;
  }

  .tag {
    font-size: 12px;
  }

  .project-meta h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .project-meta p {
    font-size: 14px;
    line-height: 1.45;
    color: var(--ink-soft);
  }

  .projects-more {
    margin-top: 8px;
  }

  .projects-more .btn {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
    border-radius: var(--radius-m);
  }

  /* ----- Process timeline ----- */
  .process-layout {
    display: block;
  }

  .process-visuals {
    display: none; /* avoid duplicate photos on mobile */
  }

  .process {
    position: relative;
    padding-left: 0;
  }

  .process::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: var(--green);
    opacity: 0.35;
  }

  .process-step {
    grid-template-columns: 32px 1fr;
    gap: 14px;
    padding: 0 0 28px;
    border-bottom: 0;
    position: relative;
  }

  .process-step:last-of-type {
    padding-bottom: 0;
  }

  .process-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--green);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    position: relative;
    z-index: 1;
  }

  .process-step h3 {
    font-size: 18px;
    margin-bottom: 6px;
    padding-top: 4px;
  }

  .process-step p {
    font-size: 15px;
    line-height: 1.5;
    max-width: none;
  }

  /* ----- Multi-step form ----- */
  .quote-grid {
    gap: 28px;
  }

  .quote-copy h2 {
    font-size: 28px;
    max-width: none;
  }

  .quote-copy p {
    font-size: 16px;
  }

  .quote-form {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .form-progress {
    margin-bottom: 20px;
  }

  .form-progress-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
  }

  .form-progress-bar {
    height: 4px;
    background: var(--line);
    border-radius: 2px;
    overflow: hidden;
  }

  .form-progress-bar span {
    display: block;
    height: 100%;
    background: var(--green);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
  }

  .form-step { display: none; }
  .form-step.is-active { display: block; }

  .form-step-title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
  }

  .form-row {
    margin-bottom: 16px;
  }

  .form-row label,
  .form-legend {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .choice span {
    min-height: 52px;
    font-size: 15px;
    border-radius: 10px;
    padding: 14px 16px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select,
  textarea {
    font-size: 16px;
    min-height: 52px;
    border-radius: 10px;
    border-width: 1.5px;
    background: var(--white);
  }

  .file-drop {
    border-radius: 10px;
    padding: 18px 14px;
  }

  .form-step-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }

  .form-step-actions .btn {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
    border-radius: 12px;
  }

  .quote-wa-hint {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
  }

  .quote-copy .quote-wa-hint { display: none; }

  .form-wa-below {
    display: block;
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.45;
  }

  .form-wa-below a {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
  }

  /* ----- About ----- */
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .about-media {
    order: -1;
  }

  .about-media img {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  .about-copy h2 {
    font-size: 28px;
    max-width: none;
    margin-bottom: 12px;
  }

  .about-copy p {
    font-size: 16px;
    max-width: none;
    margin-bottom: 12px;
  }

  .about-copy p:nth-of-type(n+3) {
    display: none; /* keep two short paragraphs */
  }

  .about-facts {
    display: none;
  }

  .about-contacts {
    display: grid;
    gap: 12px;
    margin-top: 20px;
  }

  .about-contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
  }

  .about-contacts .about-call {
    background: var(--green);
    color: var(--white);
  }

  .about-contacts .about-wa {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);
  }

  /* Hide before/after on mobile — no true pairs */
  #detalji {
    display: none;
  }

  /* ----- FAQ ----- */
  .faq-item summary {
    min-height: 56px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px 16px 0;
    line-height: 1.35;
  }

  .faq-item summary::after {
    font-size: 22px;
    width: 28px;
    text-align: center;
  }

  .faq-item[open] summary {
    color: var(--green-dark);
  }

  .faq-item p {
    font-size: 15px;
    line-height: 1.6;
    padding-bottom: 16px;
    max-width: none;
  }

  /* ----- Final CTA ----- */
  .final-cta {
    min-height: 0;
  }

  .final-cta-bg {
    display: none;
  }

  .final-cta-overlay {
    display: none;
  }

  .final-cta {
    background: var(--green-dark);
  }

  .final-cta-content {
    padding: 48px 0;
  }

  .final-cta-content h2 {
    font-size: 28px;
    max-width: none;
    margin-bottom: 24px;
  }

  .final-cta-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .final-cta-actions .btn {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
    border-radius: 12px;
  }

  .final-phone {
    display: block;
    text-align: center;
    font-size: 20px;
  }

  /* ----- Footer accordion ----- */
  .site-footer {
    padding: 40px 0 calc(24px + env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 0;
    display: flex;
    flex-direction: column;
  }

  .footer-brand {
    margin-bottom: 28px;
  }

  .footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
  }

  .footer-brand p {
    font-size: 14px;
    max-width: none;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .footer-brand-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-brand-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    color: var(--white);
  }

  .footer-brand-actions .footer-phone-btn {
    background: rgba(255,255,255,0.12);
  }

  .footer-brand-actions .footer-wa-btn {
    background: #128C7E;
  }

  .footer-brand-actions .footer-fb-link {
    min-height: auto;
    justify-content: flex-start;
    font-size: 14px;
    font-weight: 500;
    color: rgba(247,247,243,0.75);
    padding: 8px 0 0;
  }

  .footer-col {
    border-top: 1px solid rgba(247, 247, 243, 0.12);
  }

  .footer-col h3 {
    margin: 0;
  }

  .footer-acc-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(247, 247, 243, 0.55);
    font-family: inherit;
    font-size: 12px;
    font-weight: 650;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .footer-acc-btn::after {
    content: "+";
    font-size: 18px;
    color: rgba(247, 247, 243, 0.7);
  }

  .footer-col.is-open .footer-acc-btn::after {
    content: "−";
  }

  .footer-col > h3 { display: none; }

  .footer-col ul {
    display: none;
    padding-bottom: 12px;
  }

  .footer-col.is-open ul {
    display: block;
  }

  .footer-col.footer-contact > a,
  .footer-col.footer-contact > p {
    display: none;
  }

  .footer-col.footer-contact.is-open > a,
  .footer-col.footer-contact.is-open > p {
    display: block;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 20px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 13px;
  }

  .footer-bottom a {
    margin: 0 8px;
  }

  /* Hide old 3-col mobile bar */
  .mobile-bar {
    display: none !important;
  }

  /* ----- Sticky CTA (after hero) ----- */
  .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    display: none;
    grid-template-columns: 56px 1fr;
    gap: 10px;
    padding: 10px var(--page-pad) calc(10px + env(safe-area-inset-bottom, 0px));
    background: #FFFFFF;
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(23, 32, 29, 0.08);
  }

  .sticky-cta.is-visible {
    display: grid;
  }

  body.form-in-view .sticky-cta {
    display: none !important;
  }

  .sticky-cta-wa {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #128C7E;
    color: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
  }

  .sticky-cta-wa svg {
    width: 26px;
    height: 26px;
  }

  .sticky-cta-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border-radius: 12px;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
  }
}

/* Desktop: hide mobile-only elements */
@media (min-width: 768px) {
  .hero-trust-grid { display: none; }
  .form-progress { display: none; }
  .form-step { display: block !important; }
  .form-step-title { display: none; }
  .form-step-actions { display: none; }
  .form-wa-below { display: none; }
  .about-contacts { display: none; }
  .sticky-cta { display: none !important; }
  .footer-acc-btn { display: none; }
  .footer-brand-actions { display: none; }
  .projects-more { display: none; }
}

/* Product icon thumbs (all breakpoints) */
.product-thumb-icon {
  width: 100%;
  aspect-ratio: 16 / 11;
  background: var(--line);
  display: grid;
  place-items: center;
  color: var(--green);
}

.product-thumb-icon svg {
  width: 40px;
  height: 40px;
}

@media (min-width: 768px) {
  .product-card--icon .product-thumb-icon {
    aspect-ratio: 16 / 11;
  }

  /* Desktop form: show all fields, only final submit */
  .form-progress { display: none !important; }
  .form-step-title { display: none !important; }
  .form-step { display: block !important; }
  .form-step .form-step-actions { display: none !important; }
  .form-step[data-step="3"] .form-step-actions {
    display: block !important;
    margin-top: 8px;
  }
  .form-step[data-step="3"] [data-prev-step] { display: none !important; }
  .form-wa-below { display: none; }
  .about-contacts { display: none; }
  .sticky-cta { display: none !important; }
  .footer-acc-btn { display: none !important; }
  .footer-brand-actions { display: none; }
  .projects-more {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .projects-more .btn {
    min-width: 240px;
  }
  .hero-trust-grid { display: none; }

  /* Desktop about without photo */
  .about-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
}

/* Ensure desktop choice grid for step 1 */
@media (min-width: 768px) {
  #need-choices.choice-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 720px) {
  .product-card--icon {
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .product-card--icon .product-thumb-icon {
    aspect-ratio: 16 / 11;
    width: 100%;
    height: auto;
    border-radius: 0;
  }
  .product-card--icon .product-body {
    padding: 1.25rem 0 0.5rem;
  }
}
