/* ============================================================
   USLUGE GRAFIČKOG DIZAJNA V2 — Devolfs-inspired layout
   ============================================================ */

/* ── HERO — dark, left-aligned ── */
.hero--graficki-v2 {
  background: #111111;
  height: 920px;
  background-image: url('/images/heroDizajn2.png');
  background-image: image-set(
    url('/images/heroDizajn2.webp') type('image/webp'),
    url('/images/heroDizajn2.png') type('image/png')
  );
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero--graficki-v2 .hero__content {
  top: 220px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--graficki-v2 .hero__heading {
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero--graficki-v2 .hero__sub {
  text-align: center;
  max-width: 680px;
  margin-top: 28px;
  margin-left: auto;
  margin-right: auto;
}

.hero--graficki-v2 .h1-mont,
.hero--graficki-v2 .h1-dutch,
.hero--graficki-v2 .bh1,
.hero--graficki-v2 .hero__sub { color: #111111; }

/* Rating badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 36px;
}

.hero__badge-text {
  font-family: var(--font-mont);
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}

.hero__badge-stars {
  font-size: 11px;
  color: #f5c842;
  letter-spacing: 1px;
}

/* Hero buttons — left row */
.hero--graficki-v2 .hero__buttons {
  justify-content: flex-start;
  margin-top: 44px;
}

.hero__btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  background: #d9ceea;
  border: none;
  border-radius: 5px;
  padding: 13px 26px;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  line-height: 1.2;
  text-decoration: none;
}

.hero__btn--primary .btn-track { position: relative; display: block; height: 1.2em; overflow: hidden; }
.hero__btn--primary .btn-track__inner { display: block; transition: transform 0.4s cubic-bezier(0.7,0,0.2,1); }
.hero__btn--primary .btn-track__inner > span { display: block; height: 1.2em; line-height: 1.2; }
.hero__btn--primary:hover .btn-track__inner { transform: translateY(-1.2em); }

/* Floating tags in hero */
.hero__float {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  pointer-events: none;
  margin-bottom: 36px;
}

.hero__float-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-mont);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: #ffffff;
  letter-spacing: var(--ls-default);
  white-space: nowrap;
}

.hero__float-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9ceea;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   FEATURES — "Šta nas izdvaja"
   White bg, centered heading, 3×2 grid icon+title+desc
   ══════════════════════════════════════════════════ */
.section-gd2-features {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.gd2-features__head {
  text-align: center;
  margin-bottom: 70px;
}

.gd2-features__head h2 {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
  margin: 0 0 16px 0;
}

.gd2-features__head h2 em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}

.gd2-features__sub {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-p) * 0.96);
  font-weight: var(--fw-regular);
  color: #666666;
  line-height: 1.6;
  letter-spacing: var(--ls-default);
  max-width: 560px;
  margin: 0 auto;
}

.gd2-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 60px;
  width: 1372px;
  margin: 0 auto;
}

.gd2-feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gd2-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gd2-feature__icon svg {
  width: 20px;
  height: 20px;
  stroke: #d9ceea;
}

.gd2-feature__title {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-p) * 1.05);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-default);
  color: #111111;
  margin: 0;
}

.gd2-feature__desc {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96);
  font-weight: var(--fw-regular);
  color: #666666;
  line-height: 1.6;
  margin: 0;
  letter-spacing: var(--ls-default);
}

/* ══════════════════════════════════════════════════
   SERVICES — 4-col cards with pill tags
   ══════════════════════════════════════════════════ */
.section-gd2-services {
  background: #f5f5f5;
  padding-top: 90px;
  padding-bottom: 90px;
}

.gd2-services__head {
  text-align: center;
  margin-bottom: 60px;
}

.gd2-services__head h2 {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
  margin: 0;
}

.gd2-services__head h2 em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}

.gd2-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 1372px;
  margin: 0 auto;
}

.gd2-scard {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease;
}

.gd2-scard:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
}

.gd2-scard__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gd2-scard__icon svg {
  width: 22px;
  height: 22px;
  stroke: #d9ceea;
}

.gd2-scard__title {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-p) * 1.0);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-default);
  color: #111111;
  line-height: 1.2;
  margin: 0;
}

.gd2-scard__desc {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96);
  font-weight: var(--fw-regular);
  color: #666666;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  letter-spacing: var(--ls-default);
}

.gd2-scard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.gd2-scard__tag {
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: #555555;
  background: #f0f0f0;
  border-radius: 999px;
  padding: 5px 11px;
  letter-spacing: 0;
}

.gd2-scard__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96);
  font-weight: var(--fw-semibold);
  color: #111111;
  letter-spacing: var(--ls-default);
  text-decoration: none;
  margin-top: 4px;
  position: relative;
}

.gd2-scard__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #111111;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.gd2-scard:hover .gd2-scard__link::after {
  transform: scaleX(0);
  transform-origin: right;
}

.gd2-scard__link svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════
   SERVICES v3 — Dizajner po potrebi
   ══════════════════════════════════════════════════ */

.section-gd3-services {
  background: #f5f5f5;
  padding: 90px 0;
}

.gd3-services__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  max-width: 1372px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.gd3-services__heading {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
  line-height: 1.1;
  margin: 0;
}

.gd3-services__heading em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}

.gd3-services__sub {
  margin-top: 16px;
  font-family: var(--font-mont);
  font-size: 15px;
  font-weight: 400;
  color: #666666;
  line-height: 1.65;
}

.gd3-services__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gd3-row {
  display: flex;
  gap: 10px;
}

.gd3-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  padding: 8px 20px 8px 8px;
  flex: 1;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  cursor: default;
}

.gd3-pill:hover {
  border-color: #cccccc;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.gd3-pill__img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8e8e8;
}

.gd3-pill__label {
  font-family: var(--font-mont);
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* dev label */
.gd3-prop-label {
  text-align: center;
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: #111111;
  padding: 6px 0;
}
.gd3-prop-label--light { background: #444444; }

/* ── PROPOSAL 1 — 3 category columns ── */
.section-gd4-cols {
  background: #ffffff;
  padding: 90px 0;
}
.gd4-cols__inner {
  max-width: 1372px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.gd4-cols__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid #e8e8e8;
}
.gd4-cols__heading {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
  margin: 0;
  white-space: nowrap;
}
.gd4-cols__heading em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}
.gd4-cols__sub {
  font-family: var(--font-mont);
  font-size: 15px;
  color: #888888;
  line-height: 1.65;
  max-width: 400px;
  margin: 0;
}
.gd4-cols__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.gd4-col {
  padding: 40px 40px 40px 0;
  border-right: 1px solid #e8e8e8;
  padding-left: 40px;
}
.gd4-col:first-child { padding-left: 0; }
.gd4-col:last-child { border-right: none; }
.gd4-col__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.gd4-col__num {
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: 600;
  color: #bbbbbb;
  letter-spacing: 0.06em;
}
.gd4-col__cat {
  font-family: var(--font-mont);
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.04em;
}
.gd4-col__items {
  display: flex;
  flex-direction: column;
}
.gd4-col__item {
  font-family: var(--font-mont);
  font-size: 15px;
  font-weight: 400;
  color: #444444;
  letter-spacing: -0.02em;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease;
}
.gd4-col__item:last-child { border-bottom: none; }
.gd4-col__item::after {
  content: '↗';
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translate(-4px, 4px);
}
.gd4-col__item:hover { color: #111111; }
.gd4-col__item:hover::after { opacity: 1; transform: translate(0, 0); }

/* ── PROPOSAL 2 — image card grid ── */
.section-gd4-imgrid {
  background: #f5f5f5;
  padding: 90px 0;
}
.gd4-imgrid__inner {
  max-width: 1372px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.gd4-imgrid__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.gd4-imgrid__heading {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
  margin: 0;
}
.gd4-imgrid__heading em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}
.gd4-imgrid__cta {
  font-family: var(--font-mont);
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.gd4-imgrid__cta:hover { opacity: 0.6; }
.gd4-imgrid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.gd4-icard {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #cccccc;
  text-decoration: none;
  display: block;
}
.gd4-icard--tall { grid-row: span 2; }
.gd4-icard--wide { grid-column: span 2; }
.gd4-icard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 55%);
  transition: opacity 0.3s ease;
}
.gd4-icard:hover::after { opacity: 1.4; }
.gd4-icard__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gd4-icard__name {
  font-family: var(--font-mont);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.03em;
}
.gd4-icard__tags {
  font-family: var(--font-mont);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: -0.01em;
}

/* ── PROPOSAL 2 — icon feature cards ── */
.section-gd4-features {
  background: #ffffff;
  padding: 90px 0;
}
.gd4-features__inner {
  max-width: 1372px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.gd4-features__head {
  text-align: center;
  margin-bottom: 56px;
}
.gd4-features__heading {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
  margin: 0 0 12px;
}
.gd4-features__heading em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}
.gd4-features__sub {
  font-family: var(--font-mont);
  font-size: 15px;
  color: #888888;
  margin: 0;
}
.gd4-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #eeeeee;
  border: 2px solid #eeeeee;
  border-radius: 16px;
  overflow: hidden;
}
.gd4-fcard {
  background: #ffffff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.gd4-fcard:hover { background: #fafafa; }
.gd4-fcard__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.gd4-fcard:hover .gd4-fcard__icon { background: #111111; }
.gd4-fcard__icon svg {
  width: 20px;
  height: 20px;
  stroke: #888888;
  transition: stroke 0.2s ease;
}
.gd4-fcard:hover .gd4-fcard__icon svg { stroke: #ffffff; }
.gd4-fcard__name {
  font-family: var(--font-mont);
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.03em;
}
.gd4-fcard__desc {
  font-family: var(--font-mont);
  font-size: 13.5px;
  color: #777777;
  line-height: 1.6;
  margin: 0;
}

/* ── PROPOSAL 3 — scrolling ticker, dark bg ── */
.section-gd4-ticker {
  background: #111111;
  padding-bottom: 90px;
  overflow: hidden;
}
.gd4-ticker__head {
  padding: 90px 0 60px;
}
.gd4-ticker__head-inner {
  max-width: 1372px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
}
.gd4-ticker__heading {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}
.gd4-ticker__heading em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}
.gd4-ticker__sub {
  font-family: var(--font-mont);
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  max-width: 340px;
}
.gd4-ticker__cta {
  font-family: var(--font-mont);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.gd4-ticker__cta:hover { opacity: 0.6; }
.gd4-ticker__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gd4-ticker__row {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.gd4-ticker__row:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
@keyframes ticker-fwd  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ticker-rev  { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.gd4-ticker__track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: ticker-fwd 18s linear infinite;
}
.gd4-ticker__row--rev .gd4-ticker__track {
  animation: ticker-rev 18s linear infinite;
}
.gd4-tick {
  font-family: var(--font-mont);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.03em;
  white-space: nowrap;
  transition: color 0.2s;
}
.gd4-tick:hover { color: #ffffff; }
.gd4-tick__sep {
  color: rgba(255,255,255,0.2);
  font-size: 16px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   PROPOSAL 4 — Pain + Outcome cards
   ══════════════════════════════════════════════════ */
.section-gd5-outcome { background: #f5f5f5; padding: 90px 0; }
.gd5-outcome__inner { max-width: 1372px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }

.gd5-outcome__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid #e0e0e0;
}
.gd5-outcome__head-left { display: flex; flex-direction: column; gap: 18px; max-width: 440px; }
.gd5-outcome__heading {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
  line-height: 1.1;
  margin: 0;
}
.gd5-outcome__heading em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}
.gd5-outcome__sub { font-family: var(--font-mont); font-size: 15px; color: #666; line-height: 1.65; margin: 0; }
.gd5-outcome__cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mont);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #111111;
  border-radius: 8px;
  padding: 12px 22px;
  text-decoration: none;
  letter-spacing: -0.02em;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.gd5-outcome__cta:hover { opacity: 0.8; }
.gd5-outcome__trust { display: flex; gap: 48px; align-items: center; flex-shrink: 0; }
.gd5-outcome__stat { display: flex; flex-direction: column; gap: 4px; }
.gd5-outcome__stat-num { font-family: var(--font-mont); font-size: 36px; font-weight: 700; color: #111111; letter-spacing: -0.05em; line-height: 1; }
.gd5-outcome__stat-label { font-family: var(--font-mont); font-size: 12px; color: #999999; letter-spacing: -0.01em; }

.gd5-outcome__cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gd5-ocard {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.gd5-ocard:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.gd5-ocard__num { font-family: var(--font-mont); font-size: 11px; font-weight: 600; color: #cccccc; letter-spacing: 0.06em; }
.gd5-ocard__name { font-family: var(--font-mont); font-size: 15px; font-weight: 600; color: #111111; letter-spacing: -0.03em; line-height: 1.3; }
.gd5-ocard__outcome { font-family: var(--font-mont); font-size: 13px; color: #777777; line-height: 1.6; margin: 0; flex: 1; }
.gd5-ocard__link { font-family: var(--font-mont); font-size: 12px; font-weight: 500; color: #111111; margin-top: auto; }

/* ══════════════════════════════════════════════════
   PROPOSAL 5 — Problem → Solution rows
   ══════════════════════════════════════════════════ */
.section-gd5-probsol { background: #ffffff; padding: 48px 0 90px; }
.gd5-probsol__inner { width: 1372px; margin: 0 auto; padding: 0; box-sizing: border-box; }
.gd5-probsol__head { margin-bottom: 56px; text-align: center; }
.gd5-probsol__heading {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
  margin: 0 0 12px;
}
.gd5-probsol__heading em { font-family: var(--font-dutch); font-size: var(--fs-h2-dutch); font-style: italic; letter-spacing: var(--ls-default); }
.gd5-probsol__sub { font-family: var(--font-mont); font-size: 15px; color: #888; margin: 0; }

.gd5-probsol__list { display: flex; flex-direction: column; }
.gd5-ps-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.gd5-ps-row:first-child { border-top: 1px solid #f0f0f0; }
.gd5-ps-label {
  display: inline-block;
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  text-transform: none;
  color: #ffffff;
  background: #111111;
  border-radius: 5px;
  padding: 5px 12px;
  margin-bottom: 12px;
}
.gd5-ps-problem p {
  font-family: var(--font-dutch);
  font-style: italic;
  font-size: 24px;
  color: #888888;
  line-height: 1.5;
  margin: 0;
}
.gd5-ps-arrow { font-size: 24px; color: #cccccc; text-align: center; align-self: center; }
.gd5-ps-problem p { max-width: 360px; }
.gd5-ps-name {
  display: block;
  font-family: var(--font-mont);
  font-size: 24px;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.04em;
  text-decoration: none;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}
.gd5-ps-name:hover { opacity: 0.6; }
.gd5-ps-solution { }
.gd5-ps-solution__body { background: #f5f5f5; border-radius: 12px; padding: 28px; width: 100%; box-sizing: border-box; }
.gd5-ps-problem { padding-top: 28px; }
.gd5-ps-solution__body p { font-family: var(--font-mont); font-size: 14px; color: #666666; line-height: 1.65; margin: 0 0 14px; }
.gd5-ps-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.gd5-ps-tag {
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: 500;
  color: #111111;
  background: #e4e4e4;
  border-radius: 5px;
  padding: 4px 10px;
}

.gd5-probsol__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}
.gd5-probsol__footer p { font-family: var(--font-mont); font-size: 15px; color: #999999; margin: 0; }
.gd5-probsol__cta {
  font-family: var(--font-mont);
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  transition: opacity 0.2s;
}
.gd5-probsol__cta:hover { opacity: 0.5; }

/* ══════════════════════════════════════════════════
   PROPOSAL 6 — Featured flagship + compact list
   ══════════════════════════════════════════════════ */
.section-gd5-featured { background: #f5f5f5; padding: 90px 0; }
.gd5-featured__inner { max-width: 1372px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
.gd5-featured__top { margin-bottom: 32px; display: flex; align-items: baseline; justify-content: space-between; gap: 40px; }
.gd5-featured__heading {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
  margin: 0;
}
.gd5-featured__heading em { font-family: var(--font-dutch); font-size: var(--fs-h2-dutch); font-style: italic; letter-spacing: var(--ls-default); }
.gd5-featured__sub { font-family: var(--font-mont); font-size: 15px; color: #888; max-width: 380px; margin: 0; }

.gd5-featured__layout { display: grid; grid-template-columns: 3fr 2fr; gap: 12px; align-items: stretch; }

.gd5-flagship {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #222222;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.gd5-flagship__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 60%);
}
.gd5-flagship__body {
  position: relative;
  z-index: 2;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gd5-flagship__tag {
  display: inline-block;
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111111;
  background: #ffffff;
  border-radius: 999px;
  padding: 4px 12px;
  align-self: flex-start;
}
.gd5-flagship__name { font-family: var(--font-mont); font-size: 28px; font-weight: 600; color: #ffffff; letter-spacing: -0.05em; margin: 0; }
.gd5-flagship__desc { font-family: var(--font-mont); font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; max-width: 420px; }
.gd5-flagship__items { font-family: var(--font-mont); font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: -0.01em; }
.gd5-flagship__cta { font-family: var(--font-mont); font-size: 14px; font-weight: 600; color: #ffffff; margin-top: 8px; }

.gd5-featured__list { display: flex; flex-direction: column; gap: 0; }
.gd5-flist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #ffffff;
  border-radius: 10px;
  padding: 22px 24px;
  text-decoration: none;
  flex: 1;
  margin-bottom: 10px;
  border: 1px solid #e8e8e8;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gd5-flist-item:last-child { margin-bottom: 0; }
.gd5-flist-item:hover { border-color: #cccccc; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.gd5-flist-item__left { display: flex; flex-direction: column; gap: 4px; }
.gd5-flist-item__name { font-family: var(--font-mont); font-size: 15px; font-weight: 600; color: #111111; letter-spacing: -0.03em; }
.gd5-flist-item__sub { font-family: var(--font-mont); font-size: 12px; color: #aaaaaa; letter-spacing: -0.01em; }
.gd5-flist-item__arrow { font-size: 16px; color: #cccccc; flex-shrink: 0; transition: color 0.2s, transform 0.2s; }
.gd5-flist-item:hover .gd5-flist-item__arrow { color: #111111; transform: translate(2px, -2px); }

/* ── PROPOSAL 2 — dark typographic menu ── */
.section-gd3-menu {
  background: #111111;
  padding: 90px 0;
}

.gd3-menu__inner {
  max-width: 1372px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.gd3-menu__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
}

.gd3-menu__heading {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}

.gd3-menu__heading em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}

.gd3-menu__sub {
  font-family: var(--font-mont);
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 380px;
  margin: 0;
}

.gd3-menu__list {
  display: flex;
  flex-direction: column;
}

.gd3-menu__item {
  display: grid;
  grid-template-columns: 48px 1fr 1fr 24px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: background 0.2s ease;
}

.gd3-menu__item:hover { background: rgba(255,255,255,0.03); }
.gd3-menu__item:hover .gd3-menu__name { color: #ffffff; }
.gd3-menu__item:hover .gd3-menu__arrow { opacity: 1; transform: translate(2px,-2px); }

.gd3-menu__num {
  font-family: var(--font-mont);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

.gd3-menu__name {
  font-family: var(--font-mont);
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.04em;
  transition: color 0.2s ease;
}

.gd3-menu__tags {
  font-family: var(--font-mont);
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: -0.01em;
}

.gd3-menu__arrow {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  justify-self: end;
}

/* ══════════════════════════════════════════════════
   WORKFLOW — sticky left heading, stacked steps right
   ══════════════════════════════════════════════════ */
.section-gd2-workflow {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.gd2-workflow__inner {
  display: flex;
  flex-direction: column;
  width: 1372px;
  margin: 0 auto;
}

.gd2-workflow__left {
  text-align: center;
  margin-bottom: 56px;
}

.gd2-workflow__left h2 {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.gd2-workflow__left h2 em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}

.gd2-workflow__left p {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-p) * 0.96);
  font-weight: var(--fw-regular);
  color: #666666;
  line-height: 1.65;
  margin: 0;
  letter-spacing: var(--ls-default);
}

.gd2-workflow__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  background: #d9ceea;
  border-radius: 5px;
  padding: 12px 25px;
  text-decoration: none;
  overflow: hidden;
  line-height: 1.2;
}

.gd2-workflow__cta .btn-track { position: relative; display: block; height: 1.2em; overflow: hidden; }
.gd2-workflow__cta .btn-track__inner { display: block; transition: transform 0.4s cubic-bezier(0.7,0,0.2,1); }
.gd2-workflow__cta .btn-track__inner > span { display: block; height: 1.2em; line-height: 1.2; }
.gd2-workflow__cta:hover .btn-track__inner { transform: translateY(-1.2em); }

.gd2-workflow__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gd2-step {
  position: sticky;
  top: 100px;
  background: #f7f7f7;
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 16px;
}

.gd2-step:nth-child(1) { z-index: 1; }
.gd2-step:nth-child(2) { z-index: 2; }
.gd2-step:nth-child(3) { z-index: 3; }
.gd2-step:nth-child(4) { z-index: 4; }
.gd2-step:nth-child(5) { z-index: 5; }

.gd2-step:last-child { margin-bottom: 0; }

.gd2-step:hover {}

.gd2-step__num {
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: var(--fw-regular);
  color: #aaaaaa;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}

.gd2-step__num em {
  font-family: var(--font-dutch);
  font-size: 14px;
  font-style: italic;
  color: #d9ceea;
}

.gd2-step__title {
  font-family: var(--font-mont);
  font-size: 24px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-default);
  color: #111111;
  margin: 0 0 10px 0;
}

.gd2-step__text {
  font-family: var(--font-mont);
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: #666666;
  line-height: 1.6;
  margin: 0;
  letter-spacing: var(--ls-default);
}

/* ══════════════════════════════════════════════════
   PORTFOLIO STRIP
   ══════════════════════════════════════════════════ */
.section-gd2-portfolio {
  background: #f5f5f5;
  padding-top: 90px;
  padding-bottom: 90px;
}

.gd2-portfolio__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 1372px;
  margin: 0 auto 40px;
}

.gd2-portfolio__head h2 {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
  margin: 0;
}

.gd2-portfolio__head h2 em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}

.gd2-portfolio__link {
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-semibold);
  color: #111111;
  text-decoration: none;
  letter-spacing: var(--ls-default);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  position: relative;
}

.gd2-portfolio__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #111111;
  transform-origin: left;
  transition: transform 0.3s ease;
}

.gd2-portfolio__link:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

.gd2-portfolio__link svg { width: 14px; height: 14px; }

.gd2-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 1372px;
  margin: 0 auto;
}

.gd2-portfolio__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dddddd;
  position: relative;
}

.gd2-portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gd2-portfolio__item:hover img { transform: scale(1.04); }

.gd2-portfolio__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-mont);
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: #ffffff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border-radius: 5px;
  padding: 6px 12px;
  letter-spacing: var(--ls-default);
}

/* ══════════════════════════════════════════════════
   PORTFOLIO STRIP — mkt style (Prethodne saradnje)
   ══════════════════════════════════════════════════ */
.section-mkt-portfolio { background: #ffffff; padding-top: 20px; padding-bottom: 90px; }
.mkt-portfolio__head { display: flex; align-items: flex-end; justify-content: center; width: 1372px; margin: 0 auto 40px; }
.mkt-portfolio__head h2 { font-family: var(--font-mont); font-size: var(--fs-h2-mont); font-weight: 400; letter-spacing: -0.07em; color: #111111; margin: 0; text-align: center; }
.mkt-portfolio__head h2 em { font-family: var(--font-dutch); font-size: var(--fs-h2-dutch); font-style: italic; letter-spacing: var(--ls-default); }
.mkt-portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 1372px; margin: 0 auto; }
.mkt-portfolio__item { border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; background: #eeeeee; position: relative; }
.mkt-portfolio__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.mkt-portfolio__item:hover img { transform: scale(1.04); }
.mkt-portfolio__label { position: absolute; bottom: 16px; left: 16px; font-family: var(--font-mont); font-size: 12px; font-weight: var(--fw-medium); color: #ffffff; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); border-radius: 5px; padding: 6px 12px; letter-spacing: var(--ls-default); }
.mkt-portfolio__item--cta { background: #111111; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 28px; gap: 20px; }
.mkt-portfolio__cta-text { font-family: var(--font-mont); font-size: 23.9px; font-weight: 500; letter-spacing: -0.07em; color: #ffffff; line-height: 1.28; margin: 0; }
.mkt-portfolio__cta-btn { display: flex; align-items: center; justify-content: center; font-family: var(--font-mont); font-size: var(--fs-nav); font-weight: var(--fw-medium); letter-spacing: var(--ls-default); color: #111111; background: #ffffff; border-radius: 5px; padding: 12px 25px; text-decoration: none; overflow: hidden; line-height: 1.2; width: 100%; box-sizing: border-box; }
.mkt-portfolio__cta-btn .btn-track { position: relative; display: block; height: 1.2em; overflow: hidden; }
.mkt-portfolio__cta-btn .btn-track__inner { display: block; transition: transform 0.4s cubic-bezier(0.7,0,0.2,1); }
.mkt-portfolio__cta-btn .btn-track__inner > span { display: block; height: 1.2em; line-height: 1.2; }
.mkt-portfolio__cta-btn:hover .btn-track__inner { transform: translateY(-1.2em); }

/* ══════════════════════════════════════════════════
   PRICING CTA BOX — mkt style
   ══════════════════════════════════════════════════ */
.section-mkt-pricing { background: #ffffff; padding-top: 40px; padding-bottom: 5px; }
.mkt-pricing__box { background: #ffffff; border-radius: 12px; padding: 60px; width: 1372px; margin: 0 auto; display: grid; grid-template-columns: 1fr; text-align: center; align-items: center; box-sizing: border-box; }
.mkt-pricing__text h2 { font-family: var(--font-mont); font-size: var(--fs-h2-mont); font-weight: 400; letter-spacing: -0.07em; color: #111111; margin: 0 0 16px 0; text-align: center; }
.mkt-pricing__text h2 em { font-family: var(--font-dutch); font-size: var(--fs-h2-dutch); font-style: italic; letter-spacing: var(--ls-default); }
.mkt-pricing__text p { font-family: var(--font-mont); font-size: calc(var(--fs-p) * 0.88); color: #666666; line-height: 1.65; letter-spacing: var(--ls-default); text-align: center; max-width: 600px; margin: 0 auto; }
.mkt-pricing__btns { display: flex; flex-direction: row; justify-content: center; gap: 14px; margin-top: 32px; flex-shrink: 0; }
.mkt-pricing__btn-primary, .mkt-pricing__btn-ghost { display: flex; align-items: center; justify-content: center; font-family: var(--font-mont); font-size: var(--fs-nav); font-weight: var(--fw-medium); letter-spacing: var(--ls-default); border-radius: 5px; padding: 12px 25px; text-decoration: none; overflow: hidden; line-height: 1.2; border: none; }
.mkt-pricing__btn-primary { color: #ffffff; background: #111111; }
.mkt-pricing__btn-ghost { color: #111111; background: transparent; border: 1px solid #d0d0d0; transition: border-color 0.25s ease; }
.mkt-pricing__btn-ghost:hover { border-color: #888888; }
.mkt-pricing__btn-primary .btn-track, .mkt-pricing__btn-ghost .btn-track { position: relative; display: block; height: 1.2em; overflow: hidden; }
.mkt-pricing__btn-primary .btn-track__inner, .mkt-pricing__btn-ghost .btn-track__inner { display: block; transition: transform 0.4s cubic-bezier(0.7,0,0.2,1); }
.mkt-pricing__btn-primary .btn-track__inner > span, .mkt-pricing__btn-ghost .btn-track__inner > span { display: block; height: 1.2em; line-height: 1.2; }
.mkt-pricing__btn-primary:hover .btn-track__inner, .mkt-pricing__btn-ghost:hover .btn-track__inner { transform: translateY(-1.2em); }

/* ══════════════════════════════════════════════════
   PRICING CTA BOX — dark version (old, unused)
   ══════════════════════════════════════════════════ */
.section-gd2-pricing {
  background: #ffffff;
  padding-top: 90px;
  padding-bottom: 90px;
}

.gd2-pricing__box {
  background: #111111;
  border-radius: 12px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  width: 1372px;
  margin: 0 auto;
  box-sizing: border-box;
}

.gd2-pricing__text h2 {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.gd2-pricing__text h2 em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}

.gd2-pricing__text p {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-p) * 0.96);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
  letter-spacing: var(--ls-default);
  max-width: 500px;
}

.gd2-pricing__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.gd2-pricing__btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  background: #d9ceea;
  border: none;
  border-radius: 5px;
  padding: 12px 25px;
  text-decoration: none;
  overflow: hidden;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

.gd2-pricing__btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 5px;
  padding: 12px 25px;
  text-decoration: none;
  overflow: hidden;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.25s ease;
}

.gd2-pricing__btn-ghost:hover { border-color: rgba(255,255,255,0.6); }

.gd2-pricing__btn-primary .btn-track,
.gd2-pricing__btn-ghost .btn-track { position: relative; display: block; height: 1.2em; overflow: hidden; }
.gd2-pricing__btn-primary .btn-track__inner,
.gd2-pricing__btn-ghost .btn-track__inner { display: block; transition: transform 0.4s cubic-bezier(0.7,0,0.2,1); }
.gd2-pricing__btn-primary .btn-track__inner > span,
.gd2-pricing__btn-ghost .btn-track__inner > span { display: block; height: 1.2em; line-height: 1.2; }
.gd2-pricing__btn-primary:hover .btn-track__inner,
.gd2-pricing__btn-ghost:hover .btn-track__inner { transform: translateY(-1.2em); }



/* Hero buttons centered */
.hero--graficki-v2 .hero__buttons {
  justify-content: center;
}

/* Badge centered */
.hero--graficki-v2 .hero__badge {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}


/* Nav black override */
.hero--graficki-v2 .nav__link,
.hero--graficki-v2 .nav__brand { color: #111111; }
.hero--graficki-v2 .nav__link::after { background-color: #111111; }
.hero--graficki-v2 .dropdown-icon { filter: brightness(0); }


/* ── Hero bubble buttons — exact portfolio filter style, white→black ── */
.hero__float {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.hero__float--row2 {
  margin-top: 0;
}

.hero__float-tag {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96 * 1.15);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-default);
  color: #111111;
  padding: 9.2px 23px;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.hero__float-tag:hover {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.9);
}

.hero__float-tag::before { display: none; }

/* Badge stars gold */
.hero--graficki-v2 .hero__badge-stars { color: #f5c842; }

/* port-filter color override for light bg page */
.hero--graficki-v2 ~ * .port-filter,
.section-gd2-features ~ .port-filter,
.hero--graficki-v2 .port-filter {
  border-color: rgba(0, 0, 0, 0.6);
  color: #111111;
}

.hero--graficki-v2 .port-filter:hover {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.9);
}

/* Badge — same as port-filter bubbles */
.hero--graficki-v2 .hero__badge {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96 * 1.15);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-default);
  padding: 9.2px 23px;
}

.hero--graficki-v2 .hero__badge-text {
  color: #111111;
  font-size: calc(var(--fs-nav) * 0.96 * 1.15);
  font-weight: var(--fw-regular);
}

.hero--graficki-v2 .hero__badge-stars { color: #f5c842; }

/* Stars badge — 15% smaller than bubbles, stars slightly bigger */
.hero--graficki-v2 .hero__badge {
  font-size: calc(var(--fs-nav) * 0.96 * 1.15 * 0.85);
  padding: calc(9.2px * 0.85) calc(23px * 0.85);
}

.hero--graficki-v2 .hero__badge-stars {
  font-size: calc(var(--fs-nav) * 0.96 * 1.15 * 0.85 * 1.2);
}

/* Stars badge — scale entire element 15% smaller */
.hero--graficki-v2 .hero__badge {
  transform: scale(0.85);
  transform-origin: center;
}


/* ── SCROLL ANIMATIONS ── */
.section-gd5-probsol.will-animate,
.section-gd2-workflow.will-animate,
.section-mkt-portfolio.will-animate,
.section-mkt-pricing.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.section-gd5-probsol.anim-visible,
.section-gd2-workflow.anim-visible,
.section-mkt-portfolio.anim-visible,
.section-mkt-pricing.anim-visible {
  opacity: 1;
  transform: translateY(0);
}
