:root {
  --gia-bg: #e7e7e9;
  --gia-ink: #101210;
  --gia-muted: #5f675f;
  --gia-card: #f4f5f2;
  --gia-primary: #bfe3c2;
  --gia-primary-strong: #8fcb97;
  --gia-line: rgba(16, 18, 16, 0.12);
  --gia-shadow: 0 24px 80px rgba(16, 18, 16, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--gia-bg);
  color: var(--gia-ink);
  font-size: 16px;
  line-height: 1.5;
}

body.gia-nav-open {
  overflow: hidden;
}

.gia-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--gia-bg);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.gia-loader__mark {
  border: 1px solid var(--gia-line);
  border-radius: 999px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

body.is-loaded .gia-loader {
  visibility: hidden;
  opacity: 0;
}

.gia-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(16, 18, 16, 0.08);
  background: rgba(231, 231, 233, 0.86);
  backdrop-filter: blur(18px);
}

.gia-logo img {
  width: min(210px, 42vw);
  height: auto;
  object-fit: contain;
  display: block;
}

.gia-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gia-nav a,
.gia-lang {
  border: 0;
  border-radius: 999px;
  padding: 10px 13px;
  background: transparent;
  color: var(--gia-ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.gia-nav a:hover,
.gia-nav a.is-active,
.gia-lang:hover {
  background: var(--gia-primary);
  transform: translateY(-1px);
}

.gia-menu-toggle {
  display: none;
  border: 1px solid var(--gia-line);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 22px;
}

.gia-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  cursor: pointer;
}

.gia-lang select {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.gia-lang__chevron {
  margin-left: 7px;
  font-size: 15px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 180ms ease, opacity 180ms ease;
}

.gia-lang:hover .gia-lang__chevron,
.gia-lang:focus-within .gia-lang__chevron {
  opacity: 0.82;
  transform: translateY(1px);
}

main {
  overflow: hidden;
}

.gia-hero,
.gia-section {
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
}

.gia-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  min-height: min(760px, calc(100vh - 84px));
  padding: clamp(48px, 6vw, 86px) 0;
}

.gia-hero h1,
.gia-section h2 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(42px, 6.2vw, 88px);
  font-weight: 320;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.gia-section h2 {
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.03;
}

.gia-hero p,
.gia-section p,
.gia-card li,
.gia-location-card li,
.gia-steps span,
.gia-footer p,
.gia-footer a {
  color: var(--gia-muted);
  font-size: clamp(16px, 1.12vw, 19px);
  line-height: 1.65;
  letter-spacing: 0;
}

.gia-hero p {
  max-width: 720px;
  margin: 22px 0 0;
}

.gia-hero figure {
  margin: 0;
}

.gia-hero img,
.gia-card--image img,
.gia-location-card > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  object-fit: cover;
  box-shadow: var(--gia-shadow);
}

.gia-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  border: 1px solid var(--gia-line);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gia-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gia-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--gia-ink);
  border-radius: 999px;
  padding: 13px 20px;
  background: var(--gia-ink);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.gia-button:hover {
  transform: translateY(-2px);
  background: var(--gia-primary-strong);
  color: var(--gia-ink);
}

.gia-button--ghost,
.gia-button--muted {
  background: transparent;
  color: var(--gia-ink);
}

.gia-section {
  padding: clamp(42px, 6vw, 82px) 0;
}

.gia-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
}

.gia-stats div,
.gia-card,
.gia-location-card,
.gia-cta,
.gia-wolt,
.gia-form,
.gia-contact-list .gia-card {
  border: 1px solid var(--gia-line);
  border-radius: 32px;
  background: rgba(244, 245, 242, 0.74);
  box-shadow: var(--gia-shadow);
}

.gia-stats div {
  min-height: 132px;
  padding: 22px;
}

.gia-stats strong {
  display: block;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 330;
  line-height: 1;
}

.gia-stats span {
  display: block;
  margin-top: 8px;
  color: var(--gia-muted);
  font-size: 14px;
}

.gia-grid-2,
.gia-grid-3 {
  display: grid;
  gap: 18px;
}

.gia-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gia-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gia-card {
  padding: clamp(22px, 2.6vw, 32px);
}

.gia-card h2,
.gia-card h3,
.gia-location-card h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.gia-card--image {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 24px;
  align-items: center;
}

.gia-card--image img {
  aspect-ratio: 1;
  border-radius: 24px;
}

.gia-link {
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.gia-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gia-chip-grid span {
  border: 1px solid var(--gia-line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--gia-muted);
  font-size: 14px;
}

.gia-wolt,
.gia-cta {
  padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(135deg, #f7f8f5 0%, #d6ecd8 100%);
}

.gia-wolt span {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gia-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.gia-logo-carousel {
  position: relative;
  display: flex;
  gap: 18px;
  margin-top: 26px;
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.gia-logo-carousel::-webkit-scrollbar {
  display: none;
}

.gia-logo-track {
  display: flex;
  gap: 18px;
  min-width: max-content;
  animation: gia-marquee 96s linear infinite;
}

.gia-logo-control {
  position: sticky;
  z-index: 3;
  top: 50%;
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-block: auto;
  border: 1px solid rgba(16, 18, 16, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(16, 18, 16, 0.08);
  color: var(--gia-ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.gia-logo-control--prev {
  left: 6px;
}

.gia-logo-control--next {
  right: 6px;
}

.gia-logo-control:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 18, 16, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(16, 18, 16, 0.12);
}

.gia-logo-item {
  display: grid;
  place-items: center;
  width: 150px;
  height: 92px;
  border: 1px solid var(--gia-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
}

.gia-logo-item img {
  max-width: 118px;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.gia-logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

@keyframes gia-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gia-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.gia-steps div {
  border-top: 1px solid var(--gia-line);
  padding-top: 18px;
}

.gia-steps strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--gia-primary);
}

.gia-faq {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.gia-faq details {
  border: 1px solid var(--gia-line);
  border-radius: 20px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.42);
}

.gia-faq summary {
  cursor: pointer;
  font-weight: 750;
}

.gia-locations {
  display: grid;
  gap: 22px;
}

.gia-location-card {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 24px;
  padding: clamp(18px, 2.6vw, 34px);
}

.gia-location-card > img {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
}

.gia-location-card iframe {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 24px;
  background: #d9ded7;
}

.gia-filters {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.gia-filters input,
.gia-filters select,
.gia-form input,
.gia-form select,
.gia-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--gia-line);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gia-ink);
  font: inherit;
}

.gia-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gia-product {
  border: 1px solid var(--gia-line);
  border-radius: 24px;
  padding: 14px;
  background: rgba(244, 245, 242, 0.82);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gia-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--gia-shadow);
}

.gia-product img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
  background: #dfe6dd;
}

.gia-product h3 {
  margin: 14px 0 6px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.gia-product small,
.gia-product p {
  display: block;
  color: var(--gia-muted);
  font-size: 13px;
  line-height: 1.45;
}

.gia-product__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.gia-product__badges span {
  border-radius: 999px;
  padding: 6px 8px;
  background: var(--gia-primary);
  font-size: 12px;
}

.gia-empty {
  display: none;
}

.gia-empty.is-visible {
  display: block;
}

.gia-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
}

.gia-form label {
  display: grid;
  gap: 7px;
  color: var(--gia-muted);
  font-weight: 700;
}

.gia-form__full,
.gia-form-status {
  grid-column: 1 / -1;
}

.gia-form textarea {
  min-height: 160px;
  resize: vertical;
}

.gia-form-status {
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.gia-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.gia-copy {
  max-width: 880px;
}

.gia-footer {
  width: min(100% - 36px, 1180px);
  margin: 36px auto 18px;
  border: 1px solid var(--gia-line);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 48px);
  background: var(--gia-primary);
}

.gia-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 28px;
}

.gia-footer__logo {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.gia-footer h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.gia-footer a {
  display: block;
  color: var(--gia-ink);
}

.gia-footer__bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(16, 18, 16, 0.14);
  padding-top: 18px;
  color: var(--gia-muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .gia-menu-toggle {
    display: block;
  }

  .gia-nav {
    position: fixed;
    top: 84px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--gia-line);
    border-radius: 24px;
    background: #f7f8f5;
    box-shadow: var(--gia-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.gia-nav-open .gia-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .gia-hero,
  .gia-grid-2,
  .gia-location-card,
  .gia-cta {
    grid-template-columns: 1fr;
  }

  .gia-stats,
  .gia-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .gia-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gia-filters,
  .gia-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .gia-header {
    min-height: 74px;
    padding-inline: 16px;
  }

  .gia-nav {
    top: 74px;
  }

  .gia-hero {
    min-height: auto;
    padding-top: 42px;
    gap: 28px;
  }

  .gia-hero h1 {
    font-size: clamp(36px, 11vw, 54px);
    line-height: 1.02;
  }

  .gia-section h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .gia-hero img,
  .gia-card--image img,
  .gia-location-card > img {
    border-radius: 24px;
  }

  .gia-stats,
  .gia-grid-3,
  .gia-product-grid,
  .gia-filters,
  .gia-form,
  .gia-footer__grid {
    grid-template-columns: 1fr;
  }

  .gia-card--image {
    grid-template-columns: 1fr;
  }

  .gia-actions {
    display: grid;
  }

  .gia-button {
    width: 100%;
  }
}

/* Phase 4 premium visual polish */
.gia-loader {
  background:
    radial-gradient(circle at 50% 44%, rgba(191, 227, 194, 0.58), transparent 32rem),
    linear-gradient(135deg, #f3f4f1 0%, #e2e3e5 100%);
}

.gia-loader__panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 34px 42px;
  border: 1px solid rgba(16, 18, 16, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 34px 100px rgba(16, 18, 16, 0.12);
  backdrop-filter: blur(22px);
}

.gia-loader__logo {
  width: 116px;
  height: auto;
  object-fit: contain;
}

.gia-loader__brand {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.gia-loader__line {
  position: relative;
  width: 180px;
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(16, 18, 16, 0.1);
}

.gia-loader__line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 44%;
  border-radius: inherit;
  background: var(--gia-ink);
  animation: gia-loader-line 900ms ease-in-out infinite;
}

@keyframes gia-loader-line {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(250%); }
}

.gia-header {
  min-height: 76px;
  padding: 12px clamp(22px, 5vw, 86px);
  border-bottom-color: rgba(16, 18, 16, 0.1);
  background: rgba(238, 239, 236, 0.84);
  box-shadow: 0 12px 36px rgba(16, 18, 16, 0.055);
}

.gia-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.gia-logo img {
  width: clamp(74px, 7vw, 104px);
}

.gia-logo span {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.gia-nav {
  gap: 8px;
}

.gia-nav a,
.gia-lang {
  min-height: 40px;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.025em;
}

.gia-nav a.is-active {
  background: var(--gia-primary);
  box-shadow: inset 0 0 0 1px rgba(16, 18, 16, 0.08), 0 10px 26px rgba(99, 142, 106, 0.18);
}

.gia-lang {
  min-width: 78px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.42);
}

.gia-hero,
.gia-section,
.gia-stats,
.gia-footer {
  width: min(100% - clamp(32px, 5vw, 86px), 1360px);
}

.gia-hero {
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
  gap: clamp(42px, 6vw, 92px);
  min-height: min(820px, calc(100vh - 76px));
  padding: clamp(68px, 7vw, 118px) 0 clamp(58px, 6vw, 100px);
}

.gia-hero h1,
.gia-section h2 {
  max-width: 1020px;
  font-weight: 340;
  line-height: 0.96;
}

.gia-hero h1 {
  font-size: clamp(56px, 6.3vw, 98px);
}

.gia-section h2 {
  font-size: clamp(42px, 4.4vw, 68px);
}

.gia-hero p {
  max-width: 760px;
  margin-top: 26px;
  font-size: clamp(18px, 1.22vw, 21px);
}

.gia-hero figure {
  position: relative;
}

.gia-hero figure::before {
  content: "";
  position: absolute;
  inset: 8% -5% -7% 8%;
  z-index: -1;
  border-radius: 42px;
  background: rgba(191, 227, 194, 0.5);
  filter: blur(2px);
}

.gia-hero img {
  border-radius: 42px;
  box-shadow: 0 34px 110px rgba(16, 18, 16, 0.16);
  animation: gia-float 6s ease-in-out infinite;
}

@keyframes gia-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

body[data-page="contact"] .gia-hero {
  grid-template-columns: minmax(0, 1fr) 360px;
}

body[data-page="contact"] .gia-hero img {
  aspect-ratio: 1;
  padding: 54px;
  background: linear-gradient(135deg, #f8f9f5, #d7ebd9);
  object-fit: contain;
}

.gia-button {
  min-height: 54px;
  padding: 16px 24px;
  border-width: 1.5px;
  font-size: 14px;
  box-shadow: 0 14px 32px rgba(16, 18, 16, 0.14);
}

.gia-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(16, 18, 16, 0.16);
}

.gia-button--ghost,
.gia-button--muted {
  background: rgba(255, 255, 255, 0.36);
  box-shadow: none;
}

.gia-section {
  padding: clamp(58px, 6.5vw, 108px) 0;
}

.gia-stats {
  gap: 18px;
}

.gia-stats div,
.gia-card,
.gia-location-card,
.gia-cta,
.gia-wolt,
.gia-form,
.gia-contact-list .gia-card,
.gia-product {
  border-color: rgba(16, 18, 16, 0.1);
  background: rgba(248, 249, 245, 0.78);
  box-shadow: 0 24px 76px rgba(16, 18, 16, 0.075);
  backdrop-filter: blur(10px);
}

.gia-stats div {
  min-height: 154px;
  padding: 28px;
}

.gia-card,
.gia-location-card,
.gia-form {
  border-radius: 36px;
}

.gia-card,
.gia-form {
  padding: clamp(28px, 3vw, 44px);
}

.gia-card:hover,
.gia-location-card:hover,
.gia-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 92px rgba(16, 18, 16, 0.12);
}

.gia-card,
.gia-location-card,
.gia-product {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gia-card--image {
  gap: 30px;
}

.gia-card--image img {
  border-radius: 30px;
}

.gia-chip-grid {
  gap: 12px;
}

.gia-chip-grid span {
  padding: 12px 16px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.56);
}

.gia-wolt {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: clamp(38px, 5vw, 70px);
  background:
    radial-gradient(circle at 84% 20%, rgba(0, 194, 203, 0.18), transparent 19rem),
    linear-gradient(135deg, #f8f9f5 0%, #d3ecd6 100%);
}

.gia-wolt::before {
  content: none;
  display: none;
}

.gia-wolt > span {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 11px 16px;
  background: #00c2cb;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.gia-wolt p {
  max-width: 760px;
}

body[data-page="b2b"] .gia-grid-2 .gia-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

body[data-page="b2b"] .gia-grid-2 .gia-card li {
  position: relative;
  min-height: 58px;
  border: 1px solid rgba(16, 18, 16, 0.09);
  border-radius: 18px;
  padding: 15px 16px 15px 42px;
  background: rgba(255, 255, 255, 0.46);
}

body[data-page="b2b"] .gia-grid-2 .gia-card li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 15px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gia-primary);
  color: var(--gia-ink);
  font-size: 12px;
  font-weight: 900;
}

.gia-steps {
  gap: 16px;
}

.gia-steps div {
  border: 1px solid rgba(16, 18, 16, 0.09);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.46);
}

.gia-steps strong {
  box-shadow: 0 10px 24px rgba(99, 142, 106, 0.22);
}

.gia-faq details {
  border-radius: 24px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 10px 30px rgba(16, 18, 16, 0.045);
}

.gia-faq summary {
  font-size: 18px;
}

.gia-location-card {
  grid-template-columns: minmax(330px, 0.74fr) minmax(0, 1fr);
  gap: 34px;
  padding: clamp(26px, 3vw, 44px);
}

.gia-location-card > img {
  min-height: 360px;
  border-radius: 30px;
  box-shadow: 0 22px 70px rgba(16, 18, 16, 0.12);
}

.gia-location-card .gia-eyebrow {
  background: var(--gia-primary);
}

.gia-location-card iframe {
  min-height: 360px;
  border-radius: 30px;
}

.gia-filters {
  position: sticky;
  top: 92px;
  z-index: 5;
  gap: 12px;
  border: 1px solid rgba(16, 18, 16, 0.09);
  border-radius: 26px;
  padding: 14px;
  background: rgba(248, 249, 245, 0.9);
  box-shadow: 0 18px 48px rgba(16, 18, 16, 0.08);
  backdrop-filter: blur(16px);
}

.gia-filters input,
.gia-filters select,
.gia-form input,
.gia-form select,
.gia-form textarea {
  min-height: 54px;
  border-radius: 18px;
  font-size: 16px;
}

.gia-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gia-product {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 28px;
  padding: 16px;
}

.gia-product img {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
}

.gia-product h3 {
  margin-top: 18px;
  font-size: 21px;
}

.gia-product small {
  color: #3f4d42;
  font-weight: 750;
}

.gia-product__badges {
  margin-top: auto;
  padding-top: 14px;
}

.gia-product__badges span {
  padding: 7px 10px;
  background: #e0f1e2;
  color: #17381f;
  font-weight: 800;
}

.gia-product__cta {
  display: inline-flex;
  justify-content: center;
  margin-top: 14px;
  border: 1px solid var(--gia-line);
  border-radius: 999px;
  padding: 11px 14px;
  background: var(--gia-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.gia-form {
  gap: 18px;
}

.gia-contact-list {
  display: grid;
  gap: 18px;
}

.gia-footer {
  border-radius: 42px;
  padding: clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.55), transparent 20rem),
    linear-gradient(135deg, #c4e6c8 0%, #a8d9af 100%);
}

.gia-footer__grid {
  grid-template-columns: 1.55fr 1fr 1fr 0.8fr;
  gap: clamp(28px, 4vw, 58px);
}

.gia-footer__brand {
  max-width: 440px;
}

.gia-footer__logo {
  width: 132px;
}

.gia-footer__brand h2 {
  margin: 14px 0 12px;
  font-size: 30px;
  font-weight: 420;
  line-height: 1;
  letter-spacing: 0;
}

.gia-footer h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.gia-footer a {
  padding: 4px 0;
  font-weight: 650;
}

.gia-footer__bottom {
  margin-top: 42px;
  padding-top: 24px;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .gia-logo span {
    display: none;
  }

  .gia-hero {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .gia-hero {
    grid-template-columns: 1fr;
  }

  .gia-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .gia-header {
    min-height: 72px;
  }

  .gia-logo img {
    width: 112px;
  }

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

  .gia-nav a,
  .gia-lang {
    min-height: 44px;
    font-size: 14px;
  }

  .gia-hero,
  .gia-section,
  .gia-stats,
  .gia-footer {
    width: min(100% - 28px, 1360px);
  }

  .gia-hero {
    padding-top: 48px;
    padding-bottom: 46px;
  }

  .gia-hero h1 {
    font-size: clamp(40px, 11.5vw, 56px);
  }

  .gia-section {
    padding: 52px 0;
  }

  body[data-page="b2b"] .gia-grid-2 .gia-card ul,
  .gia-product-grid {
    grid-template-columns: 1fr;
  }

  .gia-filters {
    position: static;
    padding: 12px;
  }

  .gia-location-card {
    grid-template-columns: 1fr;
  }

  .gia-location-card > img {
    min-height: 250px;
  }
}

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

/* Homepage redesign */
.gia-header {
  min-height: 96px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(239, 240, 237, 0.92);
  box-shadow: 0 18px 54px rgba(16, 18, 16, 0.075);
}

.gia-logo img {
  width: clamp(106px, 9.4vw, 146px);
}

.gia-logo span {
  font-size: 16px;
}

.gia-logo__text {
  display: grid;
  gap: 4px;
}

.gia-logo__text strong {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.105em;
}

.gia-logo__text small {
  color: var(--gia-muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: none;
}

.gia-nav {
  gap: 14px;
}

.gia-nav a,
.gia-lang {
  min-height: 46px;
  padding: 14px 18px;
  font-size: 14px;
}

body[data-page="home"] main {
  overflow: clip;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 96px);
  overflow: hidden;
  isolation: isolate;
  background: #edf0ec;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("../images/optimized/home-hero.webp") center right / cover no-repeat;
  background-image: image-set(
    url("../images/optimized/home-hero.avif") type("image/avif"),
    url("../images/optimized/home-hero.webp") type("image/webp")
  );
  opacity: 0.46;
  transform: scale(1.04);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 80% 42%, rgba(191, 227, 194, 0.46), transparent 26rem),
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.82), transparent 30rem),
    linear-gradient(90deg, rgba(237, 240, 236, 0.96) 0%, rgba(237, 240, 236, 0.88) 44%, rgba(237, 240, 236, 0.42) 100%);
}

.home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(78px, 8vw, 132px) 0 clamp(70px, 7vw, 118px);
}

.home-hero__copy {
  grid-column: 1;
  max-width: 760px;
}

.home-hero__badge {
  display: inline-flex;
  margin-bottom: 22px;
  border: 1px solid rgba(16, 18, 16, 0.12);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(16, 18, 16, 0.055);
  color: #243126;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 360;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: none;
}

.home-hero p {
  max-width: 660px;
  margin: 28px 0 0;
  color: #4d574f;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.58;
}

.home-hero .gia-actions {
  margin-top: 34px;
}

.home-hero .gia-button {
  min-height: 60px;
  padding: 18px 28px;
  font-size: 15px;
}

.home-hero__visual {
  position: relative;
  margin: 0;
}

.home-hero__visual::before,
.home-hero__visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(4px);
}

.home-hero__visual::before {
  inset: -11% -8% auto auto;
  width: 54%;
  aspect-ratio: 1;
  background: rgba(191, 227, 194, 0.74);
}

.home-hero__visual::after {
  left: -10%;
  bottom: -8%;
  width: 38%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.76);
}

.home-hero__visual img {
  width: 100%;
  aspect-ratio: 0.92;
  border-radius: 52px;
  object-fit: cover;
  box-shadow: 0 44px 130px rgba(16, 18, 16, 0.18);
  animation: gia-float 7s ease-in-out infinite;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(18px, 2.6vw, 46px);
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  margin: clamp(24px, 3vw, 46px) auto 0;
  border-top: 1px solid rgba(16, 18, 16, 0.12);
  border-bottom: 1px solid rgba(16, 18, 16, 0.12);
  padding: 44px 0;
}

.home-stats div {
  min-width: 0;
  padding: 0 clamp(18px, 2.2vw, 38px);
  border-right: 1px solid rgba(16, 18, 16, 0.12);
  text-align: center;
}

.home-stats div:last-child {
  border-right: 0;
}

.home-stats strong {
  display: block;
  color: var(--gia-ink);
  font-size: clamp(46px, 4.9vw, 82px);
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.home-stats span {
  display: block;
  margin-top: 11px;
  color: var(--gia-muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-split,
.home-categories,
.home-partners {
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  margin: 0 auto;
  padding: clamp(76px, 8vw, 130px) 0;
}

.home-split {
  display: grid;
  grid-template-columns: 1.03fr 0.9fr;
  align-items: center;
  gap: clamp(44px, 7vw, 112px);
}

.home-split--b2b {
  grid-template-columns: 0.9fr 1.03fr;
  border-top: 1px solid rgba(16, 18, 16, 0.08);
}

.home-split figure {
  margin: 0;
}

.home-split img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 42px;
  object-fit: cover;
  box-shadow: 0 34px 92px rgba(16, 18, 16, 0.13);
}

.home-split h2,
.home-categories h2,
.home-partners h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 4.9vw, 76px);
  font-weight: 360;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.home-split p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--gia-muted);
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.68;
}

.home-split--professional {
  border-top: 1px solid rgba(16, 18, 16, 0.08);
}

body[data-page="home"] .home-split--professional figure {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .home-split--professional figure img {
  width: min(100%, 520px);
  height: auto;
  max-height: min(560px, 68vh);
  object-fit: contain;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

@media (max-width: 680px) {
  body[data-page="home"] .home-split--professional figure img {
    width: min(100%, 360px);
    max-height: 340px;
  }
}

.home-professional__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 28px 0 30px;
}

.home-professional__items article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(16, 18, 16, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 44px rgba(16, 18, 16, 0.055);
}

.home-professional__items span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--gia-primary);
  color: #203522;
  font-size: 13px;
  font-weight: 900;
}

.home-professional__items strong {
  color: var(--gia-ink);
  font-size: 14px;
  line-height: 1.34;
}

.home-wolt {
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  margin: 0 auto;
  border: 0;
  box-shadow: none;
  background:
    linear-gradient(120deg, rgba(0, 194, 203, 0.16), transparent 34%),
    linear-gradient(135deg, #111812 0%, #243b2a 54%, #bfe3c2 145%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(34px, 4.5vw, 58px);
  color: #fff;
  animation: home-wolt-gradient 8s ease-in-out infinite alternate;
}

@keyframes home-wolt-gradient {
  from { filter: saturate(0.96); }
  to { filter: saturate(1.12); }
}

.home-wolt::before {
  display: none;
}

.home-wolt > span {
  position: absolute;
  top: clamp(22px, 3vw, 34px);
  left: clamp(24px, 3.5vw, 42px);
  background: #00c2cb;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 194, 203, 0.26);
}

.home-wolt__content {
  position: relative;
  z-index: 1;
  padding-top: 52px;
}

.home-wolt__logo {
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.home-wolt__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 28px;
}

.home-wolt h2,
.home-wolt p {
  color: #fff;
}

.home-wolt h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.6vw, 52px);
}

.home-wolt p {
  max-width: 660px;
}

.home-wolt__visual {
  position: relative;
  z-index: 1;
  margin: 0;
}

.home-wolt__visual img {
  width: 100%;
  aspect-ratio: 4 / 3.15;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.home-wolt .gia-button {
  margin-top: 24px;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.home-categories {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: end;
  gap: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
}

.home-categories__visual {
  margin: 0;
}

.home-categories__visual img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 34px;
  object-fit: cover;
  opacity: 0.9;
  box-shadow: 0 22px 64px rgba(16, 18, 16, 0.1);
}

.home-categories .gia-chip-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.home-categories .gia-chip-grid span {
  position: relative;
  min-height: 58px;
  padding: 17px 18px 17px 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 30px rgba(16, 18, 16, 0.04);
  color: #263126;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-categories .gia-chip-grid span::before {
  content: "✦";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gia-primary);
  font-size: 11px;
}

.home-categories .gia-chip-grid span:hover {
  transform: translateY(-3px) scale(1.015);
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 18, 16, 0.1);
}

.home-partners {
  border-top: 1px solid rgba(16, 18, 16, 0.09);
}

.home-partners .gia-logo-carousel {
  margin-top: 34px;
}

body[data-page="home"] .gia-cta {
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  padding: clamp(46px, 6vw, 78px);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  border-radius: 42px;
}

body[data-page="home"] .gia-cta h2,
body[data-page="home"] .gia-cta p {
  max-width: 850px;
}

.gia-footer {
  width: 100%;
  max-width: none;
  margin: 70px 0 0;
  border-radius: 0;
  padding: 0;
}

.gia-footer__inner {
  width: min(100% - clamp(32px, 6vw, 104px), 1480px);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 70px) 0 26px;
}

.gia-footer__grid {
  align-items: start;
}

.gia-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.gia-socials a,
.gia-socials span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16, 18, 16, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--gia-ink);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(16, 18, 16, 0.07);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.gia-socials img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  transition: transform 200ms ease, opacity 200ms ease;
}

.gia-socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 18, 16, 0.22);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(16, 18, 16, 0.1);
}

.gia-socials a:hover img {
  transform: scale(1.07);
}

@media (max-width: 1180px) {
  .home-hero__inner,
  .home-split,
  .home-split--b2b {
    grid-template-columns: 1fr;
  }

  .home-split--b2b figure {
    order: -1;
  }

  .home-categories .gia-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-wolt,
  .home-categories,
  body[data-page="home"] .gia-cta {
    grid-template-columns: 1fr;
  }

  .home-categories__visual {
    max-width: 260px;
  }
}

@media (max-width: 680px) {
  .gia-header {
    min-height: 78px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .gia-logo img {
    width: 128px;
  }

  .gia-logo__text {
    display: none;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero__inner,
  .home-stats,
  .home-split,
  .home-categories,
  .home-partners,
  .home-wolt,
  body[data-page="home"] .gia-cta {
    width: min(100% - 28px, 1480px);
  }

  .home-hero__inner {
    padding: 54px 0 58px;
  }

  .home-hero h1 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .home-hero__visual img,
  .home-split img {
    border-radius: 30px;
  }

  .home-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 20px;
    margin-top: 24px;
    padding: 34px 0;
  }

  .home-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 18, 16, 0.1);
    padding-bottom: 20px;
  }

  .home-stats div:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .home-split,
  .home-categories,
  .home-partners {
    padding: 62px 0;
  }

  .home-categories .gia-chip-grid {
    grid-template-columns: 1fr;
  }

  .home-wolt {
    padding: 30px 22px;
  }

  .home-wolt::before {
    position: static;
    margin-bottom: 18px;
  }

  .home-wolt__content {
    padding-top: 0;
  }

  .home-wolt__visual img {
    border-radius: 24px;
  }

  body[data-page="home"] .gia-cta {
    padding: 34px 22px;
  }
}

/* Final homepage micro-polish */
.gia-nav a {
  position: relative;
}

.gia-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.gia-nav a:hover::after,
.gia-nav a.is-active::after {
  opacity: 0.38;
  transform: scaleX(1);
}

.gia-lang {
  gap: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(16, 18, 16, 0.04);
  transition: background 200ms ease, transform 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.gia-lang:hover,
.gia-lang:focus-within {
  box-shadow: inset 0 0 0 1px rgba(16, 18, 16, 0.1), 0 12px 28px rgba(16, 18, 16, 0.08);
}

.home-stats {
  animation: gia-stats-reveal 680ms ease both;
  animation-delay: 120ms;
}

.gia-button {
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

.gia-button:hover {
  transform: translateY(-2px);
}

.gia-footer__grid {
  gap: clamp(26px, 3.4vw, 48px);
}

.gia-footer h3 {
  margin: 0 0 12px;
}

.gia-footer p {
  margin: 0;
  line-height: 1.62;
}

.gia-footer p + p {
  margin-top: 14px;
}

.gia-footer a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  line-height: 1.35;
}

.gia-footer__brand p {
  max-width: 420px;
}

.gia-footer__brand h2 {
  margin-bottom: 10px;
}

.gia-footer__bottom {
  margin-top: clamp(30px, 4vw, 46px);
}

@keyframes gia-stats-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .home-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 26px;
  }

  .home-stats div {
    border-right: 0;
  }

  .home-stats strong {
    font-size: clamp(42px, 8vw, 64px);
  }
}

@media (max-width: 680px) {
  .home-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stats div:last-child {
    grid-column: 1 / -1;
  }

  .gia-socials a {
    width: 42px;
    height: 42px;
  }
}

/* Final footer/stat fixes */
.home-stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 0;
  overflow: hidden;
}

.home-stats div {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 0 clamp(12px, 1.5vw, 24px);
  border-right: 0;
  text-align: center;
}

.home-stats div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 1px;
  background: rgba(16, 18, 16, 0.12);
}

.home-stats strong {
  max-width: 100%;
  font-size: clamp(42px, 4.2vw, 70px);
  letter-spacing: 0;
}

.home-stats span {
  max-width: 100%;
  overflow-wrap: break-word;
  text-align: center;
}

.gia-footer__column h3,
.gia-footer__links h3 {
  color: var(--gia-ink);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0.075em;
  line-height: 1.15;
  text-transform: uppercase;
}

.gia-footer__column p,
.gia-footer__brand p {
  font-weight: 450;
}

.gia-footer__contact {
  display: grid;
  gap: 5px;
}

.gia-footer__contact strong {
  margin-bottom: 1px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gia-footer__contact a {
  font-weight: 650;
}

.gia-footer__links nav {
  display: grid;
  gap: 9px;
}

.gia-footer__links nav a {
  display: block;
  padding: 0;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.035em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gia-footer .gia-socials {
  align-items: center;
  gap: 10px;
}

.gia-footer .gia-socials a,
.gia-footer .gia-socials span {
  display: inline-grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  overflow: hidden;
}

.gia-footer .gia-socials img {
  display: block;
  width: auto;
  height: auto;
  max-width: 19px;
  max-height: 19px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .home-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 0;
  }

  .home-stats div {
    min-height: 104px;
    border-bottom: 1px solid rgba(16, 18, 16, 0.1);
  }

  .home-stats div::after {
    display: none;
  }

  .home-stats strong {
    font-size: clamp(38px, 9vw, 58px);
  }

  .home-stats div:last-child {
    grid-column: 1 / -1;
  }
}

/* Final homepage responsive polish */
.gia-logo {
  gap: 18px;
}

.gia-nav a.is-active::after {
  opacity: 0;
  transform: scaleX(0);
}

.gia-footer__links nav a {
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, padding 180ms ease, transform 180ms ease;
}

.gia-footer__links nav a:hover {
  padding-left: 10px;
  padding-right: 10px;
  background: rgba(255, 255, 255, 0.42);
  color: #1d5f34;
  transform: translateX(2px);
}

@media (min-width: 1181px) {
  .home-hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.86fr);
  }
}

@media (max-width: 1180px) {
  .home-hero__inner {
    gap: clamp(32px, 6vw, 58px);
  }

  .home-hero h1 {
    font-size: clamp(52px, 8vw, 82px);
  }

  .home-hero__visual {
    max-width: 720px;
  }

  .home-split,
  .home-split--b2b {
    gap: clamp(30px, 5vw, 56px);
  }

  .home-wolt h2 {
    font-size: clamp(34px, 5vw, 54px);
  }

  .gia-footer__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 34px 42px;
  }
}

@media (max-width: 760px) {
  .home-hero__inner {
    padding: 42px 0 48px;
  }

  .home-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1;
  }

  .home-hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .home-hero .gia-actions,
  body[data-page="home"] .gia-cta .gia-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .home-hero .gia-button,
  body[data-page="home"] .gia-cta .gia-button {
    min-height: 52px;
    justify-content: center;
    padding: 15px 18px;
    font-size: 14px;
  }

  .home-hero__visual {
    max-width: 100%;
  }

  .home-hero__visual img {
    aspect-ratio: 1.08;
  }

  .home-split,
  .home-categories,
  .home-partners {
    padding: 52px 0;
  }

  .home-split h2,
  .home-categories h2,
  .home-partners h2 {
    font-size: clamp(30px, 8.8vw, 42px);
  }

  .home-wolt {
    gap: 22px;
  }

  .home-wolt h2 {
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.04;
  }

  .home-categories .gia-chip-grid {
    gap: 10px;
  }

  .home-categories .gia-chip-grid a,
  .home-categories .gia-chip-grid span,
  .home-categories .gia-chip-grid button {
    min-width: 0;
    white-space: normal;
  }

  .gia-footer {
    margin-top: 46px;
  }

  .gia-footer__inner {
    width: min(100% - 28px, 1480px);
    padding: 38px 0 22px;
  }

  .gia-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gia-footer__brand {
    max-width: none;
  }

  .gia-footer__logo {
    width: 112px;
  }

  .gia-footer__brand h2 {
    font-size: 26px;
  }

  .gia-socials {
    margin-top: 16px;
  }

  .gia-footer__column h3,
  .gia-footer__links h3 {
    margin-bottom: 10px;
  }

  .gia-footer__links nav {
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .home-stats {
    padding: 24px 0;
  }

  .home-stats div {
    min-height: 92px;
    padding: 0 8px;
  }

  .home-stats strong {
    font-size: clamp(34px, 11vw, 46px);
  }

  .home-stats span {
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0.015em;
  }

  .home-wolt {
    padding: 26px 18px;
  }

  body[data-page="home"] .gia-cta {
    padding: 30px 18px;
    border-radius: 28px;
  }
}

/* Last header/homepage micro-polish */
.gia-header {
  background: rgba(231, 231, 233, 0.76);
  border-bottom-color: rgba(16, 18, 16, 0.055);
  box-shadow: 0 12px 34px rgba(16, 18, 16, 0.045);
}

.gia-nav a::after,
.gia-nav a:hover::after,
.gia-nav a.is-active::after {
  display: none;
  opacity: 0;
  transform: none;
}

.gia-nav a,
.gia-lang {
  transition: background 200ms ease, transform 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.gia-nav a:hover,
.gia-nav a.is-active {
  box-shadow: inset 0 0 0 1px rgba(16, 18, 16, 0.055);
}

.gia-lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-inline: 15px;
  overflow: visible;
}

.gia-lang [data-lang-current] {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.gia-lang__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  margin-left: 0;
  font-size: 14px;
  line-height: 1;
  transform: translateY(-0.5px);
}

.gia-lang:hover .gia-lang__chevron,
.gia-lang:focus-within .gia-lang__chevron {
  transform: translateY(0.5px) rotate(180deg);
}

.gia-lang select {
  border-radius: inherit;
}

body[data-page="home"] .gia-cta {
  animation: gia-cta-reveal 720ms ease both;
  animation-delay: 140ms;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body[data-page="home"] .gia-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 72px rgba(16, 18, 16, 0.12);
}

body[data-page="home"] .gia-cta h2 + p,
body[data-page="home"] .gia-cta h2 ~ p {
  margin-top: 18px;
}

.home-stats div,
.home-split,
.home-categories,
.home-wolt,
.home-partners {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-stats div:hover {
  transform: translateY(-2px);
}

.home-split:hover,
.home-categories:hover,
.home-wolt:hover,
.home-partners:hover {
  transform: translateY(-1px);
}

@keyframes gia-cta-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .gia-header {
    background: rgba(231, 231, 233, 0.84);
  }

  .gia-lang {
    width: fit-content;
    max-width: 100%;
    min-height: 42px;
    padding: 12px 15px;
  }

  body[data-page="home"] .gia-cta h2 + p,
  body[data-page="home"] .gia-cta h2 ~ p {
    margin-top: 14px;
  }
}

/* Final language switcher alignment/dropdown */
.gia-header {
  background:
    linear-gradient(180deg, rgba(221, 224, 220, 0.9), rgba(226, 229, 224, 0.82));
  border-bottom-color: rgba(16, 18, 16, 0.075);
  box-shadow: 0 14px 36px rgba(16, 18, 16, 0.06);
}

.gia-lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.gia-lang:hover,
.gia-lang:focus-within {
  background: transparent;
  transform: none;
}

.gia-lang__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 13px 16px;
  background: transparent;
  color: var(--gia-ink);
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.gia-lang__button:hover,
.gia-lang.is-open .gia-lang__button {
  background: var(--gia-primary);
  box-shadow: inset 0 0 0 1px rgba(16, 18, 16, 0.07), 0 12px 28px rgba(16, 18, 16, 0.08);
}

.gia-lang [data-lang-current],
.gia-lang__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  line-height: 1;
}

.gia-lang__chevron {
  width: 12px;
  margin: 0;
  font-size: 13px;
  transform: translateY(0);
}

.gia-lang:hover .gia-lang__chevron,
.gia-lang:focus-within .gia-lang__chevron,
.gia-lang.is-open .gia-lang__chevron {
  transform: translateY(0) rotate(180deg);
}

.gia-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 130;
  display: grid;
  gap: 4px;
  min-width: 128px;
  border: 1px solid rgba(16, 18, 16, 0.1);
  border-radius: 18px;
  padding: 7px;
  background: rgba(247, 248, 246, 0.96);
  box-shadow: 0 22px 52px rgba(16, 18, 16, 0.14);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gia-lang.is-open .gia-lang__menu,
.gia-lang:focus-within .gia-lang__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gia-lang__menu button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 10px 11px;
  background: transparent;
  color: var(--gia-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, color 160ms ease;
}

.gia-lang__menu button:hover,
.gia-lang__menu button.is-active {
  background: rgba(183, 221, 188, 0.58);
  color: #193b22;
  transform: translateX(1px);
}

@media (max-width: 760px) {
  .gia-header {
    background:
      linear-gradient(180deg, rgba(221, 224, 220, 0.94), rgba(226, 229, 224, 0.88));
  }

  .gia-lang__button {
    min-height: 42px;
    padding: 12px 15px;
  }

  .gia-lang__menu {
    right: auto;
    left: 0;
    min-width: 122px;
  }
}

/* Language switcher final alignment fix */
.gia-lang__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  min-height: 38px;
  padding: 0 12px;
  line-height: 1;
  transform: none;
}

.gia-lang__button:hover,
.gia-lang.is-open .gia-lang__button,
.gia-lang:focus-within .gia-lang__button {
  transform: none;
}

.gia-lang__current,
.gia-lang__current [data-lang-flag],
.gia-lang__current [data-lang-code],
.gia-lang__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
}

.gia-lang__current {
  gap: 5px;
}

.gia-lang__chevron,
.gia-lang:hover .gia-lang__chevron,
.gia-lang:focus-within .gia-lang__chevron {
  width: 12px;
  height: 12px;
  margin: 0;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 160ms ease;
}

.gia-lang.is-open .gia-lang__chevron {
  transform: rotate(180deg);
}

.gia-lang__menu {
  top: calc(100% + 8px);
  transform: translateY(-6px);
}

.gia-lang.is-open .gia-lang__menu,
.gia-lang:focus-within .gia-lang__menu {
  transform: translateY(0);
}

@media (max-width: 760px) {
  .gia-lang__button {
    height: 38px;
    min-height: 38px;
    padding: 0 12px;
  }
}

/* Clean language switcher rewrite */
.gia-nav .gia-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 0;
  padding: 0;
  background: transparent;
  line-height: 1;
  transform: none;
  overflow: visible;
}

.gia-nav .gia-lang:hover,
.gia-nav .gia-lang:focus-within {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.lang-toggle {
  height: 36px;
  min-width: 72px;
  border: 0;
  border-radius: 999px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  color: var(--gia-ink);
  font: inherit;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible,
.lang-toggle.is-open,
.gia-lang.is-open .lang-toggle {
  background: var(--gia-primary);
  box-shadow: inset 0 0 0 1px rgba(16, 18, 16, 0.07);
}

.lang-flag,
.lang-code,
.lang-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 16px;
  margin: 0;
  padding: 0;
  position: static;
  top: auto;
  bottom: auto;
}

.lang-flag {
  width: 16px;
  font-size: 15px;
}

.lang-code {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lang-arrow {
  position: relative;
  width: 10px;
  height: 10px;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 160ms ease;
}

.lang-arrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transform-origin: center;
}

.gia-lang:hover .lang-arrow,
.gia-lang:focus-within .lang-arrow {
  transform: rotate(0deg);
}

.lang-toggle.is-open .lang-arrow,
.gia-lang.is-open .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 130;
  display: grid;
  gap: 4px;
  min-width: 128px;
  border: 1px solid rgba(16, 18, 16, 0.1);
  border-radius: 18px;
  padding: 7px;
  background: rgba(247, 248, 246, 0.96);
  box-shadow: 0 22px 52px rgba(16, 18, 16, 0.14);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gia-lang.is-open .lang-menu,
.gia-lang:focus-within .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 10px 11px;
  background: transparent;
  color: var(--gia-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.lang-menu button:hover,
.lang-menu button.is-active {
  background: rgba(183, 221, 188, 0.58);
  color: #193b22;
}

@media (max-width: 760px) {
  .lang-toggle {
    height: 36px;
    min-width: 72px;
    padding: 0 12px;
  }

  .lang-menu {
    right: auto;
    left: 0;
  }
}

/* Language arrow absolute-centering via SVG */
.lang-arrow {
  position: static;
  width: 10px;
  height: 10px;
  transform: rotate(0deg);
  transform-origin: center;
}

.lang-arrow::before {
  content: none;
}

.lang-arrow svg {
  display: block;
  width: 10px;
  height: 10px;
}

.gia-lang:hover .lang-arrow,
.gia-lang:focus-within .lang-arrow {
  transform: rotate(0deg);
}

.lang-toggle.is-open .lang-arrow,
.gia-lang.is-open .lang-arrow {
  transform: rotate(180deg);
}

/* About page premium layout */
body[data-page="about"] main {
  overflow: clip;
}

.about-hero,
.about-timeline,
.about-growth,
.about-work,
.about-customers,
.about-mvv,
.about-final-cta {
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  margin: 0 auto;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  padding: clamp(72px, 8vw, 126px) 0 clamp(58px, 7vw, 96px);
}

.about-hero__copy {
  max-width: 760px;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(56px, 6.8vw, 104px);
  font-weight: 360;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
}

.about-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: #4d574f;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.62;
}

.about-hero .gia-actions {
  margin-top: 34px;
}

.about-hero__visual {
  position: relative;
  margin: 0;
}

.about-hero__visual::before {
  content: "";
  position: absolute;
  inset: -9% -8% auto auto;
  z-index: -1;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(191, 227, 194, 0.7);
  filter: blur(3px);
}

.about-hero__visual img,
.about-growth img {
  width: 100%;
  border-radius: 42px;
  object-fit: cover;
  box-shadow: 0 34px 100px rgba(16, 18, 16, 0.15);
}

.about-hero__visual img {
  aspect-ratio: 0.96;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 18, 16, 0.12);
  border-bottom: 1px solid rgba(16, 18, 16, 0.12);
  padding: 38px 0;
}

.about-timeline article {
  position: relative;
  padding: 0 clamp(14px, 2vw, 30px);
}

.about-timeline article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: rgba(16, 18, 16, 0.12);
}

.about-timeline strong {
  display: block;
  color: var(--gia-ink);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 840;
  line-height: 1;
}

.about-timeline p {
  margin: 14px 0 0;
  color: var(--gia-muted);
  font-size: 14px;
  line-height: 1.55;
}

.about-growth {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
  padding: clamp(72px, 8vw, 122px) 0 0;
}

.about-growth--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
}

.about-growth figure {
  margin: 0;
}

.about-growth img {
  aspect-ratio: 1.18;
}

.about-growth h2,
.about-work h2,
.about-customers h2,
.about-final-cta h2 {
  margin: 10px 0 0;
  max-width: 760px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 390;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.about-growth p,
.about-customers p,
.about-final-cta p {
  max-width: 760px;
  color: #566058;
  font-size: 17px;
  line-height: 1.72;
}

.about-work {
  padding: clamp(78px, 8vw, 130px) 0 0;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.about-card-grid article,
.about-mvv article {
  border: 1px solid rgba(16, 18, 16, 0.09);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 54px rgba(16, 18, 16, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.about-card-grid article:hover,
.about-mvv article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 26px 66px rgba(16, 18, 16, 0.09);
}

.about-card-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--gia-primary);
  color: #203522;
  font-size: 22px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(16, 18, 16, 0.06);
}

.about-card-grid h3 {
  margin: 18px 0 9px;
  font-size: 21px;
  line-height: 1.15;
}

.about-card-grid p,
.about-mvv p {
  margin: 0;
  color: var(--gia-muted);
  line-height: 1.62;
}

.about-customers {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  margin-top: clamp(72px, 8vw, 126px);
  border-top: 1px solid rgba(16, 18, 16, 0.11);
  border-bottom: 1px solid rgba(16, 18, 16, 0.11);
  padding: clamp(52px, 6.4vw, 84px) 0;
}

.about-customers p {
  margin: 0;
  max-width: 820px;
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.78;
}

.about-mvv {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(72px, 8vw, 118px) 0 0;
}

.about-mvv h2 {
  margin: 16px 0 12px;
  font-size: clamp(27px, 2.8vw, 38px);
  font-weight: 560;
  letter-spacing: 0;
  text-transform: none;
}

.about-mvv article > span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(183, 221, 188, 0.72);
  color: #203522;
  font-size: 21px;
  font-weight: 900;
}

.about-mvv p {
  font-size: 15px;
  line-height: 1.62;
}

/* About page final text polish */
.about-growth h2 + p {
  margin-top: 24px;
}

.about-growth p + p {
  margin-top: 16px;
}

.about-card-grid h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 23px;
  font-weight: 780;
  letter-spacing: 0;
}

.about-card-grid p {
  font-size: 14.5px;
  line-height: 1.56;
}

.about-mvv article > span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-size: 24px;
}

.about-mvv p {
  font-size: 15.75px;
  line-height: 1.64;
}

.about-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  margin-top: clamp(74px, 8vw, 124px);
  border: 1px solid rgba(16, 18, 16, 0.09);
  border-radius: 42px;
  padding: clamp(44px, 6vw, 76px);
  background:
    radial-gradient(circle at 82% 24%, rgba(191, 227, 194, 0.72), transparent 22rem),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 30px 88px rgba(16, 18, 16, 0.1);
}

.about-final-cta p {
  margin-top: 18px;
  margin-bottom: 0;
}

.about-final-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 36px 96px rgba(16, 18, 16, 0.12);
}

.about-final-cta,
.about-customers,
.about-card-grid article,
.about-mvv article {
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

@media (max-width: 1180px) {
  .about-hero,
  .about-growth,
  .about-growth--reverse,
  .about-customers,
  .about-final-cta {
    grid-template-columns: 1fr;
  }

  .about-growth--reverse figure {
    order: -1;
  }

  .about-timeline,
  .about-card-grid,
  .about-mvv {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-timeline article::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .about-hero,
  .about-timeline,
  .about-growth,
  .about-work,
  .about-customers,
  .about-mvv,
  .about-final-cta {
    width: min(100% - 28px, 1480px);
  }

  .about-hero {
    gap: 30px;
    padding: 48px 0 44px;
  }

  .about-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .about-hero p,
  .about-growth p,
  .about-customers p,
  .about-final-cta p {
    font-size: 16px;
  }

  .about-hero .gia-actions,
  .about-final-cta .gia-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .about-hero__visual img,
  .about-growth img {
    border-radius: 28px;
  }

  .about-timeline,
  .about-card-grid,
  .about-mvv {
    grid-template-columns: 1fr;
  }

  .about-timeline {
    gap: 22px;
    padding: 30px 0;
  }

  .about-timeline article {
    padding: 0;
  }

  .about-growth,
  .about-work,
  .about-mvv {
    padding-top: 58px;
  }

  .about-card-grid article,
  .about-mvv article {
    padding: 24px;
    border-radius: 24px;
  }

  .about-customers {
    margin-top: 58px;
    padding: 40px 0;
    gap: 22px;
    align-items: start;
  }

  .about-customers p {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-final-cta {
    margin-top: 58px;
    padding: 30px 20px;
    border-radius: 28px;
  }

  .about-final-cta p {
    margin-top: 14px;
  }
}

/* About page final responsive and motion polish */
body[data-page="about"] {
  overflow-x: hidden;
}

body[data-page="about"] .reveal {
  transform: translateY(22px);
  transition: opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body[data-page="about"] .about-hero.reveal {
  transform: translateY(14px);
}

body[data-page="about"] .about-growth:nth-of-type(3).reveal {
  transform: translateX(-18px);
}

body[data-page="about"] .about-growth--reverse.reveal {
  transform: translateX(18px);
}

body[data-page="about"] .reveal.is-visible,
body[data-page="about"] .about-growth:nth-of-type(3).reveal.is-visible,
body[data-page="about"] .about-growth--reverse.reveal.is-visible {
  transform: translate(0, 0);
}

.about-timeline article,
.about-card-grid article,
.about-mvv article {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 560ms ease, box-shadow 220ms ease, background 220ms ease;
}

.about-timeline.is-visible article,
.about-work.is-visible .about-card-grid article,
.about-mvv.is-visible article {
  opacity: 1;
  transform: translateY(0);
}

.about-timeline article:nth-child(2),
.about-card-grid article:nth-child(2),
.about-mvv article:nth-child(2) {
  transition-delay: 70ms;
}

.about-timeline article:nth-child(3),
.about-card-grid article:nth-child(3),
.about-mvv article:nth-child(3) {
  transition-delay: 140ms;
}

.about-timeline article:nth-child(4),
.about-card-grid article:nth-child(4) {
  transition-delay: 210ms;
}

.about-timeline article:nth-child(5),
.about-card-grid article:nth-child(5) {
  transition-delay: 280ms;
}

.about-card-grid article:nth-child(6) {
  transition-delay: 350ms;
}

.about-card-grid article:hover,
.about-mvv article:hover {
  transform: translateY(-4px);
}

.about-final-cta {
  overflow: hidden;
}

@media (min-width: 1480px) {
  .about-hero,
  .about-growth,
  .about-work,
  .about-customers,
  .about-mvv,
  .about-final-cta {
    width: min(100% - 120px, 1500px);
  }

  .about-hero {
    padding-top: 118px;
  }
}

@media (max-width: 1280px) {
  .about-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.84fr);
    gap: clamp(34px, 5vw, 76px);
  }

  .about-hero h1 {
    font-size: clamp(50px, 6.2vw, 86px);
  }

  .about-growth h2,
  .about-work h2,
  .about-customers h2,
  .about-final-cta h2 {
    font-size: clamp(36px, 4.4vw, 58px);
  }

  .about-timeline strong {
    font-size: clamp(26px, 3vw, 38px);
  }
}

@media (max-width: 980px) {
  .about-hero,
  .about-growth,
  .about-growth--reverse,
  .about-customers,
  .about-final-cta {
    grid-template-columns: 1fr;
  }

  .about-hero__visual,
  .about-growth figure {
    max-width: 760px;
  }

  .about-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
    padding: 34px 0;
  }

  .about-timeline article {
    min-width: 0;
    padding: 0 18px 20px;
    border-bottom: 1px solid rgba(16, 18, 16, 0.09);
  }

  .about-card-grid,
  .about-mvv {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-final-cta {
    gap: 24px;
  }

  .about-final-cta .gia-actions {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .about-hero,
  .about-timeline,
  .about-growth,
  .about-work,
  .about-customers,
  .about-mvv,
  .about-final-cta {
    width: min(100% - 28px, 1480px);
  }

  .about-hero {
    padding-top: 38px;
  }

  .about-hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1.02;
  }

  .about-growth h2,
  .about-work h2,
  .about-customers h2,
  .about-final-cta h2 {
    font-size: clamp(30px, 8.6vw, 40px);
    line-height: 1.04;
  }

  .about-hero__visual img,
  .about-growth img {
    aspect-ratio: 1.04;
    max-height: 420px;
  }

  .about-timeline,
  .about-card-grid,
  .about-mvv {
    grid-template-columns: 1fr;
  }

  .about-timeline article {
    padding: 0 0 18px;
  }

  .about-card-grid {
    gap: 14px;
  }

  .about-card-grid article,
  .about-mvv article {
    padding: 22px;
  }

  .about-card-grid h3 {
    font-size: 21px;
  }

  .about-mvv article > span,
  .about-card-grid article > span {
    width: 48px;
    height: 48px;
  }

  .about-customers {
    margin-top: 52px;
  }

  .about-final-cta {
    padding: 28px 18px;
  }

  .about-final-cta .gia-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="about"] .reveal,
  .about-timeline article,
  .about-card-grid article,
  .about-mvv article {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* B2B / veleprodaja premium layout */
body[data-page="b2b"] {
  overflow-x: hidden;
}

body[data-page="b2b"] main {
  overflow: clip;
}

.b2b-hero,
.b2b-industries,
.b2b-offer,
.b2b-process,
.b2b-why,
.b2b-faq,
.b2b-partners,
.b2b-final-cta {
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  margin: 0 auto;
}

.b2b-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: clamp(42px, 7vw, 108px);
  padding: clamp(72px, 8vw, 126px) 0 clamp(58px, 7vw, 96px);
}

.b2b-hero__copy {
  max-width: 790px;
}

.b2b-hero h1 {
  margin: 0;
  font-size: clamp(56px, 6.6vw, 104px);
  font-weight: 360;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
}

.b2b-hero p {
  max-width: 730px;
  margin: 28px 0 0;
  color: #4d574f;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.62;
}

.b2b-hero .gia-actions {
  margin-top: 34px;
}

.b2b-hero__visual {
  position: relative;
  margin: 0;
}

.b2b-hero__visual::before {
  content: "";
  position: absolute;
  inset: -10% -9% auto auto;
  z-index: -1;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(191, 227, 194, 0.72);
  filter: blur(4px);
}

.b2b-hero__visual::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -7%;
  z-index: -1;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.b2b-hero__visual img {
  width: 100%;
  aspect-ratio: 0.98;
  border-radius: 44px;
  object-fit: cover;
  box-shadow: 0 38px 112px rgba(16, 18, 16, 0.16);
}

.b2b-section-head {
  max-width: 900px;
}

.b2b-section-head h2,
.b2b-final-cta h2 {
  margin: 10px 0 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 390;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.b2b-section-head p,
.b2b-final-cta p {
  max-width: 820px;
  margin: 20px 0 0;
  color: #566058;
  font-size: 17px;
  line-height: 1.72;
}

.b2b-industries,
.b2b-offer,
.b2b-professional,
.b2b-process,
.b2b-why,
.b2b-faq,
.b2b-partners {
  padding: clamp(74px, 8vw, 124px) 0 0;
}

.b2b-industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.b2b-industry-grid article,
.b2b-why-grid article,
.b2b-offer-grid article {
  border: 1px solid rgba(16, 18, 16, 0.09);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 52px rgba(16, 18, 16, 0.065);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.b2b-industry-grid article {
  display: grid;
  gap: 14px;
  min-height: 138px;
  border-radius: 24px;
  padding: 22px;
}

.b2b-industry-grid article:hover,
.b2b-why-grid article:hover,
.b2b-offer-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 18, 16, 0.13);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 70px rgba(16, 18, 16, 0.09);
}

.b2b-industry-grid span,
.b2b-why-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--gia-primary);
  color: #203522;
  font-weight: 900;
}

.b2b-industry-grid strong {
  color: var(--gia-ink);
  font-size: 15px;
  line-height: 1.28;
  text-transform: uppercase;
}

.b2b-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.b2b-offer-grid article {
  border-radius: 30px;
  padding: clamp(28px, 4vw, 42px);
}

.b2b-offer-grid h3 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 520;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

.b2b-offer-grid ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.b2b-offer-grid li {
  position: relative;
  min-width: 0;
  padding-left: 27px;
  color: #4d574f;
  font-size: 15px;
  line-height: 1.46;
}

.b2b-offer-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--gia-primary);
  color: #203522;
  font-size: 12px;
  font-weight: 900;
}

.b2b-professional {
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  margin: 0 auto;
}

.b2b-professional-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: stretch;
  gap: clamp(18px, 2.8vw, 34px);
}

.b2b-professional-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.b2b-professional-layout .b2b-professional-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.b2b-professional-grid article {
  min-height: 180px;
  border: 1px solid rgba(16, 18, 16, 0.09);
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.42)),
    linear-gradient(135deg, rgba(194, 232, 199, 0.3), transparent 58%);
  box-shadow: 0 20px 58px rgba(16, 18, 16, 0.065);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.b2b-professional-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 18, 16, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
    linear-gradient(135deg, rgba(194, 232, 199, 0.38), transparent 58%);
  box-shadow: 0 30px 76px rgba(16, 18, 16, 0.09);
}

.b2b-professional-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 34px;
  border-radius: 999px;
  background: var(--gia-primary);
  color: #203522;
  font-size: 14px;
  font-weight: 900;
}

.b2b-professional-grid p {
  margin: 28px 0 0;
  color: #4e594f;
  font-size: 16px;
  line-height: 1.56;
}

.b2b-professional-note {
  max-width: 880px;
  margin: 26px 0 0;
  color: #5b655d;
  font-size: 16px;
  line-height: 1.62;
}

.b2b-professional-media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border: 1px solid rgba(16, 18, 16, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 26px 70px rgba(16, 18, 16, 0.1);
}

.b2b-professional-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.b2b-step-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(16, 18, 16, 0.12);
  border-bottom: 1px solid rgba(16, 18, 16, 0.12);
}

.b2b-step-flow article {
  position: relative;
  min-height: 170px;
  padding: 30px clamp(16px, 2vw, 30px);
}

.b2b-step-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: rgba(16, 18, 16, 0.12);
}

.b2b-step-flow strong {
  display: block;
  color: rgba(32, 53, 34, 0.55);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 850;
  line-height: 1;
}

.b2b-step-flow p {
  margin: 18px 0 0;
  color: var(--gia-ink);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.42;
}

.b2b-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.b2b-why-grid article {
  border-radius: 28px;
  padding: 28px;
}

.b2b-why-grid span {
  width: auto;
  min-width: 52px;
  padding: 0 12px;
  border-radius: 16px;
  font-size: 17px;
}

.b2b-why-grid h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.14;
}

.b2b-why-grid p {
  margin: 0;
  color: var(--gia-muted);
  font-size: 15px;
  line-height: 1.62;
}

.b2b-faq .gia-faq {
  margin-top: 30px;
}

body[data-page="b2b"] .gia-faq details {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 16px 44px rgba(16, 18, 16, 0.055);
}

body[data-page="b2b"] .gia-faq summary {
  font-size: 17px;
  font-weight: 760;
}

body[data-page="b2b"] .gia-faq p {
  color: var(--gia-muted);
  line-height: 1.65;
}

.b2b-partners {
  border-top: 1px solid rgba(16, 18, 16, 0.09);
  margin-top: clamp(74px, 8vw, 124px);
  padding-top: clamp(44px, 5vw, 70px);
}

.b2b-partners .gia-logo-carousel {
  margin-top: 34px;
}

.b2b-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  margin-top: clamp(74px, 8vw, 124px);
  border: 1px solid rgba(16, 18, 16, 0.09);
  border-radius: 42px;
  padding: clamp(46px, 6vw, 78px);
  background:
    radial-gradient(circle at 82% 24%, rgba(191, 227, 194, 0.72), transparent 22rem),
    rgba(255, 255, 255, 0.54);
  box-shadow: 0 30px 88px rgba(16, 18, 16, 0.1);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.b2b-final-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 36px 96px rgba(16, 18, 16, 0.12);
}

body[data-page="b2b"] .reveal {
  transform: translateY(22px);
  transition: opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body[data-page="b2b"] .b2b-offer.reveal,
body[data-page="b2b"] .b2b-why.reveal {
  transform: translateX(-18px);
}

body[data-page="b2b"] .b2b-process.reveal,
body[data-page="b2b"] .b2b-faq.reveal {
  transform: translateX(18px);
}

body[data-page="b2b"] .reveal.is-visible,
body[data-page="b2b"] .b2b-offer.reveal.is-visible,
body[data-page="b2b"] .b2b-why.reveal.is-visible,
body[data-page="b2b"] .b2b-process.reveal.is-visible,
body[data-page="b2b"] .b2b-faq.reveal.is-visible {
  transform: translate(0, 0);
}

@media (max-width: 1280px) {
  .b2b-hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.84fr);
    gap: clamp(34px, 5vw, 76px);
  }

  .b2b-hero h1 {
    font-size: clamp(50px, 6.2vw, 86px);
  }

  .b2b-section-head h2,
  .b2b-final-cta h2 {
    font-size: clamp(36px, 4.4vw, 58px);
  }

  .b2b-industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .b2b-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-professional__items {
    grid-template-columns: 1fr;
  }

  .b2b-hero,
  .b2b-final-cta {
    grid-template-columns: 1fr;
  }

  .b2b-hero__visual {
    max-width: 760px;
  }

  .b2b-offer-grid,
  .b2b-professional-grid,
  .b2b-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2b-professional-layout {
    grid-template-columns: 1fr;
  }

  .b2b-professional-media img {
    min-height: 260px;
  }

  .b2b-offer-grid ul {
    grid-template-columns: 1fr;
  }

  .b2b-step-flow {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .b2b-step-flow article {
    min-height: auto;
    border-bottom: 1px solid rgba(16, 18, 16, 0.11);
  }

  .b2b-step-flow article::after {
    display: none;
  }

  .b2b-final-cta .gia-actions {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .b2b-hero,
  .b2b-industries,
  .b2b-offer,
  .b2b-professional,
  .b2b-process,
  .b2b-why,
  .b2b-faq,
  .b2b-partners,
  .b2b-final-cta {
    width: min(100% - 28px, 1480px);
  }

  .b2b-hero {
    padding: 38px 0 44px;
  }

  .b2b-hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1.02;
  }

  .b2b-hero p,
  .b2b-section-head p,
  .b2b-final-cta p {
    font-size: 16px;
    line-height: 1.62;
  }

  .b2b-hero .gia-actions,
  .b2b-final-cta .gia-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .b2b-section-head h2,
  .b2b-final-cta h2 {
    font-size: clamp(30px, 8.6vw, 40px);
    line-height: 1.04;
  }

  .b2b-hero__visual img {
    aspect-ratio: 1.04;
    max-height: 420px;
    border-radius: 28px;
  }

  .b2b-industries,
  .b2b-offer,
  .b2b-professional,
  .b2b-process,
  .b2b-why,
  .b2b-faq,
  .b2b-partners {
    padding-top: 58px;
  }

  .b2b-industry-grid,
  .b2b-offer-grid,
  .b2b-professional-grid,
  .b2b-why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .b2b-professional-layout .b2b-professional-grid {
    grid-template-columns: 1fr;
  }

  .b2b-professional-media img {
    min-height: 220px;
  }

  .b2b-industry-grid article {
    min-height: auto;
  }

  .b2b-offer-grid article,
  .b2b-professional-grid article,
  .b2b-why-grid article {
    padding: 22px;
    border-radius: 24px;
  }

  .b2b-step-flow article {
    padding: 24px 0;
  }

  .b2b-final-cta {
    margin-top: 58px;
    padding: 28px 18px;
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="b2b"] .reveal,
  body[data-page="b2b"] .b2b-offer.reveal,
  body[data-page="b2b"] .b2b-why.reveal,
  body[data-page="b2b"] .b2b-process.reveal,
  body[data-page="b2b"] .b2b-faq.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Products mini catalog */
body[data-page="products"] {
  overflow-x: hidden;
}

.products-hero,
.products-catalog,
.products-cta {
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  margin-inline: auto;
}

.products-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  padding: clamp(70px, 8vw, 128px) 0 clamp(58px, 6vw, 92px);
}

.products-hero::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 12%;
  z-index: -1;
  width: clamp(240px, 28vw, 480px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(171, 218, 178, 0.42), rgba(171, 218, 178, 0));
  filter: blur(6px);
}

.products-hero h1 {
  max-width: 860px;
  margin: 12px 0 22px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.products-hero p {
  max-width: 740px;
  margin: 0;
  color: #435147;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.55;
}

.products-note {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 22px 0 4px;
  border: 1px solid rgba(67, 126, 75, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.74);
  color: #435147;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.products-hero__visual {
  position: relative;
  margin: 0;
}

.products-hero__visual img {
  width: 100%;
  min-height: 420px;
  max-height: 620px;
  aspect-ratio: 0.92;
  border-radius: 42px;
  object-fit: cover;
  box-shadow: 0 34px 98px rgba(16, 18, 16, 0.16);
}

.products-hero__visual figcaption {
  position: absolute;
  left: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.78);
  color: #203522;
  box-shadow: 0 18px 42px rgba(16, 18, 16, 0.11);
  backdrop-filter: blur(16px);
}

.products-hero__visual strong {
  font-size: 28px;
  line-height: 1;
}

.products-hero__visual span {
  color: #526057;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.products-catalog {
  padding: clamp(52px, 6vw, 82px) 0;
}

.products-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.products-toolbar h2 {
  max-width: 720px;
  margin: 8px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.products-toolbar p {
  flex: 0 0 auto;
  margin: 0;
  border: 1px solid rgba(32, 53, 34, 0.1);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  color: #435147;
  font-size: 13px;
  font-weight: 800;
}

.products-filters {
  grid-template-columns: minmax(260px, 1.25fr) minmax(170px, 0.75fr) minmax(170px, 0.72fr) minmax(150px, 0.6fr);
  gap: 12px;
  margin-bottom: 30px;
  border: 1px solid rgba(32, 53, 34, 0.08);
  border-radius: 28px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 56px rgba(16, 18, 16, 0.06);
}

body[data-page="products"] .products-filters input,
body[data-page="products"] .products-filters select {
  min-height: 52px;
  border-radius: 18px;
  background: #fff;
  font-size: 15px;
}

body[data-page="products"] .gia-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="products"] .gia-product {
  display: flex;
  min-height: 100%;
  min-width: 0;
  border-color: rgba(32, 53, 34, 0.1);
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(16, 18, 16, 0.045);
  opacity: 0;
  translate: 0 28px;
  animation: product-card-in 840ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--product-delay, 0ms);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

body[data-page="products"] .gia-product:hover {
  border-color: rgba(67, 126, 75, 0.24);
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 26px 72px rgba(16, 18, 16, 0.12);
}

body[data-page="products"] .gia-product img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
}

.gia-product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2px 2px 0;
}

.gia-product__category {
  width: fit-content;
  margin-top: 12px;
  border-radius: 999px;
  padding: 6px 9px;
  background: #edf6ed;
  color: #203522;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

body[data-page="products"] .gia-product h3 {
  display: -webkit-box;
  margin: 10px 0 7px;
  min-height: 43px;
  overflow: hidden;
  font-size: 17.5px;
  font-weight: 900;
  line-height: 1.22;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="products"] .gia-product small {
  color: #526057;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.gia-product__codes {
  display: grid;
  gap: 3px;
  margin: 10px 0 0;
  overflow-wrap: anywhere;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

.gia-product__desc {
  display: -webkit-box !important;
  margin: 10px 0 0;
  overflow: hidden;
  color: #5f6a62 !important;
  font-size: 12.5px !important;
  line-height: 1.45 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.gia-product__price {
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(224, 241, 226, 0.72);
  color: #203522 !important;
  font-size: 14px !important;
  font-weight: 850;
  line-height: 1;
}

.gia-product__footer {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

body[data-page="products"] .gia-product__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  min-height: 44px;
  padding: 12px 14px;
  text-align: center;
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

body[data-page="products"] .gia-product__cta:hover {
  transform: translateY(-2px);
  background: #2d4630;
  box-shadow: 0 14px 32px rgba(32, 53, 34, 0.18);
}

.gia-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.gia-pagination button,
.gia-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(32, 53, 34, 0.12);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #203522;
  font-size: 13px;
  font-weight: 850;
}

.gia-pagination button {
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.gia-pagination button:hover:not(:disabled),
.gia-pagination button.is-active {
  border-color: rgba(67, 126, 75, 0.28);
  background: var(--gia-primary);
  transform: translateY(-2px);
}

.gia-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

body[data-page="products"] .products-cta {
  max-width: 1280px;
  margin-top: clamp(8px, 2vw, 28px);
  margin-bottom: clamp(54px, 7vw, 92px);
}

body[data-page="products"] .products-cta h2 {
  font-size: clamp(34px, 4.4vw, 58px);
}

body[data-page="products"] .products-cta p {
  max-width: 680px;
  font-size: clamp(15px, 1.35vw, 18px);
}

body[data-page="products"] .products-hero.reveal,
body[data-page="products"] .products-catalog.reveal,
body[data-page="products"] .products-cta.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 860ms cubic-bezier(0.16, 1, 0.3, 1), transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-page="products"] .products-hero.reveal.is-visible,
body[data-page="products"] .products-catalog.reveal.is-visible,
body[data-page="products"] .products-cta.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="products"] .products-catalog:not(.is-visible) .products-filters,
body[data-page="products"] .products-catalog:not(.is-visible) .gia-pagination {
  opacity: 0;
  transform: translateY(24px);
}

body[data-page="products"] .products-catalog.is-visible .products-filters,
body[data-page="products"] .products-catalog.is-visible .gia-pagination {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-page="products"] .products-catalog.is-visible .gia-pagination {
  transition-delay: 140ms;
}

@keyframes product-card-in {
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (max-width: 1320px) {
  body[data-page="products"] .gia-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1060px) {
  .products-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .products-hero h1 {
    font-size: clamp(44px, 7vw, 72px);
  }

  .products-hero__visual img {
    max-height: 520px;
    aspect-ratio: 16 / 10;
  }

  .products-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .products-filters {
    grid-template-columns: 1fr 1fr;
  }

  .products-filters input {
    grid-column: 1 / -1;
  }

  body[data-page="products"] .gia-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body[data-page="products"] .gia-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .products-hero,
  .products-catalog,
  .products-cta {
    width: min(100% - 28px, 1480px);
  }

  .products-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.02;
  }

  .products-hero p {
    font-size: 16px;
  }

  .products-note {
    border-radius: 18px;
  }

  .products-hero__visual img {
    min-height: 270px;
    border-radius: 30px;
  }

  .products-filters {
    grid-template-columns: 1fr;
    border-radius: 22px;
    gap: 10px;
    padding: 10px;
  }

  body[data-page="products"] .products-filters input,
  body[data-page="products"] .products-filters select {
    width: 100%;
    min-height: 48px;
  }

  body[data-page="products"] .gia-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body[data-page="products"] .products-cta {
    display: grid;
    gap: 22px;
    padding: 28px 22px;
    text-align: left;
  }

  body[data-page="products"] .products-cta h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  body[data-page="products"] .products-cta .gia-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  body[data-page="products"] .gia-product-grid {
    grid-template-columns: 1fr;
  }

  .products-toolbar h2 {
    font-size: 29px;
  }

  .products-toolbar p {
    width: 100%;
    text-align: center;
  }

  .gia-pagination {
    justify-content: center;
    gap: 6px;
  }

  .gia-pagination button,
  .gia-pagination span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  body[data-page="products"] .products-cta .gia-actions,
  body[data-page="products"] .products-cta .gia-button {
    width: 100%;
  }

  body[data-page="products"] .products-cta .gia-button {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="products"] .products-hero.reveal,
  body[data-page="products"] .products-catalog.reveal,
  body[data-page="products"] .products-cta.reveal,
  body[data-page="products"] .products-filters,
  body[data-page="products"] .gia-pagination,
  body[data-page="products"] .gia-product {
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Contact premium page */
body[data-page="contact"] {
  overflow-x: hidden;
}

.contact-hero,
.contact-main,
.contact-locations {
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  margin-inline: auto;
}

.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(70px, 8vw, 126px) 0 clamp(54px, 6vw, 90px);
}

.contact-hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: 14%;
  z-index: -1;
  width: clamp(260px, 34vw, 520px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(171, 218, 178, 0.46), rgba(171, 218, 178, 0));
  filter: blur(8px);
}

.contact-hero h1 {
  max-width: 860px;
  margin: 12px 0 22px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-hero p {
  max-width: 720px;
  margin: 0 0 28px;
  color: #435147;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.58;
}

.contact-hero__visual {
  position: relative;
  margin: 0;
}

.contact-hero__visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: -1;
  border-radius: 42px;
  background: rgba(191, 227, 194, 0.55);
  filter: blur(18px);
}

.contact-hero__visual > div {
  display: grid;
  min-height: 360px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  border: 1px solid rgba(32, 53, 34, 0.08);
  border-radius: 42px;
  padding: clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.9), transparent 16rem),
    linear-gradient(145deg, rgba(248, 249, 245, 0.92), rgba(218, 238, 220, 0.9));
  box-shadow: 0 34px 98px rgba(16, 18, 16, 0.14);
  text-align: center;
}

.contact-hero__visual span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 28px;
  background: #203522;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(32, 53, 34, 0.2);
}

.contact-hero__visual strong {
  color: #203522;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
}

.contact-hero__visual small {
  max-width: 260px;
  color: #526057;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(54px, 6vw, 88px) 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid rgba(32, 53, 34, 0.1);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 84px rgba(16, 18, 16, 0.08);
  backdrop-filter: blur(14px);
}

.contact-field {
  position: relative;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 56px;
  border-color: rgba(32, 53, 34, 0.12);
  border-radius: 18px;
  padding: 22px 15px 9px;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.contact-field span {
  position: absolute;
  left: 16px;
  top: 18px;
  z-index: 1;
  color: #69746c;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  pointer-events: none;
  transform-origin: left center;
  transition: transform 190ms ease, color 190ms ease, top 190ms ease, font-size 190ms ease;
}

.contact-field:focus-within span,
.contact-field:has(input:not(:placeholder-shown)) span,
.contact-field:has(textarea:not(:placeholder-shown)) span,
.contact-field:has(select:valid) span {
  top: 9px;
  color: #2f6d39;
  font-size: 11px;
  text-transform: uppercase;
}

.contact-form select:invalid {
  color: transparent;
}

.contact-form select:valid {
  color: var(--gia-ink);
}

.contact-form textarea {
  min-height: 156px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(67, 126, 75, 0.46);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(171, 218, 178, 0.28);
}

.contact-form .gia-button {
  width: fit-content;
  min-width: 180px;
  text-transform: uppercase;
}

.gia-form-status {
  align-self: center;
  margin: 0;
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(224, 241, 226, 0.45);
  color: #526057;
  font-size: 14px;
  font-weight: 750;
}

.gia-form-privacy {
  margin: 0;
  color: #526057;
  font-size: 14px;
  line-height: 1.55;
}

.gia-form-privacy a {
  color: #2f6d39;
  font-weight: 750;
  text-underline-offset: 3px;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(32, 53, 34, 0.1);
  border-radius: 30px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(248, 249, 245, 0.82);
  box-shadow: 0 22px 72px rgba(16, 18, 16, 0.075);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.contact-card:hover {
  border-color: rgba(67, 126, 75, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 30px 84px rgba(16, 18, 16, 0.12);
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: #dff1e2;
  color: #203522;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(67, 126, 75, 0.12), 0 14px 32px rgba(32, 53, 34, 0.08);
}

.contact-card h2 {
  margin: 2px 0 14px;
  color: #203522;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 950;
  line-height: 1.05;
}

.contact-card p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #4a574e;
  font-size: 16.5px;
  font-weight: 650;
  line-height: 1.38;
  letter-spacing: 0;
}

.contact-card__note {
  align-items: flex-start !important;
  font-size: 16px !important;
  font-weight: 620 !important;
  line-height: 1.45 !important;
}

.contact-card p span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  min-width: 24px;
  height: 24px;
  color: #2f6d39;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}

.contact-card a {
  color: #203522;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.contact-locations {
  padding: clamp(18px, 4vw, 48px) 0 clamp(66px, 8vw, 120px);
}

.contact-section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.contact-section-head h2 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.02;
}

.contact-section-head p {
  margin: 0;
  color: #526057;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
}

.contact-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-location-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.8fr);
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(32, 53, 34, 0.1);
  border-radius: 30px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 58px rgba(16, 18, 16, 0.065);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.contact-location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 76px rgba(16, 18, 16, 0.11);
}

.contact-location-card iframe {
  width: 100%;
  min-height: 230px;
  border: 0;
  border-radius: 22px;
  filter: saturate(0.92) contrast(0.98);
}

.contact-location-card h3 {
  margin: 8px 0 8px;
  color: #203522;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.08;
}

.contact-location-card p {
  margin: 0 0 16px;
  color: #526057;
  font-size: 15px;
  line-height: 1.45;
}

body[data-page="contact"] .contact-hero.reveal,
body[data-page="contact"] .contact-main.reveal,
body[data-page="contact"] .contact-locations.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-page="contact"] .contact-hero.reveal.is-visible,
body[data-page="contact"] .contact-main.reveal.is-visible,
body[data-page="contact"] .contact-locations.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="contact"] .contact-main:not(.is-visible) .contact-form,
body[data-page="contact"] .contact-main:not(.is-visible) .contact-card,
body[data-page="contact"] .contact-locations:not(.is-visible) .contact-location-card {
  opacity: 0;
  transform: translateY(30px);
}

body[data-page="contact"] .contact-main.is-visible .contact-form,
body[data-page="contact"] .contact-main.is-visible .contact-card,
body[data-page="contact"] .contact-locations.is-visible .contact-location-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 820ms cubic-bezier(0.16, 1, 0.3, 1), transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-page="contact"] .contact-main.is-visible .contact-card:nth-child(1) {
  transition-delay: 90ms;
}

body[data-page="contact"] .contact-main.is-visible .contact-card:nth-child(2),
body[data-page="contact"] .contact-locations.is-visible .contact-location-card:nth-child(2) {
  transition-delay: 160ms;
}

@media (max-width: 1120px) {
  .contact-main,
  .contact-location-card {
    grid-template-columns: 1fr;
  }

  .contact-location-card iframe {
    min-height: 260px;
  }
}

@media (max-width: 900px) {
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 58px;
  }

  .contact-hero h1 {
    font-size: clamp(42px, 8vw, 68px);
  }

  .contact-hero__visual > div {
    min-height: 280px;
  }

  .contact-location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero,
  .contact-main,
  .contact-locations {
    width: min(100% - 28px, 1480px);
  }

  .contact-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.04;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-hero .gia-actions,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-hero .gia-button,
  .contact-form .gia-button {
    width: 100%;
    justify-content: center;
  }

  .contact-form {
    border-radius: 26px;
    padding: 22px;
  }

  .contact-form .gia-form__full,
  .contact-form button,
  .contact-form .gia-form-status {
    grid-column: auto;
  }

  .contact-card,
  .contact-location-card {
    border-radius: 24px;
  }

  .contact-location-card {
    padding: 12px;
  }

  .contact-location-card iframe {
    min-height: 220px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="contact"] .contact-hero.reveal,
  body[data-page="contact"] .contact-main.reveal,
  body[data-page="contact"] .contact-locations.reveal,
  body[data-page="contact"] .contact-form,
  body[data-page="contact"] .contact-card,
  body[data-page="contact"] .contact-location-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Retail / maloprodaja premium layout */
body[data-page="retail"] {
  overflow-x: hidden;
}

body[data-page="retail"] main {
  overflow: clip;
}

.retail-hero,
.retail-locations,
.retail-wolt,
body[data-page="retail"] .gia-cta {
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  margin-left: auto;
  margin-right: auto;
}

.retail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(42px, 7vw, 108px);
  padding: clamp(72px, 8vw, 126px) 0 clamp(58px, 7vw, 96px);
}

.retail-hero h1 {
  margin: 0;
  font-size: clamp(56px, 6.6vw, 104px);
  font-weight: 360;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
}

.retail-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: #4d574f;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.62;
}

.retail-hero .gia-actions {
  margin-top: 32px;
}

.retail-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.retail-trust-row span,
.retail-rating,
.retail-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(16, 18, 16, 0.1);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.56);
  color: #243126;
  font-size: 13px;
  font-weight: 820;
  line-height: 1;
}

.retail-hero__visual {
  position: relative;
  margin: 0;
}

.retail-hero__visual::before {
  content: "";
  position: absolute;
  inset: -9% -9% auto auto;
  z-index: -1;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(191, 227, 194, 0.72);
}

.retail-hero__visual img {
  width: 100%;
  aspect-ratio: 0.98;
  border-radius: 44px;
  object-fit: cover;
  box-shadow: 0 38px 112px rgba(16, 18, 16, 0.16);
}

.retail-hero__visual figcaption {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  display: grid;
  gap: 4px;
  border: 1px solid rgba(16, 18, 16, 0.1);
  border-radius: 22px;
  padding: 16px 18px;
  background: rgba(248, 249, 245, 0.84);
  box-shadow: 0 18px 50px rgba(16, 18, 16, 0.12);
  backdrop-filter: blur(10px);
}

.retail-hero__visual figcaption strong {
  font-size: 24px;
  line-height: 1;
}

.retail-hero__visual figcaption span {
  color: var(--gia-muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.retail-locations {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  padding: clamp(72px, 8vw, 116px) 0 0;
}

.retail-store-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 38px;
}

.retail-store-media {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.38);
}

.retail-store-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 780ms ease, transform 1200ms ease;
}

.retail-store-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.retail-store-content {
  display: grid;
  align-content: center;
  min-width: 0;
}

.retail-store-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.retail-rating {
  background: rgba(255, 255, 255, 0.68);
}

.retail-rating small {
  color: var(--gia-muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.retail-address {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 0;
  font-weight: 760;
  min-width: 0;
  max-width: 100%;
}

.retail-store-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.retail-chip--wolt {
  border-color: rgba(0, 194, 203, 0.28);
  background: rgba(0, 194, 203, 0.1);
}

.retail-hours {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.retail-hours li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4d574f;
  font-size: 15px;
  font-weight: 680;
  line-height: 1.35;
}

.retail-hours span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--gia-primary);
  color: #203522;
  font-size: 13px;
}

.retail-store-card iframe {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 300px;
  border-radius: 26px;
}

.retail-wolt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-top: clamp(72px, 8vw, 120px);
  border: 1px solid rgba(16, 18, 16, 0.09);
  border-radius: 42px;
  padding: clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 194, 203, 0.16), transparent 20rem),
    radial-gradient(circle at 88% 16%, rgba(191, 227, 194, 0.7), transparent 18rem),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 30px 88px rgba(16, 18, 16, 0.1);
}

.retail-wolt > div > img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 16px;
}

.retail-wolt h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 390;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.retail-wolt p {
  max-width: 760px;
  margin: 22px 0 28px;
  color: #566058;
  font-size: 17px;
  line-height: 1.7;
}

.retail-wolt figure {
  margin: 0;
}

.retail-wolt figure img {
  width: 100%;
  aspect-ratio: 1.15;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 24px 66px rgba(16, 18, 16, 0.12);
}

body[data-page="retail"] .gia-cta {
  margin-top: clamp(72px, 8vw, 120px);
  padding: clamp(46px, 6vw, 78px);
  border-radius: 42px;
}

body[data-page="retail"] .gia-cta h2 + p {
  margin-top: 18px;
}

body[data-page="retail"] .reveal {
  transform: translateY(28px);
  transition: opacity 820ms cubic-bezier(0.16, 1, 0.3, 1), transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-page="retail"] .reveal.is-visible {
  transform: translateY(0);
}

body[data-page="retail"] .retail-store-card:nth-child(2) {
  transition-delay: 120ms;
}

.retail-store-card:hover {
  transform: translateY(-4px);
}

@media (max-width: 1180px) {
  .retail-hero,
  .retail-store-card,
  .retail-wolt {
    grid-template-columns: 1fr;
  }

  .retail-hero__visual,
  .retail-wolt figure {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .retail-hero,
  .retail-locations,
  .retail-wolt,
  body[data-page="retail"] .gia-cta {
    width: min(100% - 28px, 1480px);
  }

  .retail-hero {
    gap: 30px;
    padding: 44px 0 50px;
  }

  .retail-hero h1 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1;
  }

  .retail-hero p,
  .retail-wolt p {
    font-size: 16px;
  }

  .retail-hero .gia-actions,
  .retail-store-card .gia-actions,
  .retail-wolt .gia-button,
  body[data-page="retail"] .gia-cta .gia-actions {
    width: 100%;
  }

  .retail-hero .gia-actions,
  .retail-store-card .gia-actions,
  body[data-page="retail"] .gia-cta .gia-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .retail-hero .gia-button,
  .retail-store-card .gia-button,
  body[data-page="retail"] .gia-cta .gia-button {
    justify-content: center;
    min-height: 52px;
    padding: 15px 18px;
    font-size: 14px;
  }

  .retail-store-card {
    padding: 18px;
    border-radius: 28px;
  }

  .retail-store-media {
    min-height: 300px;
    border-radius: 24px;
  }

  .retail-store-card iframe {
    min-height: 240px;
    border-radius: 22px;
  }

  .retail-wolt {
    margin-top: 58px;
    padding: 28px 20px;
    border-radius: 28px;
  }

  .retail-wolt h2 {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  body[data-page="retail"] .gia-cta {
    margin-top: 58px;
    padding: 30px 20px;
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="retail"] .reveal,
  .retail-store-media img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* i18n regression polish: keeps longer EN/DE/RU text compact without changing layout. */
.b2b-supply ul {
  max-width: 620px;
  border: 1px solid rgba(32, 53, 34, 0.08);
  border-radius: 24px;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(248, 249, 245, 0.62);
}

.b2b-supply li {
  min-height: 28px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.38;
}

.contact-card {
  min-width: 0;
}

.contact-card p {
  min-width: 0;
}

.contact-card p > span:first-child {
  flex: 0 0 26px;
}

.contact-card p > span:not(:first-child) {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  height: auto;
  justify-content: flex-start;
  color: inherit;
  font-size: 16px;
  line-height: 1.42;
  text-align: left;
}

.contact-card__note {
  display: flex;
  align-items: flex-start;
  max-width: 100%;
}

.contact-card__note > span:last-child {
  overflow-wrap: anywhere;
}

body[data-page="products"] .gia-product {
  min-width: 0;
}

body[data-page="products"] .gia-product h3 {
  min-height: 42px;
}

.gia-product__category {
  max-width: 100%;
  white-space: normal;
  line-height: 1.15;
}

.gia-product__price {
  max-width: 100%;
  white-space: normal;
  line-height: 1.15 !important;
}

body[data-page="products"] .gia-product__cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.retail-hours {
  max-width: 520px;
  justify-items: start;
}

.retail-hours li {
  display: grid;
  grid-template-columns: 26px auto;
  align-items: center;
  justify-content: start;
  column-gap: 10px;
  width: max-content;
  max-width: 100%;
}

.retail-hours li > span:first-child {
  width: 26px;
  min-width: 26px;
}

.retail-hours li > span:not(:first-child) {
  width: auto;
  height: auto;
  min-width: 0;
  border-radius: 0;
  background: transparent;
  color: #4d574f;
  font-size: 15px;
  line-height: 1.35;
  text-align: left;
  overflow-wrap: normal;
}

.retail-store-card iframe {
  display: block;
  height: 320px;
  min-height: 320px;
  background: transparent;
}

@media (max-width: 980px) {
  .b2b-supply ul {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .contact-card h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .contact-card p,
  .contact-card__note,
  .contact-card p > span:not(:first-child) {
    font-size: 15px !important;
  }

  .retail-hours {
    max-width: 100%;
  }
}

/* Retail final chip and copy polish */
.retail-store-topline {
  align-items: center;
}

.retail-store-topline .gia-eyebrow,
.retail-rating,
.retail-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.retail-store-topline .gia-eyebrow {
  margin: 0;
}

.retail-rating,
.retail-chip {
  gap: 8px;
  padding: 7px 4px;
  border-color: transparent;
  background: transparent;
  line-height: 1;
  white-space: nowrap;
}

.retail-stars {
  color: #f5b400;
  font-size: 16px;
  letter-spacing: -0.075em;
  line-height: 1;
}

.retail-rating strong,
.retail-chip strong {
  color: var(--gia-ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.retail-rating small,
.retail-chip small {
  color: var(--gia-muted);
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.retail-chip img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  flex: 0 0 21px;
}

.retail-store-content > p:not(.retail-address) {
  max-width: 720px;
  color: #566058;
  font-size: 15.5px;
  line-height: 1.66;
}

.retail-store-meta {
  align-items: center;
}

.retail-address > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  line-height: 1;
}

.retail-address > span:last-child {
  display: inline;
  width: auto;
  height: auto;
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.25;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .retail-address > span:last-child {
    white-space: normal;
  }
}

.retail-wolt-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(16, 18, 16, 0.1);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  background: rgba(255, 255, 255, 0.58);
  color: #203522;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.retail-wolt-badge img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: cover;
}

.retail-wolt > div > img {
  display: none;
}

@media (max-width: 680px) {
  .retail-store-topline,
  .retail-store-meta {
    gap: 8px;
  }

  .retail-rating,
  .retail-chip {
    white-space: normal;
  }

  .retail-store-content > p:not(.retail-address) {
    font-size: 15px;
  }

  .retail-wolt-badge {
    width: fit-content;
    max-width: 100%;
  }
}

/* B2B final polish */
.b2b-flex {
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  margin: 0 auto;
  padding: clamp(74px, 8vw, 124px) 0 0;
}

.b2b-industry-grid {
  gap: 18px;
}

.b2b-industry-grid article {
  min-height: 156px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.42));
}

.b2b-industry-grid span,
.b2b-why-grid span,
.b2b-flex-grid span {
  width: 54px;
  height: 54px;
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(16, 18, 16, 0.06);
}

.b2b-industry-grid strong {
  font-size: 16px;
  line-height: 1.34;
  letter-spacing: 0.02em;
}

.b2b-offer .b2b-section-head {
  position: relative;
}

.b2b-offer-badge {
  display: inline-flex;
  margin-top: 22px;
  border: 1px solid rgba(16, 18, 16, 0.1);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.5);
  color: #243126;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.b2b-offer-grid li {
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.54;
}

.b2b-offer-grid li::before {
  top: 0.05em;
  width: 22px;
  height: 22px;
  font-size: 13px;
}

.b2b-flex-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.b2b-flex-grid article {
  border: 1px solid rgba(16, 18, 16, 0.09);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 20px 56px rgba(16, 18, 16, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.b2b-flex-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 76px rgba(16, 18, 16, 0.1);
}

.b2b-flex-grid span {
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: var(--gia-primary);
  color: #203522;
  font-weight: 900;
}

.b2b-flex-grid h3,
.b2b-why-grid h3 {
  margin: 22px 0 10px;
  font-size: clamp(23px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.b2b-flex-grid p,
.b2b-why-grid p {
  color: #5b655d;
  font-size: 15.5px;
  line-height: 1.66;
}

.b2b-why-grid article {
  background:
    radial-gradient(circle at 86% 14%, rgba(191, 227, 194, 0.42), transparent 9rem),
    rgba(255, 255, 255, 0.54);
}

body[data-page="b2b"] .gia-faq {
  gap: 10px;
}

body[data-page="b2b"] .gia-faq details {
  overflow: hidden;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body[data-page="b2b"] .gia-faq details[open] {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 54px rgba(16, 18, 16, 0.075);
}

body[data-page="b2b"] .gia-faq summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  list-style: none;
}

body[data-page="b2b"] .gia-faq summary::-webkit-details-marker {
  display: none;
}

body[data-page="b2b"] .gia-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--gia-primary);
  color: #203522;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 160ms ease, background 160ms ease;
}

body[data-page="b2b"] .gia-faq details[open] summary::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

body[data-page="b2b"] .gia-faq p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.56;
}

.b2b-partners h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.04;
}

.b2b-partners .gia-logo-carousel {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.36);
}

/* Clean partner logo presentation */
.gia-logo-carousel,
.b2b-partners .gia-logo-carousel,
.home-partners .gia-logo-carousel {
  background: transparent;
  border-radius: 0;
  mask-image: none;
  -webkit-mask-image: none;
}

.gia-logo-track {
  gap: 20px;
  animation-duration: 96s;
}

.gia-logo-item {
  width: 156px;
  height: 96px;
  padding: 18px 22px;
  border: 1px solid rgba(16, 18, 16, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 34px rgba(16, 18, 16, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gia-logo-item img {
  max-width: 112px;
  max-height: 50px;
}

.gia-logo-item:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(16, 18, 16, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(16, 18, 16, 0.085);
}

@media (max-width: 1280px) {
  .b2b-flex-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .b2b-flex {
    width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  }
}

@media (max-width: 560px) {
  .b2b-flex {
    width: min(100% - 28px, 1480px);
    padding-top: 58px;
  }

  .gia-logo-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gia-logo-control {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .b2b-flex-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .b2b-industry-grid article,
  .b2b-flex-grid article {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .b2b-industry-grid span,
  .b2b-why-grid span,
  .b2b-flex-grid span {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .b2b-offer .b2b-section-head::after {
    border-radius: 18px;
    line-height: 1.35;
  }

  body[data-page="b2b"] .gia-faq summary {
    padding: 18px 50px 18px 18px;
    font-size: 15.5px;
  }

  body[data-page="b2b"] .gia-faq p {
    padding: 0 18px 18px;
  }
}

/* B2B offer, badges and FAQ finishing polish */
.b2b-offer-grid {
  align-items: stretch;
}

.b2b-offer-grid article {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4.2vw, 48px);
  background:
    radial-gradient(circle at 88% 12%, rgba(191, 227, 194, 0.36), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.46));
}

.b2b-offer-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(145, 200, 151, 0.9), rgba(255, 255, 255, 0));
}

.b2b-offer-grid h3 {
  margin-bottom: 26px;
  font-size: clamp(31px, 3.2vw, 46px);
  font-weight: 650;
}

.b2b-offer-grid ul {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  align-items: start;
  gap: 14px 20px;
}

.b2b-offer-grid li {
  display: flex;
  align-items: flex-start;
  min-height: 32px;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.48;
}

.b2b-offer-grid li::before {
  top: 1px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(32, 53, 34, 0.08);
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(16, 18, 16, 0.06);
}

.b2b-why-grid span {
  display: inline-flex;
  width: auto;
  min-width: 64px;
  max-width: 100%;
  height: 46px;
  padding: 0 14px;
  white-space: nowrap;
}

.b2b-why-grid h3 {
  margin-top: 24px;
  margin-bottom: 11px;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.16;
}

.b2b-why-grid article {
  border-color: rgba(16, 18, 16, 0.105);
  box-shadow: 0 22px 62px rgba(16, 18, 16, 0.078);
}

.b2b-why-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 84px rgba(16, 18, 16, 0.12);
}

body[data-page="b2b"] .gia-faq details {
  border: 1px solid rgba(16, 18, 16, 0.085);
}

body[data-page="b2b"] .gia-faq summary {
  padding: 21px 58px 21px 24px;
  font-size: 18px;
  line-height: 1.28;
}

body[data-page="b2b"] .gia-faq summary::after {
  width: 28px;
  height: 28px;
  font-size: 20px;
}

body[data-page="b2b"] .gia-faq p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 24px;
  font-size: 15.5px;
  line-height: 1.58;
  transition: max-height 220ms ease, opacity 180ms ease, padding-bottom 220ms ease;
}

body[data-page="b2b"] .gia-faq details[open] p {
  padding-bottom: 21px;
  opacity: 1;
}

@media (max-width: 980px) {
  .b2b-offer-grid ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .b2b-offer-grid article {
    padding: 24px;
  }

  .b2b-offer-grid h3 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .b2b-offer-grid li {
    font-size: 15.5px;
  }

  .b2b-why-grid span {
    min-width: 58px;
    height: 42px;
  }

  body[data-page="b2b"] .gia-faq summary {
    padding: 19px 52px 19px 18px;
    font-size: 16.5px;
  }

  body[data-page="b2b"] .gia-faq p {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 15px;
  }
}

/* Veleprodaja final responsive, motion and UI polish */
body[data-page="b2b"] .b2b-hero,
body[data-page="b2b"] .b2b-industries,
body[data-page="b2b"] .b2b-offer,
body[data-page="b2b"] .b2b-flex,
body[data-page="b2b"] .b2b-process,
body[data-page="b2b"] .b2b-why,
body[data-page="b2b"] .b2b-faq,
body[data-page="b2b"] .b2b-partners,
body[data-page="b2b"] .b2b-final-cta {
  max-width: 1500px;
}

body[data-page="b2b"] .b2b-section-head h2 + p,
body[data-page="b2b"] .b2b-final-cta h2 + p {
  margin-top: 22px;
}

body[data-page="b2b"] .b2b-hero__visual img,
body[data-page="b2b"] .b2b-industry-grid article,
body[data-page="b2b"] .b2b-offer-grid article,
body[data-page="b2b"] .b2b-flex-grid article,
body[data-page="b2b"] .b2b-why-grid article,
body[data-page="b2b"] .b2b-final-cta {
  will-change: transform;
}

body[data-page="b2b"] .b2b-industry-grid article,
body[data-page="b2b"] .b2b-offer-grid article,
body[data-page="b2b"] .b2b-flex-grid article,
body[data-page="b2b"] .b2b-step-flow article,
body[data-page="b2b"] .b2b-why-grid article,
body[data-page="b2b"] .gia-faq details,
body[data-page="b2b"] .gia-logo-item {
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

body[data-page="b2b"] .b2b-industries:not(.is-visible) .b2b-industry-grid article,
body[data-page="b2b"] .b2b-offer:not(.is-visible) .b2b-offer-grid article,
body[data-page="b2b"] .b2b-flex:not(.is-visible) .b2b-flex-grid article,
body[data-page="b2b"] .b2b-process:not(.is-visible) .b2b-step-flow article,
body[data-page="b2b"] .b2b-why:not(.is-visible) .b2b-why-grid article,
body[data-page="b2b"] .b2b-faq:not(.is-visible) .gia-faq details,
body[data-page="b2b"] .b2b-partners:not(.is-visible) .gia-logo-item {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
}

body[data-page="b2b"] .b2b-industries.is-visible .b2b-industry-grid article,
body[data-page="b2b"] .b2b-offer.is-visible .b2b-offer-grid article,
body[data-page="b2b"] .b2b-flex.is-visible .b2b-flex-grid article,
body[data-page="b2b"] .b2b-process.is-visible .b2b-step-flow article,
body[data-page="b2b"] .b2b-why.is-visible .b2b-why-grid article,
body[data-page="b2b"] .b2b-faq.is-visible .gia-faq details,
body[data-page="b2b"] .b2b-partners.is-visible .gia-logo-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body[data-page="b2b"] .b2b-industry-grid article:nth-child(2),
body[data-page="b2b"] .b2b-offer-grid article:nth-child(2),
body[data-page="b2b"] .b2b-flex-grid article:nth-child(2),
body[data-page="b2b"] .b2b-step-flow article:nth-child(2),
body[data-page="b2b"] .b2b-why-grid article:nth-child(2),
body[data-page="b2b"] .gia-faq details:nth-child(2),
body[data-page="b2b"] .gia-logo-item:nth-child(2) {
  transition-delay: 60ms;
}

body[data-page="b2b"] .b2b-industry-grid article:nth-child(3),
body[data-page="b2b"] .b2b-flex-grid article:nth-child(3),
body[data-page="b2b"] .b2b-step-flow article:nth-child(3),
body[data-page="b2b"] .b2b-why-grid article:nth-child(3),
body[data-page="b2b"] .gia-faq details:nth-child(3),
body[data-page="b2b"] .gia-logo-item:nth-child(3) {
  transition-delay: 120ms;
}

body[data-page="b2b"] .b2b-industry-grid article:nth-child(4),
body[data-page="b2b"] .b2b-flex-grid article:nth-child(4),
body[data-page="b2b"] .b2b-step-flow article:nth-child(4),
body[data-page="b2b"] .b2b-why-grid article:nth-child(4),
body[data-page="b2b"] .gia-faq details:nth-child(4),
body[data-page="b2b"] .gia-logo-item:nth-child(4) {
  transition-delay: 180ms;
}

body[data-page="b2b"] .b2b-industry-grid article:nth-child(n+5),
body[data-page="b2b"] .b2b-step-flow article:nth-child(5),
body[data-page="b2b"] .gia-faq details:nth-child(n+5),
body[data-page="b2b"] .gia-logo-item:nth-child(n+5) {
  transition-delay: 240ms;
}

body[data-page="b2b"] .b2b-hero__visual img {
  transition: transform 420ms ease, box-shadow 320ms ease;
}

body[data-page="b2b"] .b2b-hero__visual:hover img {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 44px 124px rgba(16, 18, 16, 0.18);
}

body[data-page="b2b"] .b2b-step-flow article:hover {
  background: rgba(255, 255, 255, 0.34);
}

body[data-page="b2b"] .b2b-final-cta .gia-actions {
  flex-wrap: wrap;
}

@media (min-width: 1500px) {
  body[data-page="b2b"] .b2b-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.82fr);
  }

  body[data-page="b2b"] .b2b-industry-grid {
    gap: 20px;
  }
}

@media (max-width: 1180px) {
  body[data-page="b2b"] .b2b-hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  body[data-page="b2b"] .b2b-hero__visual {
    max-width: 720px;
  }

  body[data-page="b2b"] .b2b-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="b2b"] .b2b-section-head h2,
  body[data-page="b2b"] .b2b-final-cta h2 {
    font-size: clamp(34px, 5.8vw, 54px);
  }
}

@media (max-width: 760px) {
  body[data-page="b2b"] .b2b-hero,
  body[data-page="b2b"] .b2b-industries,
  body[data-page="b2b"] .b2b-offer,
  body[data-page="b2b"] .b2b-flex,
  body[data-page="b2b"] .b2b-process,
  body[data-page="b2b"] .b2b-why,
  body[data-page="b2b"] .b2b-faq,
  body[data-page="b2b"] .b2b-partners,
  body[data-page="b2b"] .b2b-final-cta {
    width: min(100% - 28px, 1480px);
  }

  body[data-page="b2b"] .b2b-hero {
    gap: 30px;
    padding: 42px 0 46px;
  }

  body[data-page="b2b"] .b2b-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  body[data-page="b2b"] .b2b-hero p,
  body[data-page="b2b"] .b2b-section-head p,
  body[data-page="b2b"] .b2b-final-cta p {
    font-size: 16px;
  }

  body[data-page="b2b"] .b2b-hero .gia-actions,
  body[data-page="b2b"] .b2b-final-cta .gia-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  body[data-page="b2b"] .b2b-hero .gia-button,
  body[data-page="b2b"] .b2b-final-cta .gia-button {
    justify-content: center;
    min-height: 52px;
    padding: 15px 18px;
    font-size: 14px;
  }

  body[data-page="b2b"] .b2b-industries,
  body[data-page="b2b"] .b2b-offer,
  body[data-page="b2b"] .b2b-flex,
  body[data-page="b2b"] .b2b-process,
  body[data-page="b2b"] .b2b-why,
  body[data-page="b2b"] .b2b-faq,
  body[data-page="b2b"] .b2b-partners {
    padding-top: 54px;
  }

  body[data-page="b2b"] .b2b-industry-grid,
  body[data-page="b2b"] .b2b-offer-grid,
  body[data-page="b2b"] .b2b-flex-grid,
  body[data-page="b2b"] .b2b-why-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="b2b"] .b2b-offer-grid ul {
    grid-template-columns: 1fr;
  }

  body[data-page="b2b"] .b2b-offer .b2b-section-head::after {
    display: flex;
    width: fit-content;
    max-width: 100%;
  }

  body[data-page="b2b"] .b2b-step-flow {
    margin-top: 28px;
  }

  body[data-page="b2b"] .b2b-partners .gia-logo-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  body[data-page="b2b"] .b2b-partners .gia-logo-track {
    animation: none;
  }

  body[data-page="b2b"] .gia-logo-item {
    flex: 0 0 148px;
    width: 148px;
    height: 92px;
  }

  body[data-page="b2b"] .b2b-final-cta {
    margin-top: 54px;
    padding: 30px 20px;
    border-radius: 28px;
  }
}

@media (max-width: 390px) {
  body[data-page="b2b"] .b2b-hero h1 {
    font-size: 34px;
  }

  body[data-page="b2b"] .b2b-section-head h2,
  body[data-page="b2b"] .b2b-final-cta h2 {
    font-size: 30px;
  }

  body[data-page="b2b"] .b2b-industry-grid article,
  body[data-page="b2b"] .b2b-offer-grid article,
  body[data-page="b2b"] .b2b-flex-grid article,
  body[data-page="b2b"] .b2b-why-grid article {
    padding: 20px;
  }

  body[data-page="b2b"] .gia-faq summary {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="b2b"] .b2b-industry-grid article,
  body[data-page="b2b"] .b2b-offer-grid article,
  body[data-page="b2b"] .b2b-flex-grid article,
  body[data-page="b2b"] .b2b-step-flow article,
  body[data-page="b2b"] .b2b-why-grid article,
  body[data-page="b2b"] .gia-faq details,
  body[data-page="b2b"] .gia-logo-item,
  body[data-page="b2b"] .b2b-hero__visual img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* B2B premium interaction polish */
body[data-page="b2b"] .reveal {
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-page="b2b"] .b2b-hero.reveal {
  transform: translateY(20px) scale(0.992);
}

body[data-page="b2b"] .b2b-offer.reveal,
body[data-page="b2b"] .b2b-supply.reveal,
body[data-page="b2b"] .b2b-why.reveal {
  transform: translateX(-32px) scale(0.99);
}

body[data-page="b2b"] .b2b-flex.reveal,
body[data-page="b2b"] .b2b-process.reveal,
body[data-page="b2b"] .b2b-faq.reveal {
  transform: translateX(32px) scale(0.99);
}

body[data-page="b2b"] .reveal.is-visible,
body[data-page="b2b"] .b2b-hero.reveal.is-visible,
body[data-page="b2b"] .b2b-offer.reveal.is-visible,
body[data-page="b2b"] .b2b-supply.reveal.is-visible,
body[data-page="b2b"] .b2b-flex.reveal.is-visible,
body[data-page="b2b"] .b2b-why.reveal.is-visible,
body[data-page="b2b"] .b2b-process.reveal.is-visible,
body[data-page="b2b"] .b2b-faq.reveal.is-visible {
  transform: translate(0, 0) scale(1);
}

body[data-page="b2b"] .b2b-industry-grid article,
body[data-page="b2b"] .b2b-offer-grid article,
body[data-page="b2b"] .b2b-flex-grid article,
body[data-page="b2b"] .b2b-step-flow article,
body[data-page="b2b"] .b2b-why-grid article,
body[data-page="b2b"] .gia-faq details,
body[data-page="b2b"] .gia-logo-item {
  transition:
    opacity 780ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.b2b-supply {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  margin: 0 auto;
  padding: clamp(74px, 8vw, 124px) 0 0;
}

.b2b-supply h2 {
  margin: 10px 0 0;
  max-width: 760px;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 390;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.b2b-supply p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #566058;
  font-size: 17px;
  line-height: 1.72;
}

.b2b-supply ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.b2b-supply li {
  position: relative;
  padding-left: 30px;
  color: #4d574f;
  font-weight: 700;
  line-height: 1.45;
}

.b2b-supply li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  background: var(--gia-primary);
  color: #203522;
  font-size: 12px;
  font-weight: 900;
}

.b2b-supply figure {
  position: relative;
  margin: 0;
}

.b2b-supply figure::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -8%;
  z-index: -1;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(191, 227, 194, 0.64);
}

.b2b-supply img {
  width: 100%;
  aspect-ratio: 1.18;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0 34px 92px rgba(16, 18, 16, 0.14);
}

@media (min-width: 981px) {
  .b2b-sticky-cards {
    height: auto;
    padding-top: clamp(76px, 8vw, 124px);
  }

  .b2b-sticky-inner {
    position: sticky;
    top: 116px;
    overflow: hidden;
    padding: 4px 0 34px;
  }

  .b2b-sticky-cards .b2b-section-head {
    margin-bottom: 34px;
  }

  .b2b-sticky-cards .b2b-why-grid {
    display: flex;
    gap: 22px;
    margin-top: 0;
    width: max-content;
    will-change: transform;
    transition: transform 120ms linear;
  }

  .b2b-sticky-cards .b2b-why-grid article {
    flex: 0 0 clamp(360px, 32vw, 480px);
    min-height: 310px;
    padding: 34px;
  }

  .b2b-sticky-cards .b2b-why-grid article:hover {
    border-color: rgba(67, 126, 75, 0.28);
    box-shadow: 0 38px 96px rgba(16, 18, 16, 0.14);
  }

  .b2b-sticky-progress {
    height: 3px;
    margin-top: 28px;
    border-radius: 999px;
    background: rgba(16, 18, 16, 0.09);
    overflow: hidden;
  }

  .b2b-sticky-progress span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #87bd8e, #203522);
    transform: scaleX(0);
    transform-origin: left center;
  }
}

body[data-page="b2b"] .gia-faq p {
  transition: max-height 360ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease, padding-bottom 360ms ease;
}

body[data-page="b2b"] .gia-faq summary::after {
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease;
}

body[data-page="b2b"] .gia-faq details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 980px) {
  .b2b-supply {
    grid-template-columns: 1fr;
    width: min(100% - clamp(36px, 6vw, 104px), 1480px);
  }

  .b2b-sticky-cards .b2b-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2b-sticky-progress {
    display: none;
  }
}

@media (max-width: 560px) {
  .b2b-supply {
    width: min(100% - 28px, 1480px);
    padding-top: 58px;
  }

  .b2b-supply h2 {
    font-size: clamp(30px, 8.6vw, 40px);
  }

  .b2b-supply p {
    font-size: 16px;
  }

  .b2b-supply img {
    max-height: 390px;
    border-radius: 28px;
  }

  .b2b-sticky-cards .b2b-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="b2b"] .reveal,
  body[data-page="b2b"] .b2b-offer.reveal,
  body[data-page="b2b"] .b2b-supply.reveal,
  body[data-page="b2b"] .b2b-flex.reveal,
  body[data-page="b2b"] .b2b-why.reveal,
  body[data-page="b2b"] .b2b-process.reveal,
  body[data-page="b2b"] .b2b-faq.reveal,
  .b2b-sticky-cards .b2b-why-grid {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body[data-page="b2b"] .b2b-supply ul {
  max-width: 620px;
  border: 1px solid rgba(32, 53, 34, 0.08);
  border-radius: 24px;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(248, 249, 245, 0.62);
}

body[data-page="b2b"] .b2b-supply li {
  min-height: 28px;
  padding-left: 28px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.38;
}

@media (max-width: 980px) {
  body[data-page="b2b"] .b2b-supply ul {
    max-width: 100%;
  }
}

/* Production regression guard: keep SEO width/height attributes from distorting responsive media. */
img {
  max-width: 100%;
  height: auto;
}

.home-hero__visual,
.home-split figure,
.home-wolt__visual,
.home-categories__visual,
.about-hero__visual,
.about-growth figure,
.b2b-hero__visual,
.b2b-supply figure,
.products-hero__visual,
.retail-hero__visual,
.retail-wolt figure {
  position: relative;
  overflow: hidden;
}

.home-hero__visual { aspect-ratio: 0.92; }
.home-split figure { aspect-ratio: 16 / 11; }
.home-wolt__visual { aspect-ratio: 4 / 3.15; }
.home-categories__visual { aspect-ratio: 1; }
.about-hero__visual { aspect-ratio: 0.96; }
.about-growth figure { aspect-ratio: 1.18; }
.b2b-hero__visual { aspect-ratio: 0.98; }
.b2b-supply figure { aspect-ratio: 1.18; }
.products-hero__visual { aspect-ratio: 0.92; }
.retail-hero__visual { aspect-ratio: 0.98; }
.retail-wolt figure { aspect-ratio: 1.15; }

.home-hero__visual > img,
.home-split figure > img,
.home-wolt__visual > img,
.home-categories__visual > img,
.about-hero__visual > img,
.about-growth figure > img,
.b2b-hero__visual > img,
.b2b-supply figure > img,
.products-hero__visual > img,
.retail-hero__visual > img,
.retail-wolt figure > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.gia-card,
.gia-location-card,
.retail-store-card,
.about-card-grid article,
.about-mvv article,
.b2b-offer-grid article,
.b2b-flex-grid article,
.b2b-why-grid article,
.contact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gia-product {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gia-product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.gia-product__footer {
  margin-top: auto;
}

.about-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-timeline article {
  flex: 1 1 180px;
  min-width: 160px;
}

.about-timeline article::after {
  display: none;
}

@media (max-width: 760px) {
  .home-hero__visual,
  .about-hero__visual,
  .b2b-hero__visual,
  .products-hero__visual,
  .retail-hero__visual {
    aspect-ratio: 1.04;
  }

  .home-wolt__visual,
  .retail-wolt figure,
  .b2b-supply figure {
    aspect-ratio: 4 / 3;
  }
}

/* Retail page regression fix: keep store cards in image-left/info-right/map-bottom layout. */
body[data-page="retail"] .retail-store-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 54px);
}

body[data-page="retail"] .retail-store-media {
  grid-column: auto;
  width: 100%;
  min-height: 420px;
  aspect-ratio: 4 / 3;
}

body[data-page="retail"] .retail-store-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body[data-page="retail"] .retail-store-content {
  display: grid;
  align-content: center;
  min-width: 0;
}

body[data-page="retail"] .retail-store-card iframe {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 300px;
}

@media (max-width: 980px) {
  body[data-page="retail"] .retail-store-card {
    grid-template-columns: 1fr;
  }

  body[data-page="retail"] .retail-store-media,
  body[data-page="retail"] .retail-store-card iframe {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
body[data-page="retail"] .retail-store-media {
    min-height: 260px;
  }
}

/* Partner carousel controls: keep arrows beside logo cards, not over them. */
.gia-logo-carousel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  column-gap: 14px;
  overflow: visible;
}

.gia-logo-viewport {
  min-width: 0;
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gia-logo-viewport::-webkit-scrollbar {
  display: none;
}

.gia-logo-control {
  position: static;
  align-self: center;
  justify-self: center;
  margin: 0;
}

.gia-logo-track {
  width: max-content;
}

@media (max-width: 760px) {
  .gia-logo-carousel {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    column-gap: 10px;
  }

  .gia-logo-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Keep partner arrows fully outside the logo card row on wider screens. */
.gia-logo-carousel {
  display: block;
}

.gia-logo-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.gia-logo-control--prev {
  left: -54px;
}

.gia-logo-control--next {
  right: -54px;
}

.gia-logo-control:hover {
  transform: translateY(calc(-50% - 1px));
}

@media (max-width: 980px) {
  .gia-logo-control--prev {
    left: -18px;
  }

  .gia-logo-control--next {
    right: -18px;
  }
}

@media (max-width: 560px) {
  .gia-logo-control {
    display: none;
  }
}

/* Final polish: keep header crisp and hero images free of background bleed. */
.gia-header {
  background: #ffffff;
  background-color: #ffffff;
  background-image: none;
}

.home-hero__visual,
.about-hero__visual,
.b2b-hero__visual,
.products-hero__visual,
.retail-hero__visual,
.contact-hero__visual,
.gia-hero figure {
  background: transparent;
  background-color: transparent;
  background-image: none;
}

.gia-hero figure::before,
.gia-hero figure::after,
.home-hero__visual::before,
.home-hero__visual::after,
.about-hero__visual::before,
.about-hero__visual::after,
.b2b-hero__visual::before,
.b2b-hero__visual::after,
.products-hero__visual::before,
.products-hero__visual::after,
.retail-hero__visual::before,
.retail-hero__visual::after,
.contact-hero__visual::before,
.contact-hero__visual::after {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none;
}

.home-hero__visual img,
.about-hero__visual img,
.b2b-hero__visual img,
.products-hero__visual img,
.retail-hero__visual img,
.contact-hero__visual img {
  background: transparent;
}

@media (max-width: 760px) {
  .gia-header {
    background: #ffffff;
    background-color: #ffffff;
    background-image: none;
  }
}

/* Phase 1 polish: partners, Wolt/social icons and focused badge alignment. */
.gia-logo-viewport {
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.about-card-grid article > .about-card-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--gia-primary);
  color: #203522;
  font-size: 22px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(16, 18, 16, 0.06);
}

.about-card-grid article > .about-card-icon--wolt img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.b2b-industry-grid .b2b-industry-icon {
  color: #203522;
}

.b2b-industry-grid .b2b-industry-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.retail-store-topline {
  align-items: center;
}

.retail-rating,
.retail-chip--wolt {
  align-items: center;
  gap: 9px;
}

.retail-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #d6ddd3;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1;
}

.retail-star {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 16px;
  color: #d6ddd3;
  line-height: 1;
}

.retail-star--full {
  color: #f5b400;
}

.retail-star--half::after {
  content: "★";
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  color: #f5b400;
}

.retail-rating strong {
  font-size: 14px;
  line-height: 1;
}

.retail-rating small {
  line-height: 1;
}

.retail-chip--wolt img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

/* Phase 4 motion polish: slower reveal, subtle hover and viewport counters. */
body .reveal {
  transition-duration: 860ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body .reveal.is-visible {
  will-change: auto;
}

.gia-card,
.gia-location-card,
.about-card-grid article,
.about-mvv article,
.b2b-industry-card,
.b2b-offer-card,
.b2b-flex-card,
.b2b-why-grid article,
.b2b-process-step,
.retail-store-card,
.contact-card,
.contact-location-card,
.gia-product,
.gia-logo-item {
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms ease,
    opacity 320ms ease,
    filter 320ms ease;
}

.gia-card:hover,
.gia-location-card:hover,
.about-card-grid article:hover,
.about-mvv article:hover,
.b2b-industry-card:hover,
.b2b-offer-card:hover,
.b2b-flex-card:hover,
.b2b-why-grid article:hover,
.b2b-process-step:hover,
.retail-store-card:hover,
.contact-card:hover,
.contact-location-card:hover {
  transform: translateY(-4px);
}

.gia-button,
.gia-product__cta,
.gia-pagination button,
.gia-logo-control {
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    opacity 260ms ease;
}

.gia-button:hover,
.gia-product__cta:hover,
.gia-pagination button:hover {
  transform: translateY(-2px);
}

.gia-logo-control:hover {
  transform: translateY(calc(-50% - 1px));
}

.gia-counting {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  letter-spacing: inherit;
}

@media (prefers-reduced-motion: reduce) {
  body .reveal,
  .gia-product,
  .gia-card,
  .gia-location-card,
  .about-card-grid article,
  .about-mvv article,
  .b2b-industry-card,
  .b2b-offer-card,
  .b2b-flex-card,
  .b2b-why-grid article,
  .b2b-process-step,
  .retail-store-card,
  .contact-card,
  .contact-location-card,
  .gia-logo-item,
  .gia-button,
  .gia-product__cta,
  .gia-pagination button,
  .gia-logo-control {
    animation: none !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  body .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Final responsive/UI polish: spacing, type scale and touch targets. */
html,
body {
  overflow-x: hidden;
}

.gia-header {
  max-width: 100vw;
}

.gia-header__inner,
.home-hero__inner,
.home-stats,
.home-split,
.home-wolt,
.home-categories,
.home-partners,
body[data-page="home"] .gia-cta,
.about-hero,
.about-timeline,
.about-growth,
.about-work,
.about-customers,
.about-mvv,
.about-final-cta,
body[data-page="b2b"] .b2b-hero,
body[data-page="b2b"] .b2b-industries,
body[data-page="b2b"] .b2b-offer,
body[data-page="b2b"] .b2b-flex,
body[data-page="b2b"] .b2b-process,
body[data-page="b2b"] .b2b-why,
body[data-page="b2b"] .b2b-faq,
body[data-page="b2b"] .b2b-partners,
body[data-page="b2b"] .b2b-final-cta,
.b2b-supply,
.retail-hero,
.retail-locations,
.retail-wolt,
body[data-page="retail"] .gia-cta,
.contact-hero,
.contact-main,
.contact-locations,
.gia-footer__inner {
  max-width: min(1500px, calc(100vw - clamp(28px, 5vw, 104px)));
}

.home-hero h1,
.about-hero h1,
body[data-page="b2b"] .b2b-hero h1,
.retail-hero h1,
.contact-hero h1 {
  text-wrap: balance;
}

.home-hero p,
.about-hero p,
body[data-page="b2b"] .b2b-hero p,
.retail-hero p,
.contact-hero p,
.gia-cta p,
.about-final-cta p,
body[data-page="b2b"] .b2b-final-cta p {
  text-wrap: pretty;
}

.gia-button,
.lang-toggle,
.gia-nav a,
.gia-logo-control {
  min-height: 40px;
}

.gia-actions {
  max-width: 100%;
}

.gia-actions .gia-button {
  white-space: nowrap;
}

.home-wolt__visual img,
.retail-store-media img,
.retail-store-card iframe,
.contact-location-card iframe {
  max-width: 100%;
}

@media (min-width: 1680px) {
  .home-hero__inner,
  .home-stats,
  .home-split,
  .home-wolt,
  .home-categories,
  .home-partners,
  body[data-page="home"] .gia-cta,
  .about-hero,
  .about-timeline,
  .about-growth,
  .about-work,
  .about-customers,
  .about-mvv,
  .about-final-cta,
  body[data-page="b2b"] .b2b-hero,
  body[data-page="b2b"] .b2b-industries,
  body[data-page="b2b"] .b2b-offer,
  body[data-page="b2b"] .b2b-flex,
  body[data-page="b2b"] .b2b-process,
  body[data-page="b2b"] .b2b-why,
  body[data-page="b2b"] .b2b-faq,
  body[data-page="b2b"] .b2b-partners,
  body[data-page="b2b"] .b2b-final-cta,
  .b2b-supply,
  .retail-hero,
  .retail-locations,
  .retail-wolt,
  body[data-page="retail"] .gia-cta,
  .contact-hero,
  .contact-main,
  .contact-locations,
  .gia-footer__inner {
    max-width: 1480px;
  }
}

@media (max-width: 1280px) {
  .gia-header__inner {
    padding-inline: clamp(20px, 3vw, 46px);
  }

  .gia-nav {
    gap: clamp(10px, 1.2vw, 18px);
  }

  .gia-nav a {
    padding-inline: 14px;
    font-size: 13px;
  }

  .home-hero h1,
  .about-hero h1,
  body[data-page="b2b"] .b2b-hero h1,
  .retail-hero h1,
  .contact-hero h1 {
    font-size: clamp(46px, 6.4vw, 78px);
    line-height: 0.98;
  }

  .home-split,
  .about-growth,
  .b2b-supply,
  .retail-hero,
  .contact-hero {
    gap: clamp(30px, 5vw, 70px);
  }
}

@media (max-width: 980px) {
  .gia-header__inner {
    min-height: 76px;
  }

  .gia-nav {
    max-width: calc(100vw - 32px);
  }

  .home-hero__inner,
  .home-split,
  .home-wolt,
  .home-categories,
  .about-hero,
  .about-growth,
  .about-growth--reverse,
  body[data-page="b2b"] .b2b-hero,
  .b2b-supply,
  .retail-hero,
  .retail-wolt,
  .contact-hero,
  .contact-main {
    grid-template-columns: 1fr;
  }

  .home-hero__visual,
  .about-hero__visual,
  .about-growth figure,
  .b2b-hero__visual,
  .b2b-supply figure,
  .retail-hero__visual,
  .contact-hero__visual,
  .home-wolt__visual {
    justify-self: stretch;
    width: min(100%, 760px);
  }

  .home-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .home-stats div:nth-child(3)::after {
    display: none;
  }

  .retail-store-card {
    grid-template-columns: 1fr;
  }

  .retail-store-content {
    align-content: start;
  }

  .contact-main {
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  :root {
    --gia-mobile-gutter: 20px;
  }

  .gia-header__inner,
  .home-hero__inner,
  .home-stats,
  .home-split,
  .home-wolt,
  .home-categories,
  .home-partners,
  body[data-page="home"] .gia-cta,
  .about-hero,
  .about-timeline,
  .about-growth,
  .about-work,
  .about-customers,
  .about-mvv,
  .about-final-cta,
  body[data-page="b2b"] .b2b-hero,
  body[data-page="b2b"] .b2b-industries,
  body[data-page="b2b"] .b2b-offer,
  body[data-page="b2b"] .b2b-flex,
  body[data-page="b2b"] .b2b-process,
  body[data-page="b2b"] .b2b-why,
  body[data-page="b2b"] .b2b-faq,
  body[data-page="b2b"] .b2b-partners,
  body[data-page="b2b"] .b2b-final-cta,
  .b2b-supply,
  .retail-hero,
  .retail-locations,
  .retail-wolt,
  body[data-page="retail"] .gia-cta,
  .contact-hero,
  .contact-main,
  .contact-locations,
  .gia-footer__inner {
    max-width: calc(100vw - (var(--gia-mobile-gutter) * 2));
  }

  .home-hero,
  .about-hero,
  body[data-page="b2b"] .b2b-hero,
  .retail-hero,
  .contact-hero {
    padding-top: clamp(42px, 10vw, 66px);
    padding-bottom: clamp(38px, 9vw, 58px);
  }

  .home-hero h1,
  .about-hero h1,
  body[data-page="b2b"] .b2b-hero h1,
  .retail-hero h1,
  .contact-hero h1 {
    font-size: clamp(34px, 10.4vw, 48px);
    line-height: 1.02;
  }

  .home-split h2,
  .home-categories h2,
  .about-growth h2,
  .about-work h2,
  .about-customers h2,
  .about-final-cta h2,
  body[data-page="b2b"] .b2b-section-head h2,
  body[data-page="b2b"] .b2b-final-cta h2,
  .b2b-supply h2,
  .retail-wolt h2,
  body[data-page="retail"] .gia-cta h2,
  .contact-locations h2 {
    font-size: clamp(28px, 8.4vw, 40px);
    line-height: 1.05;
  }

  p,
  .home-hero p,
  .about-hero p,
  body[data-page="b2b"] .b2b-hero p,
  .retail-hero p,
  .contact-hero p {
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.6;
  }

  .gia-actions {
    gap: 10px;
  }

  .gia-actions .gia-button {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .home-hero .gia-actions,
  .about-hero .gia-actions,
  body[data-page="b2b"] .b2b-hero .gia-actions,
  .retail-hero .gia-actions,
  .retail-store-card .gia-actions,
  .contact-hero .gia-actions,
  .about-final-cta .gia-actions,
  body[data-page="b2b"] .b2b-final-cta .gia-actions,
  body[data-page="retail"] .gia-cta .gia-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero .gia-button,
  .about-hero .gia-button,
  body[data-page="b2b"] .b2b-hero .gia-button,
  .retail-hero .gia-button,
  .retail-store-card .gia-button,
  .contact-hero .gia-button,
  .about-final-cta .gia-button,
  body[data-page="b2b"] .b2b-final-cta .gia-button,
  body[data-page="retail"] .gia-cta .gia-button {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .home-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
    padding-block: 18px;
  }

  .home-stats div {
    min-height: 86px;
    padding-inline: 12px;
  }

  .home-stats div::after {
    display: none;
  }

  .home-stats strong {
    font-size: clamp(34px, 10vw, 46px);
  }

  .home-stats span {
    font-size: 11px;
    line-height: 1.25;
  }

  .home-wolt,
  .retail-wolt,
  .gia-cta,
  .about-final-cta,
  body[data-page="b2b"] .b2b-final-cta {
    padding: clamp(28px, 8vw, 42px);
    border-radius: 26px;
  }

  .home-wolt > span {
    position: static;
    margin-bottom: 22px;
    width: fit-content;
    max-width: 100%;
    line-height: 1.25;
  }

  .home-wolt__content {
    padding-top: 0;
  }

  .home-wolt__logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .home-wolt__visual img {
    min-height: 240px;
  }

  .about-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-timeline article {
    padding: 0 0 18px;
  }

  .about-timeline article:not(:last-child)::after {
    display: none;
  }

  .b2b-industry-grid,
  .b2b-offer-grid,
  .b2b-flex-grid,
  .b2b-why-grid,
  .about-card-grid,
  .about-mvv,
  .contact-location-grid {
    grid-template-columns: 1fr;
  }

  .b2b-offer-badge {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }

  .retail-store-card {
    padding: clamp(18px, 5vw, 24px);
    border-radius: 26px;
  }

  .retail-store-media {
    min-height: 280px;
  }

  .retail-store-topline {
    align-items: center;
    gap: 8px;
  }

  .retail-rating,
  .retail-chip {
    flex-wrap: nowrap;
    max-width: 100%;
  }

  .retail-hours {
    max-width: 100%;
  }

  .retail-hours li {
    width: 100%;
    grid-template-columns: 26px minmax(0, 1fr);
  }

  .retail-store-card iframe,
  .contact-location-card iframe {
    height: 260px;
    min-height: 260px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .gia-form__full,
  .contact-form button,
  .contact-form .gia-form-status {
    grid-column: auto;
  }

  .contact-card {
    padding: clamp(26px, 7vw, 34px);
  }

  .gia-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gia-footer__bottom {
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 430px) {
  :root {
    --gia-mobile-gutter: 16px;
  }

  .gia-header__inner {
    min-height: 68px;
  }

  .gia-brand__text strong {
    font-size: 17px;
  }

  .gia-brand__text small {
    font-size: 10px;
  }

  .lang-toggle {
    min-width: 66px;
    height: 34px;
    padding-inline: 10px;
  }

  .home-hero h1,
  .about-hero h1,
  body[data-page="b2b"] .b2b-hero h1,
  .retail-hero h1,
  .contact-hero h1 {
    font-size: clamp(32px, 11vw, 42px);
  }

  .home-stats {
    grid-template-columns: 1fr;
  }

  .home-stats div {
    min-height: 72px;
  }

  .home-wolt,
  .retail-wolt,
  .gia-cta,
  .about-final-cta,
  body[data-page="b2b"] .b2b-final-cta {
    padding: 24px;
    border-radius: 22px;
  }

  .retail-store-media {
    min-height: 240px;
  }

  .retail-store-card iframe,
  .contact-location-card iframe {
    height: 230px;
    min-height: 230px;
  }
}

/* Focused responsive fixes: partner carousel density and fixed mobile header. */
@media (max-width: 980px) {
  body {
    padding-top: 76px;
  }

  .gia-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
  }

  .gia-nav {
    top: 76px;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
  }

  .gia-logo-carousel {
    overflow: visible;
  }

  .gia-logo-viewport {
    overflow: hidden;
  }

  .gia-logo-track,
  body[data-page="b2b"] .b2b-partners .gia-logo-track {
    gap: 14px;
    animation: gia-marquee 96s linear infinite;
  }

  .gia-logo-item,
  body[data-page="b2b"] .gia-logo-item {
    flex: 0 0 132px;
    width: 132px;
    height: 82px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .gia-logo-item img,
  body[data-page="b2b"] .gia-logo-item img {
    max-width: 96px;
    max-height: 42px;
  }
}

@media (max-width: 760px) {
  .gia-logo-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gia-logo-track,
  body[data-page="b2b"] .b2b-partners .gia-logo-track {
    gap: 12px;
  }

  .gia-logo-item,
  body[data-page="b2b"] .gia-logo-item {
    flex-basis: 118px;
    width: 118px;
    height: 74px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .gia-logo-item img,
  body[data-page="b2b"] .gia-logo-item img {
    max-width: 86px;
    max-height: 36px;
  }
}

@media (max-width: 430px) {
  body {
    padding-top: 68px;
  }

  .gia-nav {
    top: 68px;
    max-height: calc(100dvh - 68px);
  }

  .gia-logo-track,
  body[data-page="b2b"] .b2b-partners .gia-logo-track {
    gap: 10px;
  }

  .gia-logo-item,
  body[data-page="b2b"] .gia-logo-item {
    flex-basis: 106px;
    width: 106px;
    height: 68px;
    padding: 10px 12px;
  }

  .gia-logo-item img,
  body[data-page="b2b"] .gia-logo-item img {
    max-width: 78px;
    max-height: 32px;
  }
}

@media (min-width: 981px) {
  body[data-page="b2b"] .b2b-sticky-cards {
    box-sizing: border-box;
    height: auto;
    min-height: 0;
    overflow-x: clip;
    padding-top: clamp(54px, 6vw, 86px);
    padding-bottom: clamp(26px, 3.4vw, 48px);
  }

  body[data-page="b2b"] .b2b-sticky-inner {
    position: sticky;
    top: var(--b2b-sticky-top, 96px);
    min-height: 0;
    max-width: 100%;
    overflow: hidden;
    display: block;
    padding: 4px 0 28px;
  }

  body[data-page="b2b"] .b2b-sticky-cards .b2b-why-grid {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }

  body[data-page="b2b"] .b2b-sticky-progress {
    display: block;
  }

  body[data-page="b2b"] .b2b-faq {
    padding-top: clamp(24px, 3vw, 42px);
  }
}

@media (min-width: 981px) and (prefers-reduced-motion: reduce) {
  body[data-page="b2b"] .b2b-sticky-cards {
    height: auto;
  }

  body[data-page="b2b"] .b2b-sticky-inner {
    position: relative;
    top: auto;
    overflow: visible;
  }

  body[data-page="b2b"] .b2b-sticky-cards .b2b-why-grid {
    transform: none;
  }
}

/* Faza 2: production responsive/performance polish */
img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

.home-hero__visual img,
.about-hero__visual img,
.b2b-hero__visual img,
.retail-hero__visual img,
.home-split figure img,
.about-growth figure img,
.b2b-supply figure img,
.retail-store-media img,
.home-wolt__visual img,
.retail-wolt figure img,
.contact-location-card iframe,
.retail-store-card iframe {
  display: block;
  backface-visibility: hidden;
}

.gia-button,
.gia-nav a,
.lang-toggle,
.gia-menu-toggle,
.gia-logo-control,
.gia-logo-nav {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(181, 225, 188, 0.32);
}

.gia-button {
  align-items: center;
  justify-content: center;
  line-height: 1.12;
}

.gia-eyebrow,
.home-hero__badge,
.retail-chip,
.retail-rating,
.b2b-offer-badge {
  overflow-wrap: break-word;
}

.home-hero__copy,
.about-hero__copy,
.b2b-hero__copy,
.retail-hero__copy,
.contact-hero__copy,
.home-split,
.about-growth,
.b2b-section-head,
.contact-section-head,
.b2b-final-cta,
.about-final-cta {
  min-width: 0;
}

@media (min-width: 1600px) {
  .gia-page {
    max-width: min(1500px, calc(100vw - 96px));
  }

  .home-hero__inner {
    max-width: min(1540px, calc(100vw - 96px));
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .gia-header {
    padding-inline: clamp(18px, 3vw, 42px);
  }

  .gia-nav {
    gap: 8px;
  }

  .gia-nav a {
    padding-inline: 12px;
    font-size: 12px;
  }

  .gia-logo img {
    width: clamp(94px, 8vw, 124px);
  }

  .gia-logo__text strong {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .gia-header {
    min-height: 68px;
  }

  .gia-logo {
    min-width: 0;
    gap: 9px;
  }

  .gia-logo img {
    width: clamp(86px, 25vw, 112px);
  }

  .gia-logo__text {
    min-width: 0;
  }

  .gia-logo__text strong {
    font-size: clamp(15px, 4.1vw, 18px);
    letter-spacing: 0.06em;
  }

  .gia-logo__text small {
    max-width: 148px;
    white-space: normal;
    line-height: 1.15;
  }

  .gia-actions {
    gap: 10px;
  }

  .gia-button {
    min-height: 46px;
    padding-inline: 18px;
    white-space: normal;
  }

  .home-hero__visual,
  .about-hero__visual,
  .b2b-hero__visual,
  .retail-hero__visual {
    max-width: 100%;
  }

  .home-categories__visual img,
  .home-wolt__visual img,
  .retail-wolt figure img {
    max-height: 360px;
    object-fit: cover;
  }

  .retail-store-card iframe,
  .contact-location-card iframe {
    min-height: 240px;
  }

  .gia-logo-carousel {
    max-width: 100%;
  }

  .gia-logo-track {
    gap: 10px;
  }

  .gia-logo-item {
    flex-basis: clamp(86px, 28vw, 118px);
    min-width: clamp(86px, 28vw, 118px);
    padding: 10px 12px;
  }

  .gia-logo-control {
    inline-size: 34px;
    block-size: 34px;
  }
}

@media (max-width: 430px) {
  .gia-header {
    padding-inline: 12px;
  }

  .gia-logo img {
    width: clamp(76px, 24vw, 96px);
  }

  .gia-logo__text strong {
    font-size: 15px;
  }

  .gia-logo__text small {
    max-width: 118px;
    font-size: 9px;
  }

  .lang-toggle {
    min-width: 68px;
    height: 34px;
    padding-inline: 10px;
  }

  .gia-actions {
    width: 100%;
  }

  .gia-actions .gia-button {
    flex: 1 1 100%;
    width: 100%;
  }

  .home-stats {
    row-gap: 18px;
  }

  .home-stats strong {
    font-size: clamp(30px, 12vw, 42px);
  }

  .retail-store-topline {
    align-items: center;
    gap: 8px;
  }

  .retail-rating,
  .retail-chip {
    min-height: 26px;
  }

  .retail-hours li {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gia-button,
  .gia-logo-item,
  .retail-store-card,
  .contact-card,
  .b2b-offer-grid article,
  .b2b-flex-grid article {
    transition-duration: 0.01ms !important;
  }
}

/* Final responsive production pass: sizing only, no design or content changes. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.home-hero h1,
.about-hero h1,
body[data-page="b2b"] .b2b-hero h1,
.retail-hero h1,
.contact-hero h1,
.products-hero h1,
.home-professional h2,
.home-wolt h2,
.home-categories h2,
.about-growth h2,
.about-today h2,
body[data-page="b2b"] .b2b-section-head h2,
.retail-section-head h2,
.contact-section-head h2 {
  text-wrap: balance;
}

.home-hero p,
.about-hero p,
body[data-page="b2b"] .b2b-hero p,
.retail-hero p,
.contact-hero p,
.home-professional p,
.home-wolt p,
.about-growth p,
.about-today p,
body[data-page="b2b"] .b2b-section-head p,
.retail-section-head p,
.contact-section-head p {
  overflow-wrap: break-word;
}

.home-hero {
  min-height: min(820px, calc(100svh - 92px));
}

.home-hero__inner {
  width: min(100% - clamp(28px, 5vw, 88px), 1440px);
}

@media (min-width: 1440px) {
  .home-hero {
    min-height: min(840px, calc(100svh - 96px));
  }

  .home-hero__inner {
    padding-block: clamp(70px, 6vw, 112px);
  }
}

@media (max-width: 1366px) and (min-width: 981px) {
  .home-hero {
    min-height: min(700px, calc(100svh - 82px));
  }

  .home-hero__inner {
    grid-template-columns: minmax(0, 0.96fr) minmax(240px, 0.48fr);
    gap: clamp(24px, 4vw, 58px);
    padding-block: clamp(42px, 5vw, 74px);
  }

  .home-hero h1 {
    font-size: clamp(46px, 5.2vw, 70px);
    line-height: 0.99;
  }

  .home-hero p {
    max-width: 620px;
    font-size: clamp(16px, 1.18vw, 19px);
    line-height: 1.55;
  }

  .home-hero__badge {
    margin-bottom: 16px;
    padding: 8px 13px;
    font-size: 11px;
  }

  .home-hero .gia-actions {
    margin-top: 26px;
  }

  .home-hero .gia-button {
    min-height: 46px;
    padding-inline: 20px;
    font-size: 12px;
  }

  .home-hero__bg {
    opacity: 0.4;
    background-position: center right;
  }

  .b2b-professional-media img,
  .home-professional__media img,
  .about-growth img,
  .about-today img {
    max-height: 430px;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero__inner {
    min-height: min(660px, calc(100svh - 74px));
    padding-top: clamp(40px, 4.5vw, 64px);
    padding-bottom: clamp(42px, 4.5vw, 66px);
  }

  .home-hero h1 {
    font-size: clamp(42px, 5.1vw, 62px);
    line-height: 1;
  }

  .home-hero p {
    max-width: 560px;
    font-size: 16px;
  }

  .home-hero__bg {
    opacity: 0.36;
  }
}

@media (max-width: 980px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero__inner {
    min-height: auto;
    padding-block: clamp(54px, 9vw, 84px);
  }

  .home-hero__bg {
    opacity: 0.26;
    background-position: center;
  }

  .home-hero h1 {
    font-size: clamp(38px, 8.2vw, 56px);
    line-height: 1.02;
  }

  .home-hero p {
    max-width: 680px;
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: 1.58;
  }

  .home-hero .gia-actions {
    margin-top: 24px;
  }

  .home-professional__inner,
  .home-split,
  .about-growth,
  .about-today,
  body[data-page="b2b"] .b2b-hero,
  .retail-hero,
  .contact-hero,
  .contact-main {
    gap: clamp(22px, 5vw, 42px);
  }

  .b2b-professional-layout {
    gap: 18px;
  }

  .retail-store-media img {
    max-height: 460px;
  }
}

@media (max-width: 760px) {
  .home-hero__inner,
  .home-professional__inner,
  .home-wolt,
  .home-categories,
  .home-partners,
  .about-hero,
  .about-growth,
  .about-today,
  body[data-page="b2b"] .b2b-hero,
  body[data-page="b2b"] .b2b-professional,
  .retail-hero,
  .retail-stores,
  .contact-hero,
  .contact-main,
  .contact-locations,
  .gia-footer__inner {
    width: min(100% - 28px, 1480px);
  }

  .home-hero__inner {
    padding-block: 44px 54px;
  }

  .home-hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1.02;
  }

  .home-hero p {
    font-size: 16px;
    line-height: 1.58;
  }

  .home-hero__badge,
  .gia-eyebrow {
    padding: 7px 11px;
    font-size: 10px;
  }

  .gia-actions {
    gap: 10px;
  }

  .gia-button {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .home-professional,
  .home-wolt,
  .home-categories,
  .home-partners,
  .about-growth,
  .about-today,
  body[data-page="b2b"] .b2b-professional,
  .retail-stores,
  .contact-locations {
    padding-block: clamp(42px, 10vw, 64px);
  }

  .home-professional h2,
  .home-categories h2,
  .home-wolt h2,
  .about-growth h2,
  .about-today h2,
  body[data-page="b2b"] .b2b-section-head h2,
  .retail-section-head h2,
  .contact-section-head h2 {
    font-size: clamp(28px, 8.5vw, 40px);
    line-height: 1.06;
  }

  .home-professional p,
  .home-wolt p,
  .about-growth p,
  .about-today p,
  body[data-page="b2b"] .b2b-section-head p,
  .retail-section-head p,
  .contact-section-head p {
    font-size: 15px;
    line-height: 1.6;
  }

  .home-wolt__visual img,
  .home-categories__visual img,
  .b2b-professional-media img {
    min-height: 220px;
    max-height: 300px;
  }

  .retail-store-card,
  .contact-card,
  .contact-location-card {
    border-radius: 26px;
  }

  .retail-store-card {
    padding: 18px;
  }

  .retail-store-media img {
    max-height: 360px;
  }

  .retail-store-card iframe,
  .contact-location-card iframe {
    min-height: 220px;
    max-height: 320px;
  }
}

@media (max-width: 430px) {
  .home-hero__inner {
    width: min(100% - 24px, 1480px);
    padding-block: 36px 46px;
  }

  .home-hero h1 {
    font-size: clamp(31px, 10.2vw, 40px);
    line-height: 1.04;
  }

  .home-hero p {
    font-size: 15px;
    line-height: 1.55;
  }

  .home-hero__badge,
  .gia-eyebrow {
    max-width: 100%;
  }

  .home-hero .gia-actions,
  .retail-store-card .gia-actions,
  .contact-hero .gia-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-hero .gia-button,
  .retail-store-card .gia-button,
  .contact-hero .gia-button {
    width: 100%;
  }

  .home-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .home-stats article {
    min-width: 0;
  }

  .home-professional__items article,
  .b2b-professional-grid article {
    min-height: auto;
    padding: 18px;
  }

  .contact-form,
  .contact-card {
    padding: 22px;
  }

  .retail-store-media img {
    max-height: 300px;
  }

  .retail-store-card iframe,
  .contact-location-card iframe {
    min-height: 205px;
  }
}

@media (max-width: 360px) {
  .gia-header {
    padding-inline: 10px;
  }

  .home-hero h1 {
    font-size: 30px;
  }

  .gia-button {
    min-height: 42px;
    padding-inline: 14px;
  }

  .home-stats {
    grid-template-columns: 1fr;
  }
}

/* Final home hero containment for laptop-height desktop viewports. */
@media (max-width: 1440px) and (min-width: 981px) {
  body[data-page="home"] .home-hero {
    min-height: min(720px, calc(100svh - 78px));
  }

  body[data-page="home"] .home-hero__inner {
    min-height: min(680px, calc(100svh - 78px));
    grid-template-columns: minmax(0, 0.92fr) minmax(220px, 0.44fr);
    gap: clamp(18px, 3.2vw, 46px);
    padding-top: clamp(32px, 4vw, 56px);
    padding-bottom: clamp(34px, 4vw, 58px);
  }

  body[data-page="home"] .home-hero__badge {
    margin-bottom: 12px;
    padding: 7px 12px;
    font-size: 10px;
  }

  body[data-page="home"] .home-hero h1 {
    max-width: 680px;
    font-size: clamp(42px, 4.7vw, 64px);
    line-height: 0.98;
  }

  body[data-page="home"] .home-hero p {
    max-width: 560px;
    margin-top: 18px;
    font-size: clamp(15px, 1.08vw, 17px);
    line-height: 1.5;
  }

  body[data-page="home"] .home-hero .gia-actions {
    margin-top: 20px;
  }

  body[data-page="home"] .home-hero .gia-button {
    min-height: 42px;
    padding: 12px 18px;
    font-size: 11px;
  }
}

@media (max-width: 1280px) and (min-width: 981px) {
  body[data-page="home"] .home-hero {
    min-height: min(660px, calc(100svh - 72px));
  }

  body[data-page="home"] .home-hero__inner {
    min-height: min(620px, calc(100svh - 72px));
    width: min(100% - 48px, 1180px);
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.34fr);
    padding-top: clamp(28px, 3.4vw, 44px);
    padding-bottom: clamp(30px, 3.6vw, 46px);
  }

  body[data-page="home"] .home-hero h1 {
    max-width: 610px;
    font-size: clamp(38px, 4.5vw, 56px);
    line-height: 1;
  }

  body[data-page="home"] .home-hero p {
    max-width: 520px;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.48;
  }

  body[data-page="home"] .home-hero .gia-actions {
    margin-top: 18px;
  }
}

@media (max-height: 760px) and (min-width: 981px) {
  body[data-page="home"] .home-hero {
    min-height: calc(100svh - 70px);
  }

  body[data-page="home"] .home-hero__inner {
    min-height: calc(100svh - 70px);
    padding-top: 28px;
    padding-bottom: 30px;
  }

  body[data-page="home"] .home-hero h1 {
    font-size: clamp(36px, 4.3vw, 54px);
    line-height: 0.99;
  }

  body[data-page="home"] .home-hero p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.44;
  }

  body[data-page="home"] .home-hero .gia-actions {
    margin-top: 16px;
  }
}

/* Emergency home hero laptop fit: strongest scoped override, home only. */
@media (max-width: 1440px) and (min-width: 981px) {
  body[data-page="home"] .home-hero {
    min-height: min(680px, calc(100svh - 68px));
  }

  body[data-page="home"] .home-hero__inner {
    min-height: min(640px, calc(100svh - 68px));
    grid-template-columns: minmax(0, 0.9fr) minmax(180px, 0.36fr);
    gap: clamp(14px, 2.6vw, 36px);
    padding-top: clamp(24px, 3vw, 42px);
    padding-bottom: clamp(24px, 3vw, 42px);
  }

  body[data-page="home"] .home-hero__badge {
    margin-bottom: 10px;
    padding: 6px 11px;
    font-size: 10px;
    line-height: 1;
  }

  body[data-page="home"] .home-hero h1 {
    max-width: 640px;
    font-size: clamp(40px, 4.4vw, 60px);
    line-height: 0.97;
  }

  body[data-page="home"] .home-hero p {
    max-width: 520px;
    margin-top: 14px;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.42;
  }

  body[data-page="home"] .home-hero .gia-actions {
    margin-top: 16px;
    gap: 10px;
  }

  body[data-page="home"] .home-hero .gia-button {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 10.5px;
  }
}

@media (max-width: 1440px) and (max-height: 820px) and (min-width: 981px) {
  body[data-page="home"] .home-hero {
    min-height: calc(100svh - 64px);
  }

  body[data-page="home"] .home-hero__inner {
    min-height: calc(100svh - 64px);
    padding-top: 22px;
    padding-bottom: 24px;
  }

  body[data-page="home"] .home-hero h1 {
    font-size: clamp(38px, 4.2vw, 56px);
  }

  body[data-page="home"] .home-hero p {
    max-width: 500px;
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.4;
  }

  body[data-page="home"] .home-hero .gia-actions {
    margin-top: 14px;
  }
}

@media (max-width: 1440px) and (max-height: 760px) and (min-width: 981px) {
  body[data-page="home"] .home-hero {
    min-height: calc(100svh - 60px);
  }

  body[data-page="home"] .home-hero__inner {
    min-height: calc(100svh - 60px);
    padding-top: 18px;
    padding-bottom: 20px;
  }

  body[data-page="home"] .home-hero__badge {
    margin-bottom: 8px;
    padding: 5px 10px;
    font-size: 9.5px;
  }

  body[data-page="home"] .home-hero h1 {
    max-width: 560px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 0.98;
  }

  body[data-page="home"] .home-hero p {
    max-width: 470px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.36;
  }

  body[data-page="home"] .home-hero .gia-actions {
    margin-top: 12px;
  }

  body[data-page="home"] .home-hero .gia-button {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 10px;
  }
}

@media (max-width: 1440px) and (max-height: 720px) and (min-width: 981px) {
  body[data-page="home"] .home-hero {
    min-height: calc(100svh - 56px);
  }

  body[data-page="home"] .home-hero__inner {
    min-height: calc(100svh - 56px);
    padding-top: 14px;
    padding-bottom: 16px;
  }

  body[data-page="home"] .home-hero__badge {
    margin-bottom: 7px;
  }

  body[data-page="home"] .home-hero h1 {
    max-width: 520px;
    font-size: clamp(32px, 3.8vw, 46px);
    line-height: 0.98;
  }

  body[data-page="home"] .home-hero p {
    max-width: 450px;
    margin-top: 9px;
    font-size: 13.5px;
    line-height: 1.34;
  }

  body[data-page="home"] .home-hero .gia-actions {
    margin-top: 10px;
  }

  body[data-page="home"] .home-hero .gia-button {
    min-height: 36px;
    padding: 8px 13px;
  }
}

/* Public webshop foundation, rendered only when GIA_PUBLIC_WEBSHOP_ENABLED is true. */
.gia-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.gia-product__cart {
  appearance: none;
  border: 1px solid rgba(20, 92, 162, 0.18);
  border-radius: 999px;
  background: #145ca2;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 42px;
  padding: 10px 16px;
  box-shadow: 0 14px 28px rgba(20, 92, 162, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.gia-product__cart:hover {
  background: #0f4f8d;
  box-shadow: 0 18px 34px rgba(20, 92, 162, 0.22);
  transform: translateY(-1px);
}

.gia-product__cart:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.gia-product__brand,
.gia-product__availability {
  margin: 0;
  color: #5e6d7f;
  font-size: 13px;
  font-weight: 800;
}

.gia-product__availability {
  width: 100%;
  color: #6a7584;
}

.gia-product__availability.is-available {
  color: #1f7a42;
}

.gia-product__details {
  appearance: none;
  border: 1px solid rgba(17, 28, 43, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #142033;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  min-height: 42px;
  padding: 10px 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gia-product__details:hover {
  border-color: rgba(20, 92, 162, 0.32);
  box-shadow: 0 12px 26px rgba(17, 28, 43, 0.1);
  transform: translateY(-1px);
}

.gia-header-cart {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid rgba(31, 139, 76, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #eef8f1);
  color: #17422b;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  padding: 8px 11px;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(31, 139, 76, 0.13);
}

.gia-header-cart em {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f2c94c;
  color: #142033;
  font-style: normal;
  font-size: 12px;
}

.gia-cart-submit.is-disabled {
  pointer-events: none;
  opacity: 0.58;
  filter: grayscale(0.25);
}

.gia-shop-page {
  padding: clamp(120px, 12vw, 150px) clamp(18px, 4vw, 64px) clamp(48px, 7vw, 86px);
}

.gia-shop-page__head {
  max-width: 860px;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.gia-shop-page__head h1 {
  margin: 8px 0 10px;
  color: #101826;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.02;
}

.gia-shop-page__head p {
  margin: 0;
  color: #617083;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
}

.gia-cart-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: clamp(20px, 4vw, 40px);
}

.gia-cart-page__items,
.gia-cart-page__summary {
  border: 1px solid rgba(17, 28, 43, 0.1);
  border-radius: 26px;
  background: #fbfcfb;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 22px 70px rgba(14, 28, 44, 0.06);
}

.gia-cart-page__summary {
  align-self: start;
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.gia-cart-page__summary h2 {
  margin: 0;
  font-size: 22px;
}

.gia-checkout-page {
  border: 1px solid rgba(17, 28, 43, 0.1);
  border-radius: 28px;
  background: #fbfcfb;
  box-shadow: 0 22px 70px rgba(14, 28, 44, 0.07);
}

.gia-cart-qty-input {
  width: 70px;
  min-height: 34px;
  border: 1px solid rgba(17, 28, 43, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  text-align: center;
  font: inherit;
  font-weight: 800;
}

.gia-cart-item__actions button:disabled,
.gia-cart-submit:disabled,
.gia-checkout-form button[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.gia-cart-empty {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 1px dashed rgba(31, 139, 76, 0.24);
  border-radius: 20px;
  background: #f5fbf6;
  color: #456052;
  padding: 20px;
  line-height: 1.5;
}

.gia-cart-empty strong {
  color: #142033;
  font-size: 17px;
}

.gia-cart-status--floating {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 120;
  max-width: min(380px, calc(100vw - 32px));
  box-shadow: 0 18px 48px rgba(14, 28, 44, 0.18);
}

.gia-cart-fab {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 90;
  border: 0;
  border-radius: 999px;
  background: #145ca2;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  min-height: 52px;
  padding: 13px 18px;
  box-shadow: 0 24px 60px rgba(17, 36, 61, 0.24);
}

.gia-cart-fab span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  border-radius: 999px;
  background: #f2c94c;
  color: #142033;
  font-size: 12px;
}

.gia-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 94;
  background: rgba(17, 28, 43, 0.36);
  backdrop-filter: blur(4px);
}

.gia-cart-backdrop[hidden] {
  display: none;
}

.gia-product-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(17, 28, 43, 0.42);
  backdrop-filter: blur(5px);
}

.gia-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 97;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(17, 28, 43, 0.46);
  backdrop-filter: blur(5px);
}

.gia-checkout-modal.is-open {
  display: flex;
}

.gia-checkout-modal__panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  border: 1px solid rgba(28, 61, 89, 0.13);
  border-radius: 28px;
  background: #fbfcfb;
  box-shadow: 0 34px 100px rgba(14, 28, 44, 0.3);
}

.gia-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(18px, 4vw, 34px);
  padding: clamp(22px, 4vw, 42px);
}

.gia-checkout-head p,
.gia-checkout-finish > span {
  margin: 0 0 6px;
  color: #145ca2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gia-checkout-head h2,
.gia-checkout-finish h2 {
  margin: 0;
  color: #101826;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.gia-checkout-head span {
  display: block;
  margin-top: 8px;
  color: #607084;
  line-height: 1.45;
}

.gia-checkout-type {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gia-checkout-type label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 28, 43, 0.12);
  border-radius: 16px;
  background: #fff;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.gia-checkout-type label:has(input:checked) {
  border-color: rgba(31, 139, 76, 0.45);
  background: linear-gradient(135deg, rgba(241, 196, 15, 0.18), rgba(31, 139, 76, 0.1));
  box-shadow: 0 12px 26px rgba(31, 139, 76, 0.08);
}

.gia-checkout-type input {
  accent-color: #1f8b4c;
}

.gia-checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gia-checkout-summary {
  align-self: start;
  position: sticky;
  top: 0;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(17, 28, 43, 0.1);
  border-radius: 22px;
  background: #fff;
  padding: 18px;
}

.gia-checkout-summary h3 {
  margin: 0;
}

.gia-checkout-summary h2 {
  margin: 0;
  font-size: 22px;
}

.gia-checkout-summary [data-checkout-summary] {
  display: grid;
  gap: 10px;
}

.gia-checkout-summary [data-checkout-summary] div,
.gia-checkout-finish__grid p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: #5f6f82;
  font-size: 13px;
}

.gia-checkout-summary__item,
.gia-success-item {
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
}

.gia-checkout-summary__item img,
.gia-success-item img,
.gia-product-image-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: #eef3ef;
}

.gia-product-image-placeholder {
  display: inline-grid;
  place-items: center;
  color: #1f8b4c;
  font-size: 12px;
  font-weight: 900;
}

.gia-checkout-consent {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
  border: 1px solid rgba(17, 28, 43, 0.1);
  border-radius: 16px;
  background: #fffdf2;
  padding: 12px 14px;
  line-height: 1.4;
}

.gia-checkout-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: #1f8b4c;
}

.gia-checkout-summary > strong {
  border-top: 1px solid rgba(17, 28, 43, 0.1);
  padding-top: 12px;
  color: #101826;
  font-size: 20px;
}

.gia-checkout-finish {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 42px);
}

.gia-success-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1c40f, #1f8b4c);
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(31, 139, 76, 0.22);
}

.gia-checkout-finish > p {
  margin: 0;
  color: #5f6f82;
  line-height: 1.55;
}

.gia-checkout-finish__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gia-checkout-finish__grid > div {
  border: 1px solid rgba(17, 28, 43, 0.1);
  border-radius: 20px;
  background: #fff;
  padding: 16px;
}

.gia-checkout-finish__grid h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.gia-checkout-finish__grid > div {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(17, 28, 43, 0.1);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.gia-checkout-finish__grid h3 {
  margin: 0;
}

.gia-product-modal.is-open {
  display: flex;
}

.gia-product-modal__panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  border: 1px solid rgba(28, 61, 89, 0.13);
  border-radius: 28px;
  background: #fbfcfb;
  box-shadow: 0 34px 100px rgba(14, 28, 44, 0.28);
}

.gia-product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(17, 28, 43, 0.12);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 25px;
}

.gia-product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(22px, 4vw, 42px);
}

.gia-product-detail__media {
  min-width: 0;
}

.gia-product-detail__main {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  background: #eef2f2;
}

.gia-product-detail__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.gia-product-detail__thumbs button {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}

.gia-product-detail__thumbs button.is-active {
  border-color: #145ca2;
}

.gia-product-detail__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gia-product-detail__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.gia-product-detail__content h2 {
  margin: 0;
  color: #101826;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
}

.gia-product-detail__brand,
.gia-product-detail__description,
.gia-product-detail__note {
  margin: 0;
  color: #5e6d7f;
  line-height: 1.55;
}

.gia-product-detail__meta,
.gia-product-detail__purchase,
.gia-product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.gia-product-detail__meta span,
.gia-product-detail__purchase div {
  border: 1px solid rgba(17, 28, 43, 0.1);
  border-radius: 16px;
  background: #fff;
  padding: 10px 12px;
  color: #5f6f82;
  font-size: 13px;
  font-weight: 800;
}

.gia-product-detail__purchase div {
  display: grid;
  gap: 4px;
  min-width: 150px;
}

.gia-product-detail__purchase span {
  color: #708092;
  font-size: 12px;
  text-transform: uppercase;
}

.gia-product-detail__purchase strong {
  color: #142033;
  font-size: 16px;
}

.gia-product-detail__qty {
  display: grid;
  gap: 6px;
  color: #263243;
  font-size: 13px;
  font-weight: 850;
}

.gia-product-detail__qty input {
  width: 92px;
  border: 1px solid rgba(17, 28, 43, 0.14);
  border-radius: 14px;
  background: #fff;
  min-height: 42px;
  padding: 9px 11px;
}

.gia-product-detail-loading,
.gia-product-detail-error {
  padding: 44px;
  color: #5f6f82;
  font-weight: 800;
}

.gia-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 95;
  width: min(460px, 100vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fbfcfb;
  border-left: 1px solid rgba(28, 61, 89, 0.12);
  box-shadow: -28px 0 70px rgba(14, 28, 44, 0.22);
  transform: translateX(105%);
  transition: transform 220ms ease;
  overflow-y: auto;
}

.gia-cart-drawer.is-open {
  transform: translateX(0);
}

.gia-cart-drawer__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.gia-cart-drawer__head p {
  margin: 0 0 4px;
  color: #5f6f82;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gia-cart-drawer__head h2 {
  margin: 0;
  color: #101826;
  font-size: 28px;
  line-height: 1.05;
}

.gia-cart-drawer__head button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 28, 43, 0.12);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
}

.gia-cart-drawer__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.gia-cart-status,
.gia-cart-success {
  border-radius: 14px;
  padding: 12px 14px;
  background: #edf8f0;
  color: #1f6b36;
  font-weight: 700;
}

.gia-cart-status.is-error {
  background: #fff1ed;
  color: #a04224;
}

.gia-cart-success p {
  margin: 6px 0 0;
  color: #526173;
  font-weight: 600;
}

.gia-cart-empty {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 1px dashed rgba(31, 139, 76, 0.24);
  border-radius: 20px;
  background: #f5fbf6;
  padding: 20px;
  color: #456052;
}

.gia-cart-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 28, 43, 0.1);
}

.gia-cart-item img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 16px;
  background: #eef2f2;
}

.gia-cart-item .gia-product-image-placeholder {
  width: 74px;
  height: 74px;
  border-radius: 16px;
}

.gia-cart-item--compact {
  grid-template-columns: 62px 1fr;
  padding: 12px 0;
}

.gia-cart-item--compact img,
.gia-cart-item--compact .gia-product-image-placeholder {
  width: 62px;
  height: 62px;
}

.gia-cart-item h3 {
  margin: 0 0 5px;
  font-size: 15px;
  line-height: 1.25;
}

.gia-cart-item p {
  margin: 0 0 6px;
  color: #6a7584;
  font-size: 12px;
}

.gia-cart-item strong {
  display: block;
  margin-bottom: 10px;
}

.gia-cart-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.gia-cart-item__actions button,
.gia-cart-clear {
  border: 1px solid rgba(17, 28, 43, 0.12);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  min-height: 34px;
  padding: 7px 11px;
}

.gia-cart-item__actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.gia-cart-clear {
  margin-top: 12px;
}

.gia-cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(17, 28, 43, 0.1);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
}

.gia-cart-order-summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: -8px;
  color: #637184;
  font-size: 12px;
  font-weight: 800;
}

.gia-cart-summary span {
  color: #637184;
  font-weight: 800;
}

.gia-cart-form {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.gia-cart-form h3 {
  margin: 0;
  font-size: 18px;
}

.gia-cart-form label {
  display: grid;
  gap: 7px;
  color: #263243;
  font-size: 13px;
  font-weight: 800;
}

.gia-cart-form label span {
  color: #7c8795;
  font-weight: 700;
}

.gia-cart-form input,
.gia-cart-form select,
.gia-cart-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 28, 43, 0.14);
  border-radius: 14px;
  background: #fff;
  color: #142033;
  font: inherit;
  min-height: 44px;
  padding: 11px 12px;
}

.gia-cart-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #1f8b4c;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 48px;
  padding: 12px 18px;
  text-align: center;
  text-decoration: none;
}

.gia-cart-submit--secondary {
  background: #f1c40f;
  color: #142033;
}

.gia-cart-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.gia-cart-note {
  margin: 0;
  color: #647284;
  font-size: 12px;
  line-height: 1.45;
}

/* Faza 23 final webshop polish: compact, brand-aligned ecommerce surfaces. */
.gia-header-cart {
  min-height: 40px;
  border-color: rgba(241, 196, 15, 0.65);
  background: linear-gradient(135deg, #fffdf2, #f4fbf2);
  color: #173723;
  box-shadow: 0 10px 24px rgba(31, 139, 76, 0.12);
}

.gia-header-cart em {
  background: #1f8b4c;
  color: #fff;
}

.gia-shop-page {
  padding-top: clamp(96px, 9vw, 124px);
  min-height: calc(100svh - 80px);
}

.gia-shop-page__head {
  margin-bottom: clamp(18px, 3vw, 30px);
}

.gia-shop-page__head h1 {
  max-width: 740px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: 0;
}

.gia-shop-page__head p {
  max-width: 720px;
  font-size: clamp(15px, 1.6vw, 17px);
}

body[data-page="products"] .gia-product {
  border-radius: 20px;
}

body[data-page="products"] .gia-product img {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  object-fit: cover;
}

body[data-page="products"] .gia-product h3 {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.2;
}

.gia-product__price {
  color: #173723;
  font-size: 18px;
}

.gia-product__cart,
.gia-cart-submit {
  background: #1f8b4c;
  box-shadow: 0 12px 24px rgba(31, 139, 76, 0.16);
}

.gia-cart-submit--secondary {
  border: 1px solid rgba(31, 139, 76, 0.18);
  background: #fffdf2;
  color: #173723;
  box-shadow: none;
}

.gia-product-detail__thumbs button.is-active {
  border-color: #1f8b4c;
}

.gia-cart-drawer {
  width: min(420px, 100vw);
  gap: 14px;
  padding: 22px;
}

.gia-cart-drawer__head {
  border-bottom: 1px solid rgba(17, 28, 43, 0.08);
  padding-bottom: 14px;
}

.gia-cart-drawer__head h2 {
  font-size: 24px;
}

.gia-cart-drawer__head p,
.gia-checkout-finish > span {
  color: #1f8b4c;
  letter-spacing: 0.04em;
}

.gia-cart-drawer__actions {
  position: sticky;
  bottom: -22px;
  margin-inline: -22px;
  padding: 14px 22px 18px;
  border-top: 1px solid rgba(17, 28, 43, 0.08);
  background: linear-gradient(180deg, rgba(251, 252, 251, 0.92), #fbfcfb);
  backdrop-filter: blur(10px);
}

.gia-cart-drawer__actions .gia-button {
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
}

.gia-cart-page {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(18px, 3vw, 28px);
}

.gia-cart-page__items,
.gia-cart-page__summary,
.gia-checkout-page {
  border-radius: 22px;
  padding: clamp(16px, 2.4vw, 24px);
  box-shadow: 0 18px 48px rgba(14, 28, 44, 0.055);
}

.gia-cart-page__summary {
  top: 92px;
}

.gia-cart-item {
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
}

.gia-cart-item img,
.gia-cart-item .gia-product-image-placeholder {
  width: 68px;
  height: 68px;
  border-radius: 14px;
}

.gia-cart-item--compact {
  grid-template-columns: 56px minmax(0, 1fr);
}

.gia-cart-item--compact img,
.gia-cart-item--compact .gia-product-image-placeholder {
  width: 56px;
  height: 56px;
}

.gia-cart-item h3 {
  font-size: 14px;
}

.gia-cart-item strong {
  margin-bottom: 8px;
  color: #142033;
  font-size: 14px;
}

.gia-cart-item__actions {
  gap: 6px;
}

.gia-cart-item__actions button,
.gia-cart-clear {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
}

.gia-cart-item__actions [data-cart-remove] {
  color: #7c3f2c;
  background: #fff7f2;
}

.gia-cart-qty-input {
  width: 58px;
  min-height: 32px;
  padding: 5px 8px;
}

.gia-cart-summary {
  border-radius: 16px;
  padding: 12px 14px;
}

.gia-checkout-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(16px, 3vw, 26px);
  padding: clamp(16px, 3vw, 28px);
}

.gia-cart-form {
  gap: 11px;
}

.gia-cart-form label {
  gap: 6px;
  font-size: 12px;
}

.gia-cart-form input,
.gia-cart-form select,
.gia-cart-form textarea {
  min-height: 42px;
  border-radius: 12px;
  padding: 10px 12px;
}

.gia-checkout-type {
  gap: 8px;
}

.gia-checkout-type label {
  min-height: 46px;
  border-radius: 14px;
  padding: 10px 12px;
}

.gia-checkout-type label:has(input:checked) {
  border-color: rgba(31, 139, 76, 0.55);
  background: linear-gradient(135deg, rgba(241, 196, 15, 0.22), rgba(31, 139, 76, 0.13));
}

.gia-checkout-summary {
  top: 92px;
  border-radius: 18px;
  padding: 16px;
}

.gia-checkout-summary h2 {
  font-size: 20px;
}

.gia-checkout-summary__item,
.gia-success-item {
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px !important;
}

.gia-checkout-summary__item span,
.gia-success-item span {
  min-width: 0;
  color: #364456;
  font-weight: 700;
}

.gia-checkout-summary__item strong,
.gia-success-item strong {
  white-space: nowrap;
  color: #142033;
  font-size: 13px;
}

.gia-checkout-consent {
  background: #fffdf2;
  color: #334255;
  font-size: 12px !important;
}

.gia-checkout-finish {
  max-width: 980px;
  margin-inline: auto;
  border: 1px solid rgba(17, 28, 43, 0.1);
  border-radius: 24px;
  background: #fbfcfb;
  box-shadow: 0 18px 48px rgba(14, 28, 44, 0.06);
}

.gia-checkout-finish h2 {
  font-size: clamp(28px, 3.5vw, 38px);
}

.gia-success-icon {
  width: 52px;
  height: 52px;
  font-size: 26px;
}

.gia-checkout-finish__grid {
  gap: 14px;
}

.gia-checkout-finish__grid > div {
  border-radius: 18px;
  padding: 14px;
}

.gia-checkout-finish__grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.gia-success-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 28, 43, 0.08);
}

.gia-success-item:last-of-type {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .gia-cart-page,
  .gia-checkout-layout,
  .gia-checkout-finish__grid {
    grid-template-columns: 1fr;
  }

  .gia-cart-page__summary,
  .gia-checkout-summary {
    position: static;
  }
}

/* Faza 24 checkout/cart summary polish with VAT breakdown. */
.gia-shop-page {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 32px);
}

.gia-shop-page__head {
  max-width: 760px;
}

.gia-cart-page,
.gia-checkout-layout {
  max-width: 1180px;
  margin-inline: auto;
}

.gia-cart-page {
  grid-template-columns: minmax(0, 700px) minmax(292px, 340px);
  justify-content: center;
  align-items: start;
  gap: clamp(14px, 2.2vw, 22px);
}

.gia-cart-page__items {
  min-width: 0;
}

.gia-cart-page__summary {
  max-width: 340px;
  width: 100%;
  gap: 12px;
}

.gia-cart-page__summary h2 {
  font-size: 20px;
}

.gia-cart-item {
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: start;
  border: 1px solid rgba(17, 28, 43, 0.08);
  border-radius: 16px;
  background: #fff;
  margin-bottom: 10px;
  padding: 10px;
}

.gia-cart-item:last-child {
  margin-bottom: 0;
}

.gia-cart-item__info {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.gia-cart-item__info > span {
  color: #5f6f82;
  font-size: 12px;
  line-height: 1.35;
}

.gia-cart-item__info > span strong {
  display: inline;
  margin: 0;
  color: #142033;
  font-size: 13px;
}

.gia-summary-breakdown,
.gia-cart-order-summary {
  display: grid;
  gap: 8px;
}

.gia-cart-order-summary {
  margin-top: 0;
  border: 1px solid rgba(17, 28, 43, 0.08);
  border-radius: 16px;
  background: #fff;
  padding: 12px;
  font-size: 12px;
}

.gia-cart-order-summary h3 {
  margin: 0 0 4px;
  color: #142033;
  font-size: 18px;
}

.gia-cart-order-summary p,
.gia-summary-note {
  margin: 4px 0 0;
  color: #647284;
  font-size: 12px;
  line-height: 1.45;
}

.gia-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  color: #5f6f82;
  line-height: 1.35;
  width: 100%;
}

.gia-summary-row span {
  min-width: 0;
}

.gia-summary-row strong {
  white-space: nowrap;
  color: #142033;
  text-align: right;
}

.gia-summary-row--total {
  margin-top: 4px;
  border-top: 1px solid rgba(17, 28, 43, 0.1);
  padding-top: 10px;
  color: #142033;
  font-size: 15px;
}

.gia-checkout-layout {
  grid-template-columns: minmax(0, 680px) minmax(300px, 380px);
  justify-content: center;
  align-items: start;
}

.gia-checkout-page {
  padding: clamp(16px, 2.2vw, 24px);
}

.gia-checkout-summary {
  max-width: 380px;
  width: 100%;
  overflow: hidden;
}

.gia-checkout-summary [data-checkout-summary] {
  gap: 14px;
}

.gia-checkout-summary__items {
  display: grid;
  gap: 10px;
}

.gia-checkout-summary__item {
  grid-template-columns: 42px minmax(0, 1fr);
  border-bottom: 1px solid rgba(17, 28, 43, 0.08);
  padding-bottom: 10px;
}

.gia-checkout-summary__item em {
  color: #8a96a5;
  font-style: normal;
  font-weight: 900;
}

.gia-checkout-summary__item span {
  display: grid;
  gap: 3px;
  line-height: 1.3;
}

.gia-checkout-summary__item span small {
  color: #7c8795;
  font-size: 11px;
  font-weight: 700;
}

.gia-checkout-summary__item strong {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  white-space: normal;
  color: #5f6f82;
  font-size: 12px;
}

.gia-checkout-summary__item strong b {
  color: #142033;
}

.gia-checkout-summary > strong {
  display: none;
}

.gia-checkout-consent {
  max-width: 620px;
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
}

.gia-checkout-consent input {
  flex: 0 0 16px;
  width: 16px;
  min-height: 16px;
}

.gia-checkout-form .gia-cart-submit {
  width: min(100%, 320px);
  justify-self: start;
}

.gia-cart-form textarea {
  min-height: 92px;
}

.gia-checkout-finish {
  max-width: 920px;
  padding: clamp(20px, 3vw, 34px);
}

.gia-checkout-finish__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.gia-success-item {
  grid-template-columns: 46px minmax(0, 1fr) auto;
}

@media (min-width: 1441px) {
  .gia-shop-page {
    max-width: 1280px;
  }
}

@media (max-width: 900px) {
  .gia-cart-page,
  .gia-checkout-layout,
  .gia-checkout-finish__grid {
    max-width: 760px;
  }

  .gia-cart-page__summary,
  .gia-checkout-summary {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .gia-cart-page__summary,
  .gia-checkout-summary {
    width: 100%;
  }

  .gia-summary-row {
    gap: 10px;
  }

  .gia-checkout-summary__item strong {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .gia-product__actions {
    width: 100%;
  }

  .gia-product__actions a,
  .gia-product__cart,
  .gia-product__details {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .gia-cart-fab {
    right: 14px;
    bottom: 14px;
  }

  .gia-header-cart strong {
    display: none;
  }

  .gia-cart-drawer {
    top: auto;
    bottom: 0;
    width: 100%;
    height: min(92vh, 760px);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-left: 0;
    padding: 20px;
  }

  .gia-cart-drawer__actions {
    bottom: -20px;
    margin-inline: -20px;
    padding: 12px 20px 16px;
  }

  .gia-cart-drawer__head h2 {
    font-size: 23px;
  }

  .gia-checkout-modal,
  .gia-product-modal {
    align-items: flex-end;
    padding: 0;
  }

  .gia-checkout-modal__panel,
  .gia-product-modal__panel {
    width: 100%;
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
  }

  .gia-checkout-layout,
  .gia-checkout-finish__grid {
    grid-template-columns: 1fr;
  }

  .gia-checkout-grid {
    grid-template-columns: 1fr;
  }

  .gia-checkout-summary {
    position: static;
  }

  .gia-shop-page {
    padding: 92px 16px 44px;
  }

  .gia-shop-page__head h1 {
    font-size: 30px;
  }

  .gia-cart-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .gia-cart-item img,
  .gia-cart-item .gia-product-image-placeholder {
    width: 56px;
    height: 56px;
  }

  .gia-checkout-summary__item,
  .gia-success-item {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .gia-checkout-summary__item strong,
  .gia-success-item strong {
    grid-column: 2;
    justify-self: start;
  }

  .gia-cart-page,
  .gia-checkout-page {
    grid-template-columns: 1fr;
  }

  .gia-cart-page__summary {
    position: static;
  }

  .gia-product-detail {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .gia-product-detail__content h2 {
    font-size: 28px;
  }

  .gia-product-detail__actions,
  .gia-product-detail__actions a,
  .gia-product-detail__actions button {
    width: 100%;
  }

  .gia-product-detail__qty {
    width: 100%;
  }

  .gia-product-detail__qty input {
    width: 100%;
  }
}

/* Final hard override for compact laptop home hero fit. */
body.is-loaded .gia-loader,
.is-loaded .gia-loader {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.gia-cart-open .gia-cart-drawer,
.gia-cart-drawer.is-open {
  transform: translateX(0) !important;
}

@media (max-width: 1440px) and (min-width: 981px) {
  body[data-page="home"] .home-hero {
    min-height: auto !important;
  }

  body[data-page="home"] .home-hero__inner {
    min-height: min(620px, calc(100svh - 72px)) !important;
    align-items: center;
    padding-top: clamp(18px, 2.7vw, 38px) !important;
    padding-bottom: clamp(18px, 2.7vw, 38px) !important;
  }

  body[data-page="home"] .home-hero__badge {
    margin-bottom: 8px !important;
  }

  body[data-page="home"] .home-hero h1 {
    font-size: clamp(36px, 4.1vw, 58px) !important;
    line-height: 0.96 !important;
  }

  body[data-page="home"] .home-hero p {
    max-width: 500px !important;
    margin-top: 10px !important;
    font-size: clamp(13.5px, 1vw, 15.5px) !important;
    line-height: 1.36 !important;
  }

  body[data-page="home"] .home-hero .gia-actions {
    margin-top: 12px !important;
    gap: 9px !important;
  }

  body[data-page="home"] .home-hero .gia-button {
    min-height: 38px !important;
    padding: 8px 14px !important;
    font-size: 10px !important;
  }
}

@media (max-width: 1440px) and (max-height: 820px) and (min-width: 981px) {
  body[data-page="home"] .home-hero__inner {
    min-height: min(590px, calc(100svh - 70px)) !important;
    padding-top: 18px !important;
    padding-bottom: 20px !important;
  }

  body[data-page="home"] .home-hero h1 {
    max-width: 560px !important;
    font-size: clamp(34px, 3.9vw, 52px) !important;
  }
}

@media (max-width: 1440px) and (max-height: 760px) and (min-width: 981px) {
  body[data-page="home"] .home-hero__inner {
    min-height: min(550px, calc(100svh - 66px)) !important;
    padding-top: 14px !important;
    padding-bottom: 16px !important;
  }

  body[data-page="home"] .home-hero h1 {
    max-width: 520px !important;
    font-size: clamp(32px, 3.7vw, 48px) !important;
  }

  body[data-page="home"] .home-hero p {
    max-width: 440px !important;
    margin-top: 8px !important;
    font-size: 13px !important;
    line-height: 1.32 !important;
  }

  body[data-page="home"] .home-hero .gia-actions {
    margin-top: 9px !important;
  }
}

@media (max-width: 1440px) and (max-height: 720px) and (min-width: 981px) {
  body[data-page="home"] .home-hero__inner {
    min-height: min(510px, calc(100svh - 62px)) !important;
    padding-top: 10px !important;
    padding-bottom: 12px !important;
  }

  body[data-page="home"] .home-hero h1 {
    max-width: 500px !important;
    font-size: clamp(30px, 3.5vw, 44px) !important;
  }

  body[data-page="home"] .home-hero__badge {
    margin-bottom: 6px !important;
    padding: 5px 9px !important;
    font-size: 9px !important;
  }

  body[data-page="home"] .home-hero .gia-button {
    min-height: 34px !important;
    padding: 7px 12px !important;
  }
}

/* Faza 26: sticky public header, summary overflow fix and webshop microinteractions. */
html {
  scroll-padding-top: 86px;
}

body {
  padding-top: 76px !important;
}

.gia-header {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 120 !important;
  width: 100% !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(20, 32, 51, 0.08);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body[data-page="cart"] .gia-shop-page,
body[data-page="checkout"] .gia-shop-page,
body[data-page="order-success"] .gia-shop-page {
  padding-top: clamp(28px, 4vw, 48px) !important;
}

.gia-header-cart,
.gia-button,
.gia-cart-submit,
.gia-product__cart,
.gia-product__details,
.gia-cart-item,
.gia-cart-item__actions button,
.gia-cart-clear,
.gia-checkout-type label,
.gia-checkout-summary,
.gia-cart-page__summary,
.gia-checkout-finish,
.gia-product {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.gia-button:hover,
.gia-cart-submit:hover,
.gia-product__cart:hover,
.gia-product__details:hover,
.gia-header-cart:hover {
  transform: translateY(-1px);
}

.gia-cart-item:hover,
.gia-product:hover,
.gia-checkout-summary:hover,
.gia-cart-page__summary:hover {
  border-color: rgba(46, 125, 50, 0.18);
  box-shadow: 0 16px 34px rgba(17, 28, 43, 0.08);
}

.gia-cart-item__actions button:hover:not(:disabled),
.gia-cart-clear:hover,
.gia-checkout-type label:hover {
  transform: translateY(-1px);
  border-color: rgba(241, 196, 15, 0.58);
}

.gia-cart-form input:focus,
.gia-cart-form select:focus,
.gia-cart-form textarea:focus,
.gia-cart-qty-input:focus {
  border-color: rgba(46, 125, 50, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.12) !important;
  outline: none !important;
}

.gia-cart-drawer {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}

.gia-checkout-finish {
  animation: giaSuccessIn 360ms ease both;
}

@keyframes giaSuccessIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gia-cart-page {
  grid-template-columns: minmax(0, 660px) minmax(280px, 340px);
  gap: clamp(14px, 2vw, 22px);
}

.gia-cart-page__items,
.gia-cart-page__summary {
  padding: clamp(14px, 2vw, 20px);
}

.gia-cart-item {
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
}

.gia-cart-item img,
.gia-cart-item .gia-product-image-placeholder {
  width: 60px;
  height: 60px;
}

.gia-cart-item__info {
  gap: 6px;
  min-width: 0;
}

.gia-cart-item__info h3 {
  line-height: 1.22;
}

.gia-cart-item__actions {
  gap: 6px;
}

.gia-cart-qty-input {
  width: 52px;
  min-width: 52px;
}

.gia-checkout-summary {
  overflow: hidden;
}

.gia-checkout-summary [data-checkout-summary] {
  min-width: 0;
}

.gia-checkout-summary .gia-checkout-summary__items {
  display: grid !important;
  gap: 10px !important;
  min-width: 0;
}

.gia-checkout-summary__item {
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) !important;
  align-items: start;
  gap: 10px !important;
  min-width: 0;
  padding: 10px 0 !important;
}

.gia-checkout-summary__item img,
.gia-checkout-summary__item .gia-product-image-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.gia-checkout-summary .gia-checkout-summary__copy {
  display: grid !important;
  justify-content: stretch !important;
  gap: 6px !important;
  min-width: 0;
  width: 100%;
  color: inherit;
}

.gia-checkout-summary__copy > span {
  display: block !important;
  min-width: 0;
  color: #142033;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.gia-checkout-summary__copy small {
  color: #7c8795;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.gia-checkout-summary__copy dl {
  display: grid;
  gap: 4px;
  margin: 0;
}

.gia-checkout-summary__copy dl div {
  display: flex !important;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 0;
  border: 0;
  color: #5f6f82;
  font-size: 12px;
  line-height: 1.35;
}

.gia-checkout-summary__copy dt,
.gia-checkout-summary__copy dd {
  margin: 0;
}

.gia-checkout-summary__copy dd {
  color: #142033;
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.gia-checkout-summary [data-checkout-summary] .gia-summary-breakdown,
.gia-cart-order-summary .gia-summary-breakdown,
.gia-checkout-finish .gia-summary-breakdown,
.gia-summary-breakdown {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  width: 100% !important;
  min-width: 0 !important;
}

.gia-checkout-summary [data-checkout-summary] .gia-summary-row,
.gia-cart-order-summary .gia-summary-row,
.gia-checkout-finish .gia-summary-row,
.gia-summary-row {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 12px !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  line-height: 1.35;
}

.gia-checkout-summary [data-checkout-summary] .gia-summary-row--total,
.gia-cart-order-summary .gia-summary-row--total,
.gia-checkout-finish .gia-summary-row--total,
.gia-summary-row--total {
  margin-top: 4px !important;
  border-top: 1px solid rgba(17, 28, 43, 0.12) !important;
  padding-top: 10px !important;
}

.gia-summary-label,
.gia-summary-row span {
  min-width: 0 !important;
  max-width: 62%;
  color: #5f6f82;
  overflow-wrap: anywhere;
  white-space: normal !important;
}

.gia-summary-value,
.gia-summary-row strong {
  flex: 0 1 auto;
  min-width: 0 !important;
  max-width: 48%;
  color: #142033;
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
  white-space: normal !important;
}

.gia-summary-row--total .gia-summary-label,
.gia-summary-row--total span,
.gia-summary-row--total .gia-summary-value,
.gia-summary-row--total strong {
  color: #142033;
  font-size: 15px;
}

.gia-checkout-summary [data-checkout-summary] .gia-summary-note,
.gia-summary-note {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  border-radius: 12px;
  background: rgba(241, 196, 15, 0.12);
  padding: 10px 12px;
  color: #5f6f82;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .gia-cart-page {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .gia-header {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  }

  .gia-cart-page__items,
  .gia-cart-page__summary,
  .gia-checkout-summary {
    padding: 14px;
  }

  .gia-checkout-summary__copy dl div,
  .gia-summary-row {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .gia-summary-label,
  .gia-summary-row span,
  .gia-summary-value,
  .gia-summary-row strong {
    max-width: 100%;
  }

  .gia-checkout-summary__copy dd,
  .gia-summary-row strong {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gia-header,
  .gia-header-cart,
  .gia-button,
  .gia-cart-submit,
  .gia-product__cart,
  .gia-product__details,
  .gia-cart-item,
  .gia-cart-item__actions button,
  .gia-cart-clear,
  .gia-checkout-type label,
  .gia-checkout-summary,
  .gia-cart-page__summary,
  .gia-checkout-finish,
  .gia-product,
  .gia-cart-drawer {
    animation: none !important;
    transition: none !important;
  }
}

/* Faza 28: final ordering summary and success confirmation polish. */
.gia-checkout-summary {
  box-sizing: border-box;
}

.gia-checkout-summary [data-checkout-summary] {
  width: 100% !important;
}

.gia-checkout-summary .gia-checkout-summary__item {
  grid-template-columns: 48px minmax(0, 1fr) !important;
  width: 100%;
  border-radius: 12px;
  padding: 10px !important;
  background: rgba(248, 250, 252, 0.72);
}

.gia-checkout-summary .gia-checkout-summary__copy {
  width: 100% !important;
  justify-self: stretch;
}

.gia-checkout-summary__copy dl {
  width: 100%;
}

.gia-cart-item__prices {
  display: grid;
  gap: 4px;
  margin: 2px 0 0;
}

.gia-cart-item__prices div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #5f6f82;
  font-size: 12px;
  line-height: 1.35;
}

.gia-cart-item__prices dt,
.gia-cart-item__prices dd {
  margin: 0;
}

.gia-cart-item__prices dd {
  color: #142033;
  font-weight: 900;
  text-align: right;
}

.gia-checkout-summary__copy dl div {
  width: 100% !important;
}

.gia-checkout-summary .gia-summary-breakdown,
.gia-cart-page__summary .gia-summary-breakdown,
.gia-checkout-finish .gia-summary-breakdown {
  margin-top: 4px;
  border: 1px solid rgba(17, 28, 43, 0.08);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
}

.gia-checkout-summary .gia-summary-note {
  margin-top: 10px;
}

.gia-checkout-summary > .gia-button,
.gia-checkout-summary > a,
.gia-cart-page__summary > .gia-button,
.gia-cart-page__summary > a {
  max-width: 100%;
}

.gia-checkout-finish {
  display: grid;
  gap: clamp(16px, 2.6vw, 24px);
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 32px);
  background: transparent;
  box-shadow: none;
}

.gia-success-card,
.gia-success-panel,
.gia-success-next {
  border: 1px solid rgba(17, 28, 43, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(17, 28, 43, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gia-success-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
  text-align: center;
}

.gia-success-card:hover,
.gia-success-panel:hover,
.gia-success-next:hover {
  transform: translateY(-1px);
  border-color: rgba(46, 125, 50, 0.16);
  box-shadow: 0 22px 48px rgba(17, 28, 43, 0.1);
}

.gia-success-card > span {
  color: #2e7d32;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gia-success-card h2 {
  max-width: 720px;
  margin: 0;
  color: #142033;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
}

.gia-success-card p {
  max-width: 680px;
  margin: 0;
  color: #5f6f82;
  font-size: 15px;
  line-height: 1.55;
}

.gia-success-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 260px));
  justify-content: center;
  gap: 10px;
  width: min(100%, 760px);
  margin-top: 8px;
}

.gia-success-meta div {
  border: 1px solid rgba(17, 28, 43, 0.08);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.78);
  padding: 10px 12px;
  text-align: left;
}

.gia-success-meta small,
.gia-customer-summary span,
.gia-success-item__copy dt {
  display: block;
  color: #7c8795;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

.gia-success-meta strong,
.gia-customer-summary strong,
.gia-success-item__copy dd {
  color: #142033;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.gia-checkout-finish__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}

.gia-checkout-finish__grid > .gia-success-panel,
.gia-success-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(17, 28, 43, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(16px, 2.2vw, 22px);
  box-shadow: 0 18px 42px rgba(17, 28, 43, 0.08);
}

.gia-success-panel h3,
.gia-success-next h3 {
  margin: 0;
  color: #142033;
  font-size: 19px;
  line-height: 1.2;
}

.gia-success-item {
  display: grid !important;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(17, 28, 43, 0.08);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.78);
  padding: 10px;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.gia-success-item:hover {
  transform: translateY(-1px);
  border-color: rgba(241, 196, 15, 0.42);
  background: #fff;
}

.gia-success-item img,
.gia-success-item .gia-product-image-placeholder {
  width: 58px;
  height: 58px;
  border-radius: 12px;
}

.gia-success-item__copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.gia-success-item__copy > span {
  color: #142033;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.gia-success-item__copy > small {
  color: #7c8795;
  font-size: 11px;
  font-weight: 750;
}

.gia-success-item__copy dl {
  display: grid;
  gap: 4px;
  margin: 0;
}

.gia-success-item__copy dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.gia-success-item__copy dd {
  margin: 0;
  text-align: right;
}

.gia-success-item__copy dt {
  margin: 0;
}

.gia-customer-summary {
  display: grid;
  gap: 8px;
}

.gia-customer-summary div {
  display: grid;
  gap: 3px;
  border-bottom: 1px solid rgba(17, 28, 43, 0.07);
  padding-bottom: 8px;
}

.gia-customer-summary div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.gia-success-next {
  display: grid;
  gap: 12px;
  padding: clamp(16px, 2.2vw, 22px);
}

.gia-success-next ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gia-success-next li {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(17, 28, 43, 0.08);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.78);
  padding: 12px;
}

.gia-success-next li span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f1c40f;
  color: #142033;
  font-size: 12px;
  font-weight: 950;
}

.gia-success-next li strong {
  color: #142033;
  font-size: 13px;
}

.gia-success-next li small,
.gia-success-next p {
  margin: 0;
  color: #647284;
  font-size: 12px;
  line-height: 1.45;
}

.gia-checkout-finish > .gia-actions {
  justify-content: center;
}

.gia-checkout-finish > .gia-summary-note {
  justify-self: center;
  max-width: 760px;
  margin: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .gia-checkout-finish__grid,
  .gia-success-next ol,
  .gia-success-meta {
    grid-template-columns: 1fr;
  }

  .gia-success-card {
    text-align: left;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .gia-checkout-summary .gia-checkout-summary__item,
  .gia-success-item {
    grid-template-columns: 52px minmax(0, 1fr) !important;
  }

  .gia-cart-item__prices div,
  .gia-success-item__copy dl div,
  .gia-checkout-summary__copy dl div {
    flex-direction: column;
    gap: 2px;
  }

  .gia-cart-item__prices dd,
  .gia-success-item__copy dd,
  .gia-checkout-summary__copy dd {
    text-align: left;
  }

  .gia-checkout-summary .gia-summary-breakdown,
  .gia-cart-page__summary .gia-summary-breakdown,
  .gia-checkout-finish .gia-summary-breakdown {
    padding: 10px;
  }

  .gia-checkout-finish {
    padding: 14px 0 28px;
  }

  .gia-checkout-finish > .gia-actions,
  .gia-checkout-finish > .gia-actions a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gia-success-card,
  .gia-success-panel,
  .gia-success-next,
  .gia-success-item {
    transition: none !important;
  }
}

/* Faza 30: product card/modal finalization and success layout fix. */
.gia-checkout-finish__grid {
  align-items: stretch;
}

.gia-checkout-finish__grid > .gia-success-panel {
  height: 100%;
}

.gia-checkout-finish > .gia-summary-note {
  border: 1px solid rgba(46, 125, 50, 0.14);
  background: rgba(46, 125, 50, 0.08);
  color: #285f3b;
}

.gia-product__price {
  display: grid;
  gap: 2px;
}

.gia-product__price small {
  color: #728094;
  font-size: 11px;
  font-weight: 850;
}

.gia-product__buy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
  border: 1px solid rgba(17, 28, 43, 0.08);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.78);
  padding: 10px;
}

.gia-product__buy > label {
  color: #5f6f82;
  font-size: 11px;
  font-weight: 900;
}

.gia-product-qty {
  display: inline-grid;
  grid-template-columns: 34px minmax(46px, 1fr) 34px;
  align-items: center;
  gap: 6px;
  width: min(100%, 150px);
}

.gia-product-qty button,
.gia-product-qty input {
  min-height: 34px;
  border: 1px solid rgba(17, 28, 43, 0.12);
  border-radius: 10px;
  background: #fff;
  color: #142033;
  text-align: center;
  font-weight: 900;
}

.gia-product-qty button {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.gia-product-qty button:hover {
  transform: translateY(-1px);
  border-color: rgba(241, 196, 15, 0.58);
  background: rgba(241, 196, 15, 0.12);
}

.gia-product__cart--remove {
  border-color: rgba(180, 35, 24, 0.18);
  background: #fff;
  color: #9f2f25;
  box-shadow: none;
}

.gia-product__cart--remove:hover {
  background: rgba(180, 35, 24, 0.08);
  color: #8a241d;
}

.gia-product-modal__close {
  display: inline-grid;
  place-items: center;
  line-height: 1;
  color: #142033;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.gia-product-modal__close:hover {
  transform: translateY(-1px) rotate(4deg);
  border-color: rgba(241, 196, 15, 0.55);
  background: #fff9df;
  box-shadow: 0 12px 28px rgba(17, 28, 43, 0.12);
}

.gia-product-detail__purchase {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: 100%;
}

.gia-product-detail__meta {
  align-items: stretch;
}

.gia-product-detail__meta span {
  display: inline-flex;
  align-items: center;
}

.gia-product-detail__actions {
  align-items: end;
}

.gia-product-detail__qty {
  min-width: 150px;
}

.gia-product-detail__qty input {
  width: 100%;
}

@media (max-width: 900px) {
  .gia-checkout-finish__grid > .gia-success-panel {
    height: auto;
  }

  .gia-product-detail__purchase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gia-product__buy {
    padding: 9px;
  }

  .gia-product-qty {
    width: 100%;
  }

  .gia-product-detail__actions .gia-product__cart,
  .gia-product-detail__actions .gia-product__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gia-product-qty button,
  .gia-product-modal__close {
    transition: none !important;
  }
}

/* Phase 1C: low-risk runtime, focus and tablet hardening. */
.gia-product > img,
.gia-cart-item img,
.gia-checkout-summary__item img,
.gia-success-item img,
.gia-product-detail__main,
.gia-product-detail__thumbs img {
  object-fit: cover;
}

.gia-product > img {
  aspect-ratio: 1 / 1;
}

.gia-logo-item img {
  width: auto;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: contain;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid #1f6b36;
  outline-offset: 3px;
}

.gia-product-modal__close,
.gia-cart-drawer__head button,
.gia-logo-control,
.gia-product-qty button,
.gia-cart-item__actions button,
.gia-pagination button,
.gia-menu-toggle {
  min-width: 44px;
  min-height: 44px;
}

@media (min-width: 981px) and (max-width: 1100px) {
  .gia-header__inner {
    width: calc(100% - 28px);
  }

  .gia-nav {
    gap: 4px;
  }

  .gia-nav a,
  .gia-lang {
    min-height: 42px;
    padding: 10px 11px;
    font-size: 12px;
  }

  .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 28px;
  }

  .products-filters {
    grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(140px, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .gia-logo-track,
  body[data-page="b2b"] .b2b-partners .gia-logo-track {
    animation: none !important;
  }

  .b2b-sticky-cards .b2b-why-grid {
    transition: none !important;
    will-change: auto !important;
  }
}

/* Final production polish: brand loader, legal content, footer and catalog state. */
.gia-loader__panel {
  width: min(72vw, 360px);
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.gia-loader__logo {
  width: min(72vw, 300px);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(16, 46, 53, 0.12));
}

.gia-loader__line {
  width: min(58vw, 230px);
  margin: 18px auto 0;
}

.home-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gia-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 34px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.gia-footer__legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.gia-footer__legal p {
  margin: 0;
  text-align: right;
}

.gia-footer__legal a {
  color: #fff;
  font-weight: 700;
  text-underline-offset: 3px;
}

.gia-legal-hero {
  width: min(calc(100% - 40px), 1180px);
  margin: clamp(42px, 7vw, 92px) auto 0;
  border-radius: clamp(26px, 4vw, 46px);
  padding: clamp(38px, 7vw, 82px);
  background:
    radial-gradient(circle at 88% 18%, rgba(253, 212, 61, 0.2), transparent 26%),
    linear-gradient(135deg, #153d47, #216358);
  color: #fff;
  box-shadow: 0 30px 90px rgba(18, 54, 61, 0.2);
}

.gia-legal-hero > div {
  max-width: 800px;
}

.gia-legal-hero .gia-eyebrow,
.gia-legal-hero small {
  color: rgba(255, 255, 255, 0.76);
}

.gia-legal-hero h1 {
  max-width: none;
  margin: 12px 0 16px;
  color: #fff;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
}

.gia-legal-hero p {
  max-width: 720px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.gia-legal {
  display: grid;
  gap: 0;
  width: min(calc(100% - 40px), 960px);
  margin: clamp(26px, 5vw, 56px) auto clamp(64px, 9vw, 120px);
}

.gia-legal > section {
  border-bottom: 1px solid rgba(21, 61, 71, 0.12);
  padding: clamp(28px, 4vw, 46px) 0;
}

.gia-legal > section:last-child {
  border-bottom: 0;
}

.gia-legal__summary {
  border: 1px solid rgba(21, 61, 71, 0.14);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(145deg, rgba(230, 246, 232, 0.82), rgba(255, 255, 255, 0.95));
  box-shadow: 0 18px 50px rgba(21, 61, 71, 0.08);
}

.gia-legal__summary strong {
  display: block;
  margin-bottom: 9px;
  color: #153d47;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gia-legal h2 {
  margin: 0 0 14px;
  color: #173f49;
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.2;
}

.gia-legal p,
.gia-legal li {
  color: #4a5a5d;
  font-size: 16px;
  line-height: 1.78;
}

.gia-legal p {
  margin: 0 0 12px;
}

.gia-legal p:last-child {
  margin-bottom: 0;
}

.gia-legal ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 16px;
  padding-left: 22px;
}

.gia-legal a {
  color: #256737;
  font-weight: 750;
  text-underline-offset: 3px;
}

.gia-form-privacy {
  max-width: 620px;
  color: #66736b;
  font-size: 12px;
  line-height: 1.5;
}

.products-coming-soon {
  display: grid;
  justify-items: start;
  width: min(calc(100% - 40px), 1040px);
  margin: clamp(24px, 5vw, 64px) auto;
  border: 1px solid rgba(21, 61, 71, 0.14);
  border-radius: clamp(26px, 4vw, 42px);
  padding: clamp(34px, 7vw, 76px);
  background:
    radial-gradient(circle at 88% 20%, rgba(245, 204, 53, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(232, 247, 234, 0.94), #fff);
  box-shadow: 0 24px 72px rgba(21, 61, 71, 0.1);
}

.products-coming-soon h2 {
  max-width: 720px;
  margin: 12px 0 16px;
  color: #173f49;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
}

.products-coming-soon p {
  max-width: 760px;
  margin: 0;
  color: #536268;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
}

[data-products-catalog][hidden],
[data-products-coming-soon][hidden] {
  display: none !important;
}

@media (max-width: 760px) {
  .home-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stats div:nth-child(2) {
    border-right: 0;
  }

  .home-stats div:nth-child(3),
  .home-stats div:nth-child(4) {
    border-top: 1px solid rgba(16, 18, 16, 0.12);
  }

  .gia-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .gia-footer__legal p {
    text-align: left;
  }

  .gia-legal-hero,
  .gia-legal,
  .products-coming-soon {
    width: min(calc(100% - 28px), 960px);
  }
}

/* Phase 2C-R1: targeted visual and accessibility remediation. */
@media (min-width: 981px) {
  body[data-page="b2b"] {
    overflow-x: clip;
  }

  body[data-page="b2b"] main,
  body[data-page="b2b"] .b2b-sticky-cards {
    overflow: visible;
  }

  body[data-page="b2b"] .b2b-sticky-cards.reveal {
    transform: none;
  }

  body[data-page="b2b"] .b2b-sticky-inner {
    top: var(--b2b-sticky-top, 108px);
    overflow: hidden;
  }
}

.lang-toggle,
.lang-menu button {
  min-height: 44px;
}

.gia-shop-page--disabled {
  display: grid;
  place-items: center;
}

.gia-shop-disabled {
  width: min(100%, 760px);
  margin: 0;
  border: 1px solid rgba(46, 125, 50, 0.16);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 64px rgba(17, 28, 43, 0.08);
}
