.dvojkavit {
  --ink: #131316;
  --ink-soft: #3c3d42;
  /* Secondary text colour. The old #9b9ea6 hit 2.68:1 on white and 2.41:1 on --card,
       which was the single source of ~250 WCAG contrast failures across the site.
       #686f75 clears AA on both (5.10:1 / 4.59:1) and matches --muted in the design system. */
  --gray: #686f75;
  --gray-light: #8d9398;
  --line: #e9eaee;
  --card: #f2f3f5;
  --bg: #ffffff;
  --accent-1: #f472b6;
  --accent-2: #ec4899;
  --accent-text: #ec4899;
  --focus-ring: #131316;
  --pill-h: 46px;
  --header-h: 109px;
  --w: 1300px;
}
.dvojkavit * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.dvojkavit {
  scroll-behavior: smooth;
}
.dvojkavit {
  font-family:
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  /* clip (not hidden): hidden would create a scroll container and break position:sticky descendants */
  overflow-x: clip;
}
.dvojkavit .wrap {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
}
.dvojkavit .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--pill-h);
  padding: 0 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.dvojkavit .pill:hover {
  transform: translateY(-2px);
}
.dvojkavit .pill-dark {
  background: var(--ink);
  color: #fff;
}
.dvojkavit .pill-dark:hover {
  box-shadow: 0 12px 28px rgba(19, 19, 22, 0.25);
}
.dvojkavit .pill-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.dvojkavit .pill-light:hover {
  box-shadow: 0 12px 24px rgba(19, 19, 22, 0.08);
}
.dvojkavit /* ============ HEADER ============ */
  header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.dvojkavit .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
}
.dvojkavit .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.dvojkavit .logo-image {
  display: block;
  width: 142px;
  height: 40px;
  object-fit: contain;
  transition:
    opacity 0.2s ease,
    transform 0.25s ease;
}
.dvojkavit .logo:hover .logo-image {
  opacity: 0.82;
  transform: translateY(-1px);
}
.dvojkavit .nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.dvojkavit .nav-links > li {
  position: relative;
}
.dvojkavit .nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.dvojkavit .nav-links a:hover {
  color: var(--ink);
}
.dvojkavit .nav-services-dropdown {
  position: relative;
}
.dvojkavit .nav-services-dropdown summary {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.dvojkavit .nav-services-dropdown summary::-webkit-details-marker {
  display: none;
}
.dvojkavit .nav-services-dropdown summary:hover,
.dvojkavit .nav-services-dropdown summary:focus-visible,
.dvojkavit .nav-services-dropdown[open] summary {
  color: var(--ink);
}
.dvojkavit .nav-services-dropdown summary:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 7px;
  border-radius: 3px;
}
.dvojkavit .nav-services-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.dvojkavit .nav-services-dropdown[open] .nav-services-chevron {
  transform: rotate(180deg);
}
.dvojkavit .nav-services-menu {
  display: block;
  position: fixed;
  z-index: 80;
  top: calc(var(--header-h) - 26px);
  left: 50vw;
  width: min(1080px, calc(100vw - 32px));
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px) scale(0.985);
  transform-origin: 50% 0;
  background:
    radial-gradient(circle at 22% 0, rgba(244, 114, 182, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(19, 19, 22, 0.14);
  backdrop-filter: blur(18px);
  transition:
    opacity 0.2s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.2s ease;
}
.dvojkavit .nav-services-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -23px;
  height: 23px;
}
.dvojkavit .nav-services-menu::after {
  content: '';
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    #f472b6 24%,
    #ec4899 52%,
    #f9a8d4 78%,
    transparent
  );
  opacity: 0.72;
}
.dvojkavit .nav-services-dropdown[open] .nav-services-menu,
.dvojkavit .nav-services-dropdown:hover .nav-services-menu,
.dvojkavit .nav-services-dropdown:focus-within .nav-services-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
.dvojkavit .nav-services-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 2px 22px;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(7px);
  transition:
    opacity 0.2s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.dvojkavit .nav-services-dropdown[open] .nav-services-menu-head,
.dvojkavit .nav-services-dropdown:hover .nav-services-menu-head,
.dvojkavit .nav-services-dropdown:focus-within .nav-services-menu-head {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.035s;
}
.dvojkavit .nav-services-menu-head > div {
  display: grid;
  gap: 5px;
}
.dvojkavit .nav-services-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  color: var(--accent-text);
}
.dvojkavit .nav-services-menu-head strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em !important;
}
.dvojkavit .nav-links .nav-services-overview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
}
.dvojkavit .nav-links .nav-services-overview:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.dvojkavit .nav-services-overview svg {
  width: 14px;
  height: 14px;
}
.dvojkavit .nav-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding-top: 20px;
}
.dvojkavit .nav-services-group {
  min-width: 0;
  padding: 15px;
  border-radius: 18px;
  background: #f7f7f9;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(9px);
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
}
.dvojkavit .nav-services-dropdown[open] .nav-services-group,
.dvojkavit .nav-services-dropdown:hover .nav-services-group,
.dvojkavit .nav-services-dropdown:focus-within .nav-services-group {
  opacity: 1;
  transform: translateY(0);
}
.dvojkavit .nav-services-dropdown[open] .nav-services-group:nth-child(1),
.dvojkavit .nav-services-dropdown:hover .nav-services-group:nth-child(1),
.dvojkavit .nav-services-dropdown:focus-within .nav-services-group:nth-child(1) {
  transition-delay: 0.055s;
}
.dvojkavit .nav-services-dropdown[open] .nav-services-group:nth-child(2),
.dvojkavit .nav-services-dropdown:hover .nav-services-group:nth-child(2),
.dvojkavit .nav-services-dropdown:focus-within .nav-services-group:nth-child(2) {
  transition-delay: 0.085s;
}
.dvojkavit .nav-services-dropdown[open] .nav-services-group:nth-child(3),
.dvojkavit .nav-services-dropdown:hover .nav-services-group:nth-child(3),
.dvojkavit .nav-services-dropdown:focus-within .nav-services-group:nth-child(3) {
  transition-delay: 0.115s;
}
.dvojkavit .nav-services-dropdown[open] .nav-services-group:nth-child(4),
.dvojkavit .nav-services-dropdown:hover .nav-services-group:nth-child(4),
.dvojkavit .nav-services-dropdown:focus-within .nav-services-group:nth-child(4) {
  transition-delay: 0.145s;
}
.dvojkavit .nav-services-group:hover {
  background: #fff;
  border-color: var(--line);
  transform: translateY(-2px);
}
.dvojkavit .nav-links .nav-services-group-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  color: var(--ink);
  line-height: 1.35;
}
.dvojkavit .nav-services-group-title svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--accent-text);
}
.dvojkavit .nav-services-group ul {
  display: grid;
  gap: 2px;
  list-style: none;
  margin-top: 13px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
}
.dvojkavit .nav-services-group li {
  min-width: 0;
}
.dvojkavit .nav-links .nav-services-group li a {
  display: block;
  padding: 6px 0;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0 !important;
  text-transform: none;
  color: #747780;
}
.dvojkavit .nav-links .nav-services-group li a:hover {
  color: var(--accent-text);
}
.dvojkavit /* ============ HERO ============ */
  .hero {
  position: relative;
  padding: 52px 0 0;
  overflow: hidden;
}
.dvojkavit .hero-grid {
  position: absolute;
  inset: -40% -25% 0;
  background-image:
    linear-gradient(to right, rgba(19, 19, 22, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(19, 19, 22, 0.055) 1px, transparent 1px);
  background-size: 110px 96px;
  transform: perspective(900px) rotateX(38deg);
  transform-origin: 50% 0;
  -webkit-mask-image: radial-gradient(90% 75% at 50% 30%, #000 30%, transparent 100%);
  mask-image: radial-gradient(90% 75% at 50% 30%, #000 30%, transparent 100%);
  pointer-events: none;
}
.dvojkavit .hero-inner {
  position: relative;
  text-align: center;
}
.dvojkavit h1 {
  font-size: clamp(48px, 6.9vw, 99px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.03em !important;
  margin: 0 auto;
}
.dvojkavit .hero .hero-title {
  line-height: 1.3;
}
.dvojkavit .hero h1 > span:not(.hero-rotate-line) {
  color: #fff;
  background: linear-gradient(135deg, #f472b6 0%, #ec4899 55%, #f9a8d4 100%);
  padding: 0.02em 0.26em 0.12em;
  border-radius: 0.2em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0 16px 38px -24px rgba(236, 72, 153, 0.85);
}
.dvojkavit .hero-sub {
  margin-top: 30px;
  font-size: 17px;
  color: var(--gray);
  font-weight: 500;
}
.dvojkavit .hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  justify-content: center;
}
.dvojkavit /* logo marquee */
  .clients {
  position: relative;
  margin-top: 72px;
  padding-bottom: 64px;
}
.dvojkavit .marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.dvojkavit .marquee-track {
  display: flex;
  align-items: center;
  gap: 88px;
  padding-right: 88px;
  flex-shrink: 0;
  animation: scroll 32s linear infinite;
}
@keyframes scroll {
  to {
    transform: translateX(-100%);
  }
}
/* WCAG 2.2.2: motion that runs longer than 5 s needs a way to stop it. Hover/focus
     pauses the marquee, and reduced-motion users never see it move at all. */
.dvojkavit .marquee:hover .marquee-track,
.dvojkavit .marquee:focus-within .marquee-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .dvojkavit .marquee-track {
    animation: none;
  }
  .dvojkavit .marquee {
    overflow-x: auto;
  }
}
.dvojkavit .client {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  color: var(--gray);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em !important;
}
.dvojkavit .client svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.dvojkavit .client small {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  text-align: left;
}
.dvojkavit /* ============ SHOWCASE ============ */
  .showcase .frame {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 255, 255, 0.22), transparent 44%),
    linear-gradient(150deg, #db2777 0%, #ec4899 40%, #f472b6 70%, #f9a8d4 100%);
  filter: none;
  height: 800px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.dvojkavit .frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14),
    rgba(236, 72, 153, 0.08) 55%,
    rgba(219, 39, 119, 0.18)
  );
  backdrop-filter: saturate(0.72) brightness(1.04);
  pointer-events: none;
}
.dvojkavit .showcase .frame::after {
  background: transparent;
  backdrop-filter: none;
}
.dvojkavit .laptop {
  position: relative;
  z-index: 2;
  width: min(820px, 78%);
  margin-top: 112px;
}
.dvojkavit .laptop-screen {
  background: #0c0c0f;
  border-radius: 26px 26px 0 0;
  padding: 14px 14px 0;
  box-shadow: 0 60px 120px -30px rgba(60, 10, 60, 0.55);
  position: relative;
}
.dvojkavit .laptop-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 14px;
  background: #0c0c0f;
  border-radius: 0 0 10px 10px;
  z-index: 3;
}
.dvojkavit .screen-ui {
  background: #fff;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  aspect-ratio: 16/10.4;
  position: relative;
  display: flex;
  flex-direction: column;
}
.dvojkavit .laptop-deck {
  background: linear-gradient(180deg, #e8e9ec, #c9cbd1 70%, #9fa2aa);
  border-radius: 0 0 18px 18px;
  height: 38px;
  position: relative;
}
.dvojkavit .laptop-deck::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 150px;
  height: 10px;
  background: #b6b8bf;
  border-radius: 0 0 12px 12px;
}
.dvojkavit /* ============ MISSION ============ */
  .mission {
  padding: 110px 0 120px;
  text-align: left;
}
.dvojkavit .mission .kicker {
  margin-bottom: 26px;
}
.dvojkavit .mission-claim {
  font-size: clamp(26px, 3.15vw, 46px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.02em !important;
  max-width: 26ch;
  color: var(--ink);
}
.dvojkavit .mission-word {
  display: inline-block;
  margin-right: 0.24em;
}
.dvojkavit .mission-word.accent {
  color: var(--accent-text);
}
.dvojkavit .mission .pill {
  margin-top: 44px;
}
.dvojkavit /* ============ STATS ============ */
  .stats {
  padding: 48px 0 150px;
}
.dvojkavit .stats .wrap {
  max-width: 1440px;
  padding: 0 20px;
}
.dvojkavit .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.dvojkavit .stat {
  background: var(--card);
  border-radius: 30px;
  text-align: center;
  padding: 92px 20px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  /* will-change only on hover: a permanent hint pinned four compositor layers for an
       animation that runs forever, which costs GPU memory on every visit. */
  transition: box-shadow 0.3s ease;
  animation: statFloat 6s ease-in-out infinite;
}
.dvojkavit .stat:hover {
  animation-play-state: paused;
  box-shadow: 0 26px 50px -24px rgba(19, 19, 22, 0.2);
}
.dvojkavit .stat:nth-child(1) {
  animation-duration: 6s;
  animation-delay: -0.4s;
}
.dvojkavit .stat:nth-child(2) {
  animation-duration: 6.8s;
  animation-delay: -3.2s;
}
.dvojkavit .stat:nth-child(3) {
  animation-duration: 5.6s;
  animation-delay: -1.8s;
}
.dvojkavit .stat:nth-child(4) {
  animation-duration: 6.3s;
  animation-delay: -4.6s;
}
@keyframes statFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .dvojkavit .stat {
    animation: none;
  }
}
.dvojkavit .stat:nth-child(2),
.dvojkavit .stat:nth-child(4) {
  margin-top: 60px;
}
.dvojkavit .stat b {
  font-size: 66px;
  font-weight: 600;
  letter-spacing: -0.02em !important;
  line-height: 1;
}
.dvojkavit .stat span {
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.45;
}
.dvojkavit .stat.featured {
  background: linear-gradient(160deg, #f472b6 0%, #ec4899 45%, #f9a8d4 100%);
  color: #fff;
  box-shadow: 0 30px 60px -20px rgba(236, 72, 153, 0.55);
}
.dvojkavit .stat.featured span {
  color: rgba(255, 255, 255, 0.85);
}
.dvojkavit /* ============ SERVICES ============ */
  .services {
  padding: 0 0 170px;
}
.dvojkavit .services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.dvojkavit .svc-kicker {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em !important;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.dvojkavit .svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.dvojkavit .svc-tags span {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.dvojkavit .svc-media {
  position: sticky;
  top: 40px;
  border-radius: 34px;
  overflow: hidden;
  background: #fbf9fc;
  aspect-ratio: 0.73;
  max-height: 700px;
  width: 100%;
}
.dvojkavit .svc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (prefers-reduced-motion: reduce) {
  .dvojkavit .nav-services-menu,
  .dvojkavit .nav-services-menu-head,
  .dvojkavit .nav-services-group,
  .dvojkavit .nav-services-chevron {
    transition: none !important;
  }
}
.dvojkavit .agency-motion {
  position: absolute;
  inset: 0;
  isolation: isolate;
  display: grid;
  place-items: center;
  container-type: inline-size;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(244, 114, 182, 0.2), transparent 30%),
    radial-gradient(circle at 18% 84%, rgba(249, 168, 212, 0.24), transparent 34%),
    linear-gradient(145deg, #fff 0%, #faf8fc 46%, #f3eef8 100%);
}
.dvojkavit .agency-motion::after {
  content: '';
  position: absolute;
  z-index: 10;
  inset: 12px;
  border: 1px solid rgba(19, 19, 22, 0.055);
  border-radius: 25px;
  pointer-events: none;
}
.dvojkavit .agency-motion-grid {
  position: absolute;
  z-index: -4;
  inset: -16% -48% -24%;
  opacity: 0.62;
  background-image:
    linear-gradient(to right, rgba(19, 19, 22, 0.065) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(19, 19, 22, 0.065) 1px, transparent 1px);
  background-size: 68px 62px;
  transform: perspective(780px) rotateX(58deg) translateY(7%);
  transform-origin: 50% 100%;
  -webkit-mask-image: radial-gradient(76% 70% at 50% 52%, #000 24%, transparent 100%);
  mask-image: radial-gradient(76% 70% at 50% 52%, #000 24%, transparent 100%);
}
.dvojkavit .agency-motion-halo {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.2;
  will-change: transform, opacity;
}
.dvojkavit .agency-motion-halo-one {
  width: 78%;
  aspect-ratio: 1;
  right: -31%;
  top: 0;
  background: radial-gradient(circle, rgba(139, 55, 214, 0.4), rgba(236, 72, 153, 0) 70%);
}
.dvojkavit .agency-motion-halo-two {
  width: 86%;
  aspect-ratio: 1;
  left: -38%;
  bottom: -4%;
  background: radial-gradient(circle, rgba(213, 121, 201, 0.42), rgba(249, 168, 212, 0) 70%);
}
.dvojkavit .agency-motion-orbit {
  position: absolute;
  z-index: -1;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  border: 1px solid rgba(236, 72, 153, 0.18);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.09);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}
.dvojkavit .agency-motion-orbit::before,
.dvojkavit .agency-motion-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(19, 19, 22, 0.055);
}
.dvojkavit .agency-motion-orbit::before {
  inset: 11%;
}
.dvojkavit .agency-motion-orbit::after {
  inset: 24%;
}
.dvojkavit .agency-motion-node {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: #ec4899;
  border: 3px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 0 0 1px rgba(236, 72, 153, 0.2),
    0 8px 24px rgba(236, 72, 153, 0.25);
  will-change: transform, opacity;
}
.dvojkavit .agency-motion-node-one {
  width: 12px;
  height: 12px;
  left: 17%;
  top: 23%;
}
.dvojkavit .agency-motion-node-two {
  width: 9px;
  height: 9px;
  right: 15%;
  bottom: 25%;
}
.dvojkavit .agency-motion-node-three {
  width: 7px;
  height: 7px;
  right: 24%;
  top: 37%;
}
.dvojkavit .agency-motion-sweep {
  position: absolute;
  z-index: 3;
  inset: -16% auto -16% -40%;
  width: 40%;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 10%,
    rgba(255, 255, 255, 0.68) 48%,
    rgba(244, 114, 182, 0.12) 58%,
    transparent 90%
  );
  will-change: transform, opacity;
}
.dvojkavit .agency-motion-progress {
  position: absolute;
  z-index: 4;
  left: 8%;
  right: 8%;
  bottom: 6.4%;
}
.dvojkavit .agency-motion-progress-track {
  display: block;
  height: 1px;
  background: rgba(19, 19, 22, 0.11);
  overflow: hidden;
}
.dvojkavit .agency-motion-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f472b6, #ec4899, #f9a8d4);
  transform: scaleX(1);
  transform-origin: 0 50%;
  will-change: transform, opacity;
}
.dvojkavit .agency-motion-copy {
  position: relative;
  z-index: 2;
  width: 84%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  color: var(--ink);
  font-size: clamp(42px, 6.2vw, 82px);
  font-size: clamp(42px, 10.5cqi, 82px);
  font-weight: 610;
  line-height: 0.95;
  letter-spacing: -0.06em !important;
  opacity: 0;
  will-change: transform, opacity;
}
.dvojkavit .agency-motion-word {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: baseline;
  padding: 0.12em 0 0.16em;
  border-bottom: 1px solid rgba(19, 19, 22, 0.075);
  opacity: 0;
  transform-origin: 50% 70%;
  will-change: transform, opacity;
}
.dvojkavit .agency-motion-word:last-child {
  border-bottom: 0;
}
.dvojkavit .agency-motion-index {
  font-size: 9px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.1em !important;
  color: var(--accent-text);
  opacity: 0.55;
}
.dvojkavit .agency-motion-word-4 > span:last-child {
  color: var(--accent-text);
}
.dvojkavit .agency-motion-finale {
  position: absolute;
  z-index: 5;
  inset: 0;
  padding: 0 6%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  color: var(--ink);
  text-align: center;
  opacity: 1;
  will-change: transform, opacity;
}
.dvojkavit .agency-motion-finale-kicker {
  max-width: 92%;
  font-size: clamp(8px, 1vw, 11px);
  font-size: clamp(8px, 1.9cqi, 11px);
  font-weight: 750;
  line-height: 1.5;
  letter-spacing: 0.16em !important;
  color: rgba(19, 19, 22, 0.46);
}
.dvojkavit .agency-motion-finale-title {
  font-size: clamp(36px, 4.8vw, 68px);
  font-size: clamp(36px, 9cqi, 68px);
  font-weight: 730;
  line-height: 0.96;
  letter-spacing: -0.06em !important;
  white-space: nowrap;
}
.dvojkavit .agency-motion-finale-title strong {
  color: var(--accent-text);
  font-weight: 820;
  text-shadow: 0 14px 40px rgba(236, 72, 153, 0.24);
}
.dvojkavit .agency-motion-finale-line {
  display: block;
  width: min(260px, 64%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    #f472b6 18%,
    #ec4899 55%,
    #f9a8d4 82%,
    transparent
  );
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}
.dvojkavit
  .agency-motion-static
  :is(
    .agency-motion-halo,
    .agency-motion-progress-fill,
    .agency-motion-finale,
    .agency-motion-finale-line
  ) {
  will-change: auto;
  transform: none;
}
.dvojkavit .agency-motion-static .agency-motion-halo {
  opacity: 0.22;
}
.dvojkavit .agency-motion-static .agency-motion-progress-fill {
  opacity: 0.7;
}
@media (prefers-reduced-motion: reduce) {
  .dvojkavit .agency-motion-copy,
  .dvojkavit .agency-motion-orbit,
  .dvojkavit .agency-motion-node,
  .dvojkavit .agency-motion-sweep {
    display: none;
  }
  .dvojkavit .agency-motion-halo {
    opacity: 0.22 !important;
    transform: none !important;
  }
  .dvojkavit .agency-motion-progress-fill {
    opacity: 0.7 !important;
    transform: scaleX(1) !important;
  }
  .dvojkavit .agency-motion-finale,
  .dvojkavit .agency-motion-finale-line {
    opacity: 1 !important;
    transform: none !important;
  }
  .dvojkavit .nav-services-menu,
  .dvojkavit .nav-services-menu-head,
  .dvojkavit .nav-services-group,
  .dvojkavit .nav-services-chevron,
  .dvojkavit .logo-symbol path {
    transition: none !important;
  }
}
.dvojkavit /* ============ WORKS ============ */
  .works {
  padding: 0 0 150px;
  text-align: center;
}
.dvojkavit .works h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em !important;
  max-width: 820px;
  margin: 0 auto;
}
.dvojkavit .works h2 span {
  color: var(--accent-text);
}
.dvojkavit .filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.dvojkavit .filter button {
  height: 38px;
  padding: 0 20px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em !important;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.dvojkavit .filter button:hover {
  background: #f2f3f5;
}
.dvojkavit .filter button.on {
  background: var(--ink);
  color: #fff;
}
.dvojkavit .works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 26px;
  margin-top: 56px;
  text-align: left;
}
.dvojkavit .work-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.dvojkavit .work-label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  align-self: center;
}
.dvojkavit .work-label b {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em !important;
}
.dvojkavit .work-label span {
  margin-left: auto;
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}
.dvojkavit .work-card {
  border-radius: 22px;
  background: var(--card);
  height: 300px;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.dvojkavit .work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(19, 19, 22, 0.18);
}
.dvojkavit /* ============ FOOTER CTA ============ */
  .cta {
  position: relative;
  margin: 0 24px;
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(120% 160% at 85% 10%, rgba(255, 255, 255, 0.2), transparent 52%),
    radial-gradient(120% 160% at 12% 92%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(150deg, #db2777 0%, #ec4899 40%, #f472b6 70%, #f9a8d4 100%);
  text-align: center;
  padding: 130px 24px 120px;
}
.dvojkavit .cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 96px 82px;
  transform: perspective(800px) rotateX(30deg);
  transform-origin: 50% 120%;
  pointer-events: none;
}
.dvojkavit .cta h2 {
  position: relative;
  color: #fff;
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.025em !important;
  line-height: 1.12;
}
.dvojkavit .cta h2 em {
  font-style: normal;
  color: #fff;
  position: relative;
  white-space: nowrap;
}
.dvojkavit .cta h2 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.55);
}
.dvojkavit .cta p {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-top: 26px;
  font-weight: 500;
}
.dvojkavit .cta p b {
  color: #fff;
}
.dvojkavit .cta .pill {
  position: relative;
  margin-top: 44px;
  background: #fff;
  color: var(--ink);
}
.dvojkavit footer {
  padding: 72px 0 44px;
}
.dvojkavit .foot-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.dvojkavit .foot-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
}
.dvojkavit .foot-links a:hover {
  color: var(--ink);
}
.dvojkavit .foot-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  margin-top: 54px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}
.dvojkavit .foot-service-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.dvojkavit .foot-service-title svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.7;
  color: var(--gray);
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.dvojkavit .foot-service-title:hover svg {
  color: var(--accent-text);
  transform: translate(2px, -2px);
}
.dvojkavit .foot-service-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 19px;
  list-style: none;
}
.dvojkavit .foot-service-group li a {
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.dvojkavit .foot-service-group li a:hover {
  color: var(--ink);
}
.dvojkavit .copy {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

@media (max-width: 760px) {
  .dvojkavit .logo-image {
    width: 126px;
    height: auto;
  }
}
@media (max-width: 1000px) {
  .dvojkavit .nav-links {
    display: none;
  }
  .dvojkavit .services-grid {
    grid-template-columns: 1fr;
  }
  .dvojkavit .svc-media {
    position: relative;
    aspect-ratio: 0.73;
  }
  .dvojkavit .works-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dvojkavit .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .dvojkavit .stat:nth-child(2),
  .dvojkavit .stat:nth-child(4) {
    margin-top: 0;
  }
  .dvojkavit .showcase .frame {
    height: 520px;
  }
  .dvojkavit .foot-services {
    grid-template-columns: 1fr 1fr;
  }
}
.dvojkavit .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 28px;
  position: relative;
}
.dvojkavit .kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
}
.dvojkavit .section {
  padding: 0 0 150px;
}
.dvojkavit .section-head {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em !important;
  max-width: 760px;
}
.dvojkavit .section-head span {
  color: var(--accent-text);
}
.dvojkavit .section-head.center {
  margin: 0 auto;
  text-align: center;
}
.dvojkavit .value {
  background: var(--card);
  border-radius: 28px;
  padding: 38px 32px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease;
}
.dvojkavit .value:hover {
  transform: translateY(-6px);
}
.dvojkavit .value h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em !important;
  margin-top: auto;
}
.dvojkavit .value p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #6b6e76;
}
.dvojkavit .value.featured {
  background: linear-gradient(160deg, #f472b6 0%, #ec4899 45%, #f9a8d4 100%);
  color: #fff;
  box-shadow: 0 30px 60px -20px rgba(236, 72, 153, 0.5);
}

.dvojkavit .value.featured p {
  color: rgba(255, 255, 255, 0.85);
}
.dvojkavit .step {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 24px;
  padding: 0 0 34px;
  border: none;
  border-radius: 0;
  min-height: 0;
}
.dvojkavit .step:last-child {
  padding-bottom: 0;
}
.dvojkavit .step::before {
  counter-increment: step;
  content: '0' counter(step);
  grid-column: 1;
  grid-row: 1 / span 4;
  align-self: start;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-text);
  letter-spacing: 0.06em !important;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.dvojkavit .step::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 46px;
  bottom: -2px;
  width: 1px;
  background: var(--line);
}
.dvojkavit .step:last-child::after {
  display: none;
}
.dvojkavit .step:hover::before {
  border-color: var(--accent-text);
  background: var(--accent-2);
  color: #fff;
}
.dvojkavit .step h3 {
  grid-column: 2;
  font-size: 20px;
  font-weight: 600;
  margin: 11px 0 8px;
  letter-spacing: -0.015em !important;
}
.dvojkavit .step p {
  grid-column: 2;
  font-size: 15px;
  line-height: 1.6;
  color: #6b6e76;
  max-width: 62ch;
}
.dvojkavit .position {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px 10px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition:
    background 0.25s ease,
    padding 0.25s ease;
}
.dvojkavit .position:hover {
  background: #fafafc;
  padding-left: 22px;
}
.dvojkavit .position h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em !important;
}
.dvojkavit .position span {
  font-size: 13.5px;
  color: var(--gray);
  font-weight: 500;
}
.dvojkavit .position .arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: all 0.25s ease;
}
.dvojkavit .position:hover .arrow {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.dvojkavit /* nav active state */
  .nav-links a.active,.dvojkavit .nav-services-dropdown summary.active {
  color: var(--ink);
  position: relative;
}
.dvojkavit .nav-links a.active::after,
.dvojkavit .nav-services-dropdown summary.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f472b6, #ec4899);
}

@media (max-width: 1000px) {
  .dvojkavit .position {
    grid-template-columns: 1fr auto;
    row-gap: 6px;
  }
  .dvojkavit .position span:nth-child(3) {
    display: none;
  }
}
@media (max-width: 640px) {
  .dvojkavit .foot-links {
    width: 100%;
    gap: 16px 24px;
    flex-wrap: wrap;
  }
  .dvojkavit .foot-services {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dvojkavit .copy {
    flex-direction: column;
  }
}

.dvojkavit :is(h1, h2, h3, p, a, button, input, span, b, small, li, ul, div) {
  font-family: inherit;
}

/* reference-style screenshot mockups */
.dvojkavit .mock-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.dvojkavit .work-card .mock-artwork {
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.dvojkavit .work-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(18, 18, 22, 0) 28%, rgba(18, 18, 22, 0.78) 100%);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.dvojkavit .work-card-overlay-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}
.dvojkavit .work-card-overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  transform: translateY(7px);
  transition: transform 0.28s ease;
}
.dvojkavit .work-card-overlay-cta > span {
  font-size: 16px;
  line-height: 1;
}
.dvojkavit .work-project-link:hover .work-card-overlay,
.dvojkavit .work-project-link:focus-visible .work-card-overlay {
  opacity: 1;
}
.dvojkavit .work-project-link:hover .mock-artwork,
.dvojkavit .work-project-link:focus-visible .mock-artwork {
  transform: scale(1.025);
}
.dvojkavit .work-project-link:hover .work-card-overlay-cta,
.dvojkavit .work-project-link:focus-visible .work-card-overlay-cta {
  transform: translateY(0);
}
.dvojkavit .work-project-link:focus-visible {
  outline: none;
}
.dvojkavit .work-project-link:focus-visible .work-card {
  outline: 3px solid var(--accent-text);
  outline-offset: 4px;
}
@media (hover: none), (max-width: 760px) {
  .dvojkavit .work-card-overlay {
    padding: 16px;
    opacity: 1;
    background: linear-gradient(180deg, rgba(18, 18, 22, 0) 48%, rgba(18, 18, 22, 0.68) 100%);
  }
  .dvojkavit .work-card-overlay-kicker {
    display: none;
  }
  .dvojkavit .work-card-overlay-cta {
    min-height: 36px;
    padding: 0 13px;
    font-size: 9.5px;
    transform: none;
  }
}

/* linked service items */

/* branded reference cards */
.dvojkavit .work-card {
  position: relative;
}
.dvojkavit .ppc-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}
.dvojkavit .ppc-badge i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f472b6, #ec4899);
  display: grid;
  place-items: center;
  color: #fff;
  font-style: normal;
  font-size: 9px;
}

/* testimonial — editorial */
.dvojkavit .testimonial {
  padding: 0 0 150px;
}
.dvojkavit .tst {
  display: grid;
  grid-template-columns: minmax(150px, 0.2fr) minmax(0, 1fr);
  gap: 0 56px;
  align-items: start;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}
.dvojkavit .tst-aside {
  position: sticky;
  top: 130px;
}
.dvojkavit .tst-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(110px, 11vw, 168px);
  line-height: 0.62;
  color: #ececed;
  user-select: none;
}
.dvojkavit .tst-kicker {
  display: block;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em !important;
  text-transform: uppercase;
  color: var(--accent-text);
}
.dvojkavit .testimonial blockquote {
  font-size: clamp(24px, 2.55vw, 38px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.02em !important;
}
.dvojkavit .testimonial blockquote span {
  color: var(--accent-text);
}
.dvojkavit .testimonial .who {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.dvojkavit .testimonial .who i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em !important;
  color: #fff;
  background: linear-gradient(140deg, #f472b6, #ec4899);
}
.dvojkavit .testimonial .who-text {
  display: grid;
  gap: 2px;
  line-height: 1.3;
}
.dvojkavit .testimonial .who b {
  color: var(--ink);
  font-weight: 650;
  font-size: 15.5px;
}
.dvojkavit .testimonial .who span {
  font-size: 13.5px;
  color: var(--gray);
  font-weight: 500;
}

@media (max-width: 860px) {
  .dvojkavit .tst {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 38px;
  }
  .dvojkavit .tst-aside {
    position: static;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
  }
  .dvojkavit .tst-mark {
    font-size: 76px;
    line-height: 0.5;
  }
  .dvojkavit .tst-kicker {
    margin-top: 0;
  }
  .dvojkavit .testimonial .who {
    margin-top: 30px;
    padding-top: 20px;
  }
}

/* faq accordion — split layout */
.dvojkavit .faq-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 64px;
  align-items: start;
}
.dvojkavit .faq-intro {
  position: sticky;
  top: 130px;
}
.dvojkavit .faq-intro .section-head {
  max-width: 14ch;
}
.dvojkavit .faq-intro p {
  margin-top: 20px;
  max-width: 38ch;
  font-size: 15.5px;
  line-height: 1.65;
  color: #6b6e76;
}
.dvojkavit .faq-intro .pill {
  margin-top: 26px;
}
.dvojkavit .faq {
  margin: 0;
}
.dvojkavit .faq details {
  border-bottom: 1px solid var(--line);
}
.dvojkavit .faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 2px;
  font-size: 17.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em !important;
}
.dvojkavit .faq summary::-webkit-details-marker {
  display: none;
}
.dvojkavit .faq summary .ic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 17px;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.dvojkavit .faq details[open] summary .ic {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: rotate(45deg);
}
.dvojkavit .faq details p {
  padding: 0 2px 24px;
  font-size: 15px;
  line-height: 1.62;
  color: #6b6e76;
  max-width: 62ch;
  text-align: left;
}

/* contact page */
.dvojkavit .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 24px;
  align-items: start;
}
.dvojkavit .contact-card {
  overflow: hidden;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(19, 19, 22, 0.08);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(19, 19, 22, 0.09);
}
.dvojkavit .contact-card-intro {
  position: relative;
  overflow: hidden;
  padding: 30px 32px;
  color: #fff;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 255, 255, 0.22), transparent 44%),
    linear-gradient(150deg, #db2777 0%, #ec4899 40%, #f472b6 70%, #f9a8d4 100%);
}
.dvojkavit .contact-card-intro::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -96px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(10px);
  pointer-events: none;
}
.dvojkavit .contact-card .kicker {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}
.dvojkavit .contact-card .contact-card-heading {
  position: relative;
  z-index: 1;
  max-width: 19ch;
  margin: 20px 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 30px;
  font-weight: 550;
  line-height: 1.12;
  letter-spacing: -0.025em !important;
}
.dvojkavit .contact-card .contact-card-heading span {
  color: #fff;
}
.dvojkavit .contact-person {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}
.dvojkavit .contact-person-photo {
  position: relative;
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: #f5f5f5;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.dvojkavit .contact-person-image {
  object-fit: cover;
  object-position: center 24%;
}
.dvojkavit .contact-person-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}
.dvojkavit .contact-person-copy strong {
  font-size: 15px;
  font-weight: 650;
  color: #fff;
}
.dvojkavit .contact-person-copy span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.74);
}
.dvojkavit .contact-person-note {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.dvojkavit .contact-fields {
  padding: 28px 28px 24px;
}
.dvojkavit .f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
.dvojkavit .field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.dvojkavit .field label {
  padding-left: 1px;
  font-size: 13.5px;
  font-weight: 550;
  letter-spacing: -0.005em !important;
  color: var(--ink);
}
.dvojkavit .field input,
.dvojkavit .field select,
.dvojkavit .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  appearance: none;
  outline: none;
  background: #f7f7f9;
  border: 1px solid rgba(19, 19, 22, 0.09);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(19, 19, 22, 0.025);
  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    background 0.22s;
}
.dvojkavit .field input::placeholder,
.dvojkavit .field textarea::placeholder {
  color: #a7a9b0;
}
.dvojkavit .field select {
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233c3d42' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
}
.dvojkavit .field textarea {
  min-height: 106px;
  line-height: 1.5;
  resize: vertical;
}
.dvojkavit .field input:hover,
.dvojkavit .field select:hover,
.dvojkavit .field textarea:hover {
  border-color: rgba(19, 19, 22, 0.17);
  background: #fff;
}
/* The pink hairline + 10%-alpha ring that replaced the native outline measured 2.54:1 —
     below the 3:1 WCAG needs for a focus indicator. Keyboard users are now given a real
     outline; mouse users keep the soft styling because :focus-visible excludes them. */
.dvojkavit .field input:focus,
.dvojkavit .field select:focus,
.dvojkavit .field textarea:focus {
  border-color: rgba(236, 72, 153, 0.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}
.dvojkavit .field input:focus-visible,
.dvojkavit .field select:focus-visible,
.dvojkavit .field textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}
/* Site-wide visible focus for everything interactive */
.dvojkavit a:focus-visible,
.dvojkavit button:focus-visible,
.dvojkavit summary:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}
.dvojkavit .skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 10px 0;
}
.dvojkavit .skip-link:focus {
  left: 0;
}
.dvojkavit .contact-card .contact-submit {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 56px;
  margin-top: 2px;
  color: #fff;
  background: linear-gradient(135deg, #db2777, #ec4899);
  box-shadow: 0 14px 28px rgba(137, 65, 219, 0.22);
}
.dvojkavit .contact-card .contact-submit:hover {
  box-shadow: 0 18px 34px rgba(137, 65, 219, 0.3);
}
.dvojkavit .contact-submit svg {
  width: 17px;
  height: 17px;
  transition: transform 0.22s ease;
}
.dvojkavit .contact-submit:hover svg {
  transform: translate(2px, -2px);
}
.dvojkavit .contact-card .pill:disabled {
  opacity: 0.65;
  cursor: progress;
  transform: none;
}

/* header CTA contact modal */
@keyframes contact-modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes contact-modal-pop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* keep the header modal within the viewport — compact, centered, no page scroll */
.dvojkavit .form-status {
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
  padding: 14px 20px;
  border-radius: 14px;
}
.dvojkavit .form-status.ok {
  background: #e8f7ee;
  color: #14532d;
}
.dvojkavit .form-status.err {
  background: #fdecec;
  color: #991b1b;
}
.dvojkavit .form-status.err a {
  color: inherit;
  font-weight: 700;
}
.dvojkavit .contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.dvojkavit .contact-form-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.dvojkavit .contact-form-steps span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em !important;
  text-transform: uppercase;
  color: var(--gray);
  background: #fff;
}
.dvojkavit .contact-form-steps span.active {
  color: var(--ink);
  border-color: rgba(236, 72, 153, 0.34);
  background: rgba(244, 114, 182, 0.1);
}
.dvojkavit .contact-form-steps span.done {
  color: #166534;
  background: #edf9f1;
  border-color: #b7e4c7;
}
.dvojkavit .contact-step-helper {
  margin: -1px 0 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--gray);
}
.dvojkavit .contact-submit-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}
.dvojkavit .contact-submit-row .contact-submit {
  margin-top: 0;
}
.dvojkavit .contact-back {
  height: 56px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.dvojkavit .contact-privacy {
  margin-top: 12px;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--gray);
  text-align: center;
}
.dvojkavit .contact-privacy a {
  color: var(--ink);
  text-underline-offset: 2px;
}
@media (max-width: 640px) {
  .dvojkavit .contact-card {
    padding: 6px;
    border-radius: 26px;
  }
  .dvojkavit .contact-card-intro {
    padding: 22px 18px;
    border-radius: 21px;
  }
  .dvojkavit .contact-card .kicker {
    padding: 6px 9px;
    font-size: 9.5px;
  }
  .dvojkavit .contact-card .contact-card-heading {
    margin: 14px 0 18px;
    font-size: 23px;
    line-height: 1.14;
  }
  .dvojkavit .contact-person {
    gap: 12px;
  }
  .dvojkavit .contact-person-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
  }
  .dvojkavit .contact-person-copy strong {
    font-size: 14px;
  }
  .dvojkavit .contact-person-copy span {
    font-size: 11.5px;
  }
  .dvojkavit .contact-person-note {
    margin-top: 14px;
    padding-top: 14px;
    font-size: 12.5px;
  }
  .dvojkavit .contact-fields {
    padding: 20px 13px 15px;
  }
  .dvojkavit .field {
    gap: 6px;
    margin-bottom: 12px;
  }
  .dvojkavit .field input,
  .dvojkavit .field select,
  .dvojkavit .field textarea {
    min-height: 49px;
    padding: 11px 13px;
    font-size: 15px;
    border-radius: 12px;
  }
  .dvojkavit .field textarea {
    min-height: 96px;
  }
  .dvojkavit .contact-card .contact-submit {
    height: 52px;
  }
  .dvojkavit .contact-form-steps {
    margin-bottom: 14px;
  }
  .dvojkavit .contact-form-steps span {
    padding: 8px;
    font-size: 9.5px;
  }
  .dvojkavit .contact-submit-row {
    grid-template-columns: 1fr;
  }
  .dvojkavit .contact-back {
    height: 48px;
    order: 2;
  }
}
.dvojkavit .info-card {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 38px;
  display: flex;
  flex-direction: column;
}
.dvojkavit .info-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em !important;
  margin-bottom: 24px;
  color: var(--ink);
}
.dvojkavit .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dvojkavit .info-tile {
  display: grid;
  gap: 7px;
  padding: 20px 18px;
  border-radius: 20px;
  background: var(--card);
  text-decoration: none;
  color: var(--ink);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.dvojkavit a.info-tile:hover {
  background: #ecedef;
  transform: translateY(-2px);
}
.dvojkavit .info-tile svg {
  width: 17px;
  height: 17px;
  color: var(--accent-text);
  stroke-width: 1.7;
}
.dvojkavit .info-tile span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.11em !important;
  text-transform: uppercase;
  color: var(--gray);
}
.dvojkavit .info-tile b {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  word-break: break-word;
}
.dvojkavit a.info-tile:hover b {
  color: var(--accent-text);
}
.dvojkavit .info-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.6;
  color: #6b6e76;
}
.dvojkavit .info-note svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--gray-light);
  stroke-width: 1.7;
}
.dvojkavit .info-note b {
  color: var(--ink);
  font-weight: 650;
}

/* service detail */
/* aspect-ratio reserves the box before the image lands, so the page below it can't jump */
.dvojkavit .cs-note {
  max-width: 62ch;
  margin: 32px auto 0;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.7;
  color: #6b6e76;
}
.dvojkavit .cs-note a {
  color: var(--accent-text);
  font-weight: 650;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
/* -- narrative split (client story) -- */
/* -- spec rows (overview) -- */
/* -- editorial numbered list (obstacles) -- */
/* -- dark duo band (challenge/solution) -- */
/* -- rejected alternatives -- */
/* -- tools split list -- */
/* -- before/after rows (proof) -- */
/* -- gallery mosaic -- */
@media (max-width: 1000px) {
  .dvojkavit .contact-grid {
    grid-template-columns: 1fr;
  }
  .dvojkavit .f-row {
    grid-template-columns: 1fr;
  }
}

/* ============ CMS SERVICE DETAIL ============ */
.dvojkavit .work-project-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.dvojkavit .cms-service-contact {
  padding: 28px 0 130px;
}
.dvojkavit .cms-contact-intro {
  max-width: 64ch;
  margin: 20px auto 0;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.7;
  color: #6b6e76;
}
.dvojkavit .cms-service-contact .contact-grid {
  margin-top: 56px;
}

@keyframes cms-service-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cms-service-stage-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes cms-service-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
@keyframes cms-service-orb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-12px, 14px, 0) scale(1.08);
  }
}
@keyframes cms-service-laptop-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.018);
  }
}
@media (max-width: 700px) {
  .dvojkavit .cms-service-contact {
    padding-bottom: 100px;
  }
}

/* ============ CMS SERVICE — MINIMAL CONVERSION FLOW ============ */

.dvojkavit .cms-service-contact {
  padding: 0 0 112px;
}
.dvojkavit .cms-service-contact .contact-grid {
  margin-top: 44px;
}

@keyframes cms-native-reveal {
  from {
    opacity: 0.7;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .dvojkavit .cms-service-contact {
    padding-bottom: 76px;
  }
  .dvojkavit .cms-service-contact .contact-grid {
    margin-top: 32px;
  }
}

/* ============ MOBILE NAV ============ */
.dvojkavit .nav-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.dvojkavit .nav-burger {
  display: none;
  position: relative;
  z-index: 60;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  margin-left: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  padding: 0;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.dvojkavit .nav-burger:hover {
  border-color: var(--gray-light);
}
.dvojkavit .nav-burger span {
  position: absolute;
  left: 50%;
  width: 17px;
  height: 1.6px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
}
.dvojkavit .nav-burger span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -4px);
}
.dvojkavit .nav-burger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, 3px);
}
.dvojkavit .nav-burger.on span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}
.dvojkavit .nav-burger.on span:nth-child(2) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.dvojkavit .mobile-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h, 109px);
  bottom: 0;
  z-index: 50;
  background: radial-gradient(120% 60% at 88% 0, rgba(244, 114, 182, 0.1), transparent 46%), #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.dvojkavit .mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dvojkavit .mobile-nav[hidden] {
  display: none;
}
.dvojkavit .mobile-nav-inner {
  padding: 26px 24px 44px;
  max-width: 620px;
  margin: 0 auto;
}
.dvojkavit .mobile-nav-kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em !important;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 14px;
}
.dvojkavit .mobile-nav-kicker + .mobile-nav-links,
.dvojkavit .mobile-nav-services + .mobile-nav-kicker {
  margin-top: 30px;
}

.dvojkavit .mobile-nav-group {
  border-bottom: 1px solid var(--line);
}
.dvojkavit .mobile-nav-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  padding: 16px 2px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em !important;
  color: var(--ink);
}
.dvojkavit .mobile-nav-group summary::-webkit-details-marker {
  display: none;
}
.dvojkavit .mobile-nav-group summary i {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.dvojkavit .mobile-nav-group summary i::before,
.dvojkavit .mobile-nav-group summary i::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--accent-2);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.dvojkavit .mobile-nav-group summary i::before {
  width: 15px;
  height: 1.6px;
}
.dvojkavit .mobile-nav-group summary i::after {
  width: 1.6px;
  height: 15px;
}
.dvojkavit .mobile-nav-group[open] summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.dvojkavit .mobile-nav-group ul {
  list-style: none;
  padding: 0 2px 16px;
  display: grid;
  gap: 1px;
}
.dvojkavit .mobile-nav-group li a {
  display: block;
  padding: 9px 0;
  font-size: 14.5px;
  font-weight: 500;
  color: #747780;
  text-decoration: none;
  transition: color 0.2s ease;
}
.dvojkavit .mobile-nav-group li a:hover {
  color: var(--accent-text);
}

.dvojkavit .mobile-nav-links {
  list-style: none;
  display: grid;
}
.dvojkavit .mobile-nav-links li {
  border-bottom: 1px solid var(--line);
}
.dvojkavit .mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 2px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em !important;
  color: var(--ink);
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding 0.25s ease;
}
.dvojkavit .mobile-nav-links a:hover {
  padding-left: 8px;
}
.dvojkavit .mobile-nav-links a.active {
  color: var(--accent-text);
}
.dvojkavit .mobile-nav-links a svg {
  width: 16px;
  height: 16px;
  color: var(--gray-light);
  stroke-width: 1.8;
}
.dvojkavit .mobile-nav-links a:hover svg {
  color: var(--accent-text);
}

.dvojkavit .mobile-nav-foot {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 9px;
  justify-items: start;
}
.dvojkavit .mobile-nav-foot a:not(.pill) {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}
.dvojkavit .mobile-nav-foot .pill {
  margin-top: 14px;
}

@media (max-width: 1000px) {
  .dvojkavit .nav-burger {
    display: block;
  }
}
@media (max-width: 520px) {
  .dvojkavit .hero-sub {
    max-width: 100%;
    padding-inline: 4px;
    overflow-wrap: anywhere;
    line-height: 1.5;
  }
  .dvojkavit .nav-actions > .pill-dark {
    display: none;
  }
  .dvojkavit .nav .pill.pill-dark {
    height: 42px;
    padding: 0 18px;
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dvojkavit .mobile-nav {
    transition: none;
  }
  .dvojkavit .nav-burger span {
    transition: none;
  }
}

@media (max-width: 1000px) {
  .dvojkavit .faq-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .dvojkavit .faq-intro {
    position: static;
  }
  .dvojkavit .faq-intro .section-head {
    max-width: none;
  }
  .dvojkavit .faq-intro p {
    max-width: 60ch;
  }
}

/* ============ WORKS RAIL ============ */
.dvojkavit .works.works-rail-section {
  text-align: left;
  padding-bottom: 150px;
}
.dvojkavit .works-rail-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.dvojkavit .works.works-rail-section h2 {
  margin: 0;
  max-width: 22ch;
  text-align: left;
}
.dvojkavit .works-rail-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.dvojkavit .works-rail-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.dvojkavit .works-rail-link:hover {
  color: var(--accent-text);
}
.dvojkavit .works-rail-link:hover svg {
  transform: translate(2px, -2px);
}
.dvojkavit .works-rail-nav {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.dvojkavit .works-rail-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}
.dvojkavit .works-rail-nav button svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}
.dvojkavit .works-rail-nav button:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.dvojkavit .works-rail-nav button:disabled {
  opacity: 0.32;
  cursor: default;
}

.dvojkavit .works-track {
  display: flex;
  gap: 26px;
  margin-top: 44px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  /* bleed past the wrap so the rail runs to the viewport edge */
  margin-right: calc((100vw - min(100vw, var(--w))) / -2 - 24px);
  padding-right: 24px;
}
.dvojkavit .works-track::-webkit-scrollbar {
  display: none;
}
.dvojkavit .work-slide {
  flex: 0 0 clamp(280px, 30vw, 400px);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}
.dvojkavit .work-slide .work-card {
  height: 270px;
  margin-bottom: 16px;
}
.dvojkavit .work-slide .work-label {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .dvojkavit .works-rail-head {
    align-items: flex-start;
  }
  .dvojkavit .works-rail-nav {
    display: none;
  }
  .dvojkavit .works-track {
    margin-top: 32px;
  }
  .dvojkavit .work-slide {
    flex: 0 0 82%;
  }
  .dvojkavit .work-slide .work-card {
    height: 220px;
  }
}

/* ============ SERVICES ACCORDION ============ */
.dvojkavit .svc-acc {
  border-bottom: 1px solid var(--line);
}
.dvojkavit .svc-acc-item {
  border-top: 1px solid var(--line);
}
.dvojkavit .svc-acc-item:first-child {
  border-top: none;
}
.dvojkavit .svc-acc-item summary {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 26px 2px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
  list-style: none;
}
.dvojkavit .svc-acc-item summary::-webkit-details-marker {
  display: none;
}
.dvojkavit .svc-acc-num {
  flex: 0 0 auto;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em !important;
  color: var(--gray);
  transition: color 0.25s ease;
}
.dvojkavit .svc-acc-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em !important;
  transition: color 0.25s ease;
}
.dvojkavit .svc-acc-item[open] .svc-acc-num {
  color: var(--accent-text);
}
.dvojkavit .svc-acc-item summary:hover .svc-acc-title {
  color: var(--accent-text);
}
.dvojkavit .svc-acc-ic {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.dvojkavit .svc-acc-ic::before,
.dvojkavit .svc-acc-ic::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease,
    background 0.25s ease;
}
.dvojkavit .svc-acc-ic::before {
  width: 13px;
  height: 1.5px;
}
.dvojkavit .svc-acc-ic::after {
  width: 1.5px;
  height: 13px;
}
.dvojkavit .svc-acc-item[open] .svc-acc-ic {
  background: var(--ink);
  border-color: var(--ink);
}
.dvojkavit .svc-acc-item[open] .svc-acc-ic::before,
.dvojkavit .svc-acc-item[open] .svc-acc-ic::after {
  background: #fff;
}
.dvojkavit .svc-acc-item[open] .svc-acc-ic::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.dvojkavit .svc-acc-panel {
  padding: 0 2px 28px 47px;
}
.dvojkavit .svc-acc-panel p {
  font-size: 16px;
  line-height: 1.62;
  color: #6b6e76;
  max-width: 52ch;
}
.dvojkavit .svc-acc-panel .svc-tags {
  margin-top: 20px;
}
.dvojkavit .svc-acc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.dvojkavit .svc-acc-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.dvojkavit .svc-acc-link:hover {
  color: var(--accent-text);
}
.dvojkavit .svc-acc-link:hover svg {
  transform: translate(2px, -2px);
}

@media (max-width: 640px) {
  .dvojkavit .svc-acc-item summary {
    gap: 13px;
    padding: 21px 2px;
  }
  .dvojkavit .svc-acc-panel {
    padding-left: 0;
  }
  .dvojkavit .step {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 16px;
    padding-bottom: 28px;
  }
  .dvojkavit .step::before {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 11.5px;
  }
  .dvojkavit .step::after {
    left: 19px;
    top: 38px;
  }
  .dvojkavit .step h3 {
    margin-top: 8px;
    font-size: 18px;
  }
  .dvojkavit .step p {
    font-size: 14.5px;
  }
}

/* ============ FOOTER (brand column + link columns) ============ */
.dvojkavit .foot-top {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 2.5fr);
  gap: 64px;
  align-items: start;
}
.dvojkavit .foot-brand > p {
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--gray);
  max-width: 26ch;
}
.dvojkavit .foot-contact {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-top: 26px;
}
.dvojkavit .foot-contact a,
.dvojkavit .foot-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 550;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.dvojkavit .foot-contact svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--gray-light);
  stroke-width: 1.7;
  transition: color 0.2s ease;
}
.dvojkavit .foot-contact span {
  color: var(--gray);
}
.dvojkavit .foot-contact a:hover {
  color: var(--accent-text);
}
.dvojkavit .foot-contact a:hover svg {
  color: var(--accent-text);
}
.dvojkavit .foot-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.dvojkavit .copy {
  align-items: center;
}
.dvojkavit .foot-legal-identity {
  display: grid;
  max-width: 640px;
  gap: 6px;
}
.dvojkavit .foot-legal-identity small {
  font-size: 11px;
  line-height: 1.55;
  color: var(--gray);
}
.dvojkavit .foot-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

@media (max-width: 1000px) {
  .dvojkavit .foot-top {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .dvojkavit .foot-services {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .dvojkavit .foot-services {
    grid-template-columns: 1fr;
  }
  .dvojkavit .foot-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .dvojkavit .info-card {
    padding: 26px;
  }
  .dvojkavit .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dvojkavit .mission {
    padding: 80px 0 90px;
  }
  .dvojkavit .mission-claim {
    max-width: none;
    line-height: 1.28;
  }
  .dvojkavit .mission .pill {
    margin-top: 34px;
  }
}

/* ============ HERO — ROTATING WORD (danielpetho/text-rotate) ============ */
.dvojkavit .hero-rotate-line {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.26em;
  color: var(--ink);
}
/* Grid stack: the generated sizer holds the width of the longest variant open and the
     animated line overlays it in the same cell, so rotating the word never re-wraps the
     headline (that re-wrap was 0.17 CLS on the service pages). Generated content keeps
     the layout helper out of the heading's DOM text. */
.dvojkavit .tr-root {
  display: inline-grid;
  justify-items: center;
  align-items: baseline;
  position: relative;
  white-space: pre-wrap;
  vertical-align: baseline;
}
.dvojkavit .tr-root::before {
  content: attr(data-sizer);
  grid-area: 1/1;
  visibility: hidden;
  white-space: pre;
}
.dvojkavit .tr-line {
  grid-area: 1/1;
  display: grid;
  justify-items: center;
}
.dvojkavit .tr-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.dvojkavit .tr-option {
  grid-area: 1/1;
  opacity: 0;
  transform: translateY(0.55em);
  white-space: pre;
  animation-duration: var(--tr-duration);
  animation-delay: var(--tr-delay);
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.dvojkavit .tr-count-2 .tr-option {
  animation-name: tr-fade-2;
}
.dvojkavit .tr-count-3 .tr-option {
  animation-name: tr-fade-3;
}
.dvojkavit .tr-count-4 .tr-option {
  animation-name: tr-fade-4;
}
.dvojkavit .tr-count-5 .tr-option {
  animation-name: tr-fade-5;
}
@keyframes tr-fade-2 {
  0%,
  42% {
    opacity: 1;
    transform: none;
  }
  50%,
  100% {
    opacity: 0;
    transform: translateY(-0.55em);
  }
}
@keyframes tr-fade-3 {
  0%,
  27% {
    opacity: 1;
    transform: none;
  }
  33.333%,
  100% {
    opacity: 0;
    transform: translateY(-0.55em);
  }
}
@keyframes tr-fade-4 {
  0%,
  20% {
    opacity: 1;
    transform: none;
  }
  25%,
  100% {
    opacity: 0;
    transform: translateY(-0.55em);
  }
}
@keyframes tr-fade-5 {
  0%,
  16% {
    opacity: 1;
    transform: none;
  }
  20%,
  100% {
    opacity: 0;
    transform: translateY(-0.55em);
  }
}
/* the accent pill the word lives in — clipped so characters slide in and out of it */
.dvojkavit .hero-rotate {
  overflow: hidden;
  justify-content: center;
  padding: 0.06em 0.3em 0.16em;
  border-radius: 0.22em;
  background: linear-gradient(150deg, #db2777 0%, #ec4899 40%, #f472b6 70%, #f9a8d4 100%);
  color: #fff;
  box-shadow: 0 18px 40px -22px rgba(236, 72, 153, 0.85);
}
@media (max-width: 640px) {
  .dvojkavit .hero-rotate {
    padding: 0.04em 0.26em 0.14em;
    border-radius: 0.18em;
  }
}

/* ============ SHOWCASE — PHONE MOCKUP (mobile only) ============ */
.dvojkavit .showcase-phone {
  display: none;
}

/* ============ MOBILE POLISH (homepage) ============ */
@media (max-width: 760px) {
  /* Keep the actual project video visible on mobile as well. */
  .dvojkavit .showcase .laptop {
    display: block;
    width: min(680px, 92%);
    margin-top: 70px;
  }
  .dvojkavit .showcase-phone {
    display: none;
  }
  .dvojkavit .showcase .frame {
    height: 470px;
    border-radius: 30px;
  }
  .dvojkavit .cs-note {
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.62;
  }

  /* stats: a tight 2×2 grid of true squares */
  .dvojkavit .stats {
    padding: 28px 0 96px;
  }
  .dvojkavit .stats-row {
    gap: 14px;
  }
  .dvojkavit .stat {
    aspect-ratio: 1;
    min-height: 0;
    padding: 18px 14px;
    border-radius: 22px;
    gap: 8px;
  }
  .dvojkavit .stat b {
    font-size: 40px;
  }
  .dvojkavit .stat span {
    font-size: 13px;
    line-height: 1.4;
  }
  .dvojkavit .marquee-track,
  .dvojkavit .stat {
    animation: none;
  }
  .dvojkavit .marquee {
    overflow-x: auto;
  }
}

/* Defer layout and paint for one-screen sections until they approach the viewport. */
.dvojkavit main > section:not(.hero),
.dvojkavit footer {
  content-visibility: auto;
  contain-intrinsic-block-size: auto 900px;
}

@media (prefers-reduced-motion: reduce) {
  .dvojkavit .tr-option {
    animation: none;
    opacity: 0;
    transform: none;
  }
  .dvojkavit .tr-option:first-child {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  /* hero CTAs: bigger, full-width, stacked */
  .dvojkavit .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
  }
  .dvojkavit .hero-cta .pill {
    width: 100%;
    max-width: 340px;
    height: 56px;
    padding: 0 30px;
    font-size: 13.5px;
  }
}

/* ============ SECTION CTA ============ */
/* Closing "next step" of every section — same button, same wording, same target. */
.dvojkavit .section-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 40px;
}
/* centred variant stacks the hint under the button, so the button stays on the axis */
.dvojkavit .section-cta-btn {
  gap: 9px;
}
.dvojkavit .section-cta-btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
  transition: transform 0.25s ease;
}
.dvojkavit .section-cta-btn:hover svg {
  transform: translate(2px, -2px);
}
.dvojkavit .section-cta-hint {
  max-width: 44ch;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray);
}
/* on dark blocks (mission, process-complex, works) the default ink pill disappears */

@media (max-width: 640px) {
  .dvojkavit .section-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 30px;
  }
  /* secondary pills sit in the same row on desktop — keep them the same size stacked */
  .dvojkavit .section-cta .pill {
    width: 100%;
    height: 54px;
    font-size: 12.5px;
    padding: 0 20px;
  }
  .dvojkavit .section-cta-hint {
    max-width: none;
    text-align: center;
    font-size: 12.5px;
  }
}

/* ============ SERVICE COMPARISON ============ */

/* --- ≥901px: semantic table --- */
/* the generic `colhead span` rule (tag line) would otherwise flatten the badge to a
     full-width grey block — it is more specific than .svc-compare-badge on its own */

/* --- ≤900px: one card per option, swipeable --- */

/* ============ SECTION CTA — kontextové úpravy ============ */
/* sekce mají vlastní margin na .pill (mission, faq); uvnitř CTA řádku ho ruší */
.dvojkavit .section-cta .pill {
  margin-top: 0;
}
.dvojkavit .faq-intro .section-cta {
  margin-top: 26px;
}
.dvojkavit .mission .section-cta {
  margin-top: 44px;
}
/* CTA řádek pod mřížkou projektů: primární akce + odkaz na všechny reference */

@media (max-width: 640px) {
  .dvojkavit .mission .section-cta {
    margin-top: 34px;
  }
}

/* ============ LEGAL PAGES + CONSENT LINKS ============ */
.dvojkavit .foot-cookie-settings {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s ease;
}
.dvojkavit .foot-cookie-settings:hover {
  color: var(--ink);
}
