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

    :root {
      --bg: #0e0e0e;
      --surface: #161616;
      --surface-raised: #1c1c1c;
      --surface-border: #2a2a2a;
      --text: #f2efe8;
      --text-muted: #c5c1b8;
      --text-dim: #9a958c;
      --accent: #00e676;
      --accent-hover: #00c853;
      --accent-dim: rgba(0, 230, 118, 0.12);
      --text-btn-hover: #8884ff;
      --max-width: 1180px;
      --heading-size: clamp(2.2rem, 4vw, 3rem);
    }

    html { scroll-behavior: auto; }

    html.lenis,
    html.lenis body {
      height: auto;
    }

    .lenis.lenis-smooth {
      scroll-behavior: auto !important;
    }

    .lenis.lenis-stopped {
      overflow: hidden;
    }

    body {
      font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.65;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }

    h1, h2, h3, h4, h5, .serif {
      font-family: 'IBM Plex Sans', sans-serif;
      font-weight: 600;
    }

    h1, h2,
    .section-title,
    .portfolio-header h2,
    .about-intro h2,
    .services-header h2,
    .sectors-header h2,
    #atsakinga-veikla h2,
    #komanda h2 {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: var(--heading-size);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.015em;
    }

    h3, h4 {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: clamp(1.45rem, 2.4vw, 1.85rem);
      font-weight: 600;
      line-height: 1.25;
      letter-spacing: -0.01em;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ── Header ── */
    .header {
      --iseg-logo-h: 28px;
      --iseg-logo-h-scrolled: 32px;
      --iseg-header-pad: 20px;
      --iseg-header-pad-scrolled: 24px;
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: var(--iseg-header-pad) 0;
      border-bottom: 1px solid transparent;
      background: transparent;
      transition:
        background 0.55s ease,
        border-color 0.55s ease,
        padding 0.45s ease,
        box-shadow 0.55s ease,
        backdrop-filter 0.55s ease;
    }

    .header::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: 0;
      pointer-events: none;
      background:
        linear-gradient(
          120deg,
          rgba(136, 132, 255, 0.08) 0%,
          rgba(4, 4, 6, 0.97) 40%,
          rgba(136, 132, 255, 0.06) 100%
        );
      backdrop-filter: blur(0px) saturate(120%);
      -webkit-backdrop-filter: blur(0px) saturate(120%);
      transition:
        opacity 0.55s ease,
        backdrop-filter 0.55s ease,
        -webkit-backdrop-filter 0.55s ease;
    }

    .header::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      opacity: 0;
      pointer-events: none;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(136, 132, 255, 0.12) 20%,
        rgba(136, 132, 255, 0.55) 50%,
        rgba(136, 132, 255, 0.12) 80%,
        transparent 100%
      );
      background-size: 220% 100%;
      transition: opacity 0.55s ease;
    }

    .header.scrolled {
      padding: var(--iseg-header-pad-scrolled) 0;
      background: rgba(4, 4, 6, 0.94);
      border-bottom-color: rgba(136, 132, 255, 0.14);
      box-shadow: none;
    }

    .header.scrolled .logo img {
      height: var(--iseg-logo-h-scrolled);
    }

    .header.scrolled .nav a {
      font-size: 0.9rem;
    }

    .header.scrolled::before {
      opacity: 1;
      backdrop-filter: blur(20px) saturate(140%);
      -webkit-backdrop-filter: blur(20px) saturate(140%);
      animation: headerBlueWash 7s ease-in-out infinite;
    }

    .header.scrolled::after {
      opacity: 1;
      animation: headerBlueLine 3.8s ease-in-out infinite;
    }

    @keyframes headerBlueWash {
      0%, 100% {
        background:
          linear-gradient(
            120deg,
            rgba(136, 132, 255, 0.1) 0%,
            rgba(3, 3, 5, 0.98) 40%,
            rgba(136, 132, 255, 0.06) 100%
          );
      }
      50% {
        background:
          linear-gradient(
            120deg,
            rgba(136, 132, 255, 0.06) 0%,
            rgba(2, 2, 4, 0.99) 48%,
            rgba(136, 132, 255, 0.12) 100%
          );
      }
    }

    @keyframes headerBlueLine {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    @media (prefers-reduced-motion: reduce) {
      .header.scrolled::before,
      .header.scrolled::after {
        animation: none;
      }
    }

    .header-inner {
      position: relative;
      z-index: 1;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      line-height: 0;
    }

    .logo img {
      height: var(--iseg-logo-h, 28px);
      width: auto;
      max-width: var(--iseg-logo-max-w, none);
      display: block;
      transition: height 0.45s ease;
    }


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

    .nav a {
      color: var(--text);
      font-size: 0.82rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      transition: color 0.25s, font-size 0.45s ease;
    }

    .nav a:hover,
    .nav a:focus-visible {
      color: #8884ff;
    }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      margin-right: -8px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg);
    }

    .nav-cta {
      color: var(--text) !important;
      font-weight: 500;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible {
      color: #8884ff !important;
    }

    /* ── Hero ── */
    .hero {
      position: relative;
      min-height: 68vh;
      min-height: 68dvh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
      background: var(--bg);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-media {
      position: absolute;
      top: -8%;
      left: -8%;
      width: 116%;
      height: 116%;
      max-width: none;
      max-height: none;
      object-fit: cover;
      object-position: center 40%;
      will-change: transform;
      transform: translate3d(0, 0, 0);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(14, 14, 14, 0.82) 0%, rgba(14, 14, 14, 0.55) 48%, rgba(14, 14, 14, 0.45) 100%),
        linear-gradient(180deg, rgba(14, 14, 14, 0.55) 0%, rgba(14, 14, 14, 0.35) 45%, rgba(14, 14, 14, 0.75) 100%);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: clamp(96px, 11vh, 112px) 40px clamp(80px, 10vh, 96px);
      width: 100%;
      display: grid;
      grid-template-columns: 1fr minmax(240px, 1fr);
      gap: clamp(56px, 8vw, 112px);
      align-items: center;
    }

    .hero-content {
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      max-width: 38rem;
      padding-right: clamp(12px, 2vw, 28px);
    }

    .hero-mark {
      --mark: rgba(242, 239, 232, 0.88);
      --mark-soft: rgba(242, 239, 232, 0.28);
      position: relative;
      width: 100%;
      max-width: 420px;
      justify-self: end;
      flex-shrink: 0;
      animation: heroMarkIn 1.2s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .hero-mark::before {
      content: '';
      position: absolute;
      inset: -18%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(242, 239, 232, 0.12) 0%, transparent 68%);
      animation: markGlow 7s ease-in-out infinite;
      pointer-events: none;
    }

    .hero-mark svg {
      position: relative;
      width: 100%;
      height: auto;
      display: block;
      overflow: visible;
      animation: markFloat 8s ease-in-out infinite;
    }

    .hero-mark .mark-frame {
      stroke: var(--mark-soft);
      stroke-width: 3.5;
      fill: none;
      stroke-linecap: butt;
      stroke-linejoin: miter;
      animation: markBreathe 7s ease-in-out infinite;
    }

    .hero-mark .mark-diag {
      stroke: rgba(242, 239, 232, 0.22);
      stroke-width: 3.5;
      fill: none;
      stroke-linecap: butt;
      animation: markBreathe 7s 0.6s ease-in-out infinite;
    }

    .hero-mark .mark-dot {
      fill: var(--mark);
      transform-box: fill-box;
      transform-origin: center;
      opacity: 0.22;
      animation: markPulse 6s ease-in-out infinite;
    }

    .hero-mark .mark-dot-1 { animation-delay: 0s; }
    .hero-mark .mark-dot-2 { animation-delay: 0.75s; }
    .hero-mark .mark-dot-5 { animation-delay: 1.5s; }
    .hero-mark .mark-dot-4 { animation-delay: 2.25s; }
    .hero-mark .mark-dot-3 { animation-delay: 3s; }

    @keyframes heroMarkIn {
      from { opacity: 0; transform: scale(0.92) translateX(12px); }
      to { opacity: 1; transform: scale(1) translateX(0); }
    }

    @keyframes markFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes markGlow {
      0%, 100% { opacity: 0.45; transform: scale(0.96); }
      50% { opacity: 1; transform: scale(1.04); }
    }

    @keyframes markBreathe {
      0%, 100% { opacity: 0.55; }
      50% { opacity: 1; }
    }

    @keyframes markPulse {
      0%, 100% { opacity: 0.18; transform: scale(0.92); }
      12% { opacity: 1; transform: scale(1.12); }
      28% { opacity: 0.45; transform: scale(1); }
      50% { opacity: 0.22; transform: scale(0.94); }
    }

    .hero-eyebrow {
      font-size: 0.92rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(242, 239, 232, 0.7);
      margin-bottom: clamp(20px, 2.5vw, 28px);
      font-weight: 500;
      text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
      animation: heroFadeUp 0.9s ease both;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 5.2vw, 3.75rem);
      line-height: 1.08;
      max-width: 22ch;
      margin-bottom: clamp(28px, 3.5vw, 40px);
      letter-spacing: -0.02em;
      color: var(--text);
      text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
      animation: heroFadeUp 0.9s 0.12s ease both;
    }

    .hero-sub {
      color: rgba(242, 239, 232, 0.92);
      font-size: 1.2rem;
      max-width: 34rem;
      margin-bottom: clamp(36px, 4.5vw, 52px);
      font-weight: 400;
      line-height: 1.65;
      text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
      animation: heroFadeUp 0.9s 0.22s ease both;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text);
      border: 1px solid rgba(242, 239, 232, 0.55);
      padding: 14px 26px;
      background: rgba(14, 14, 14, 0.35);
      backdrop-filter: blur(8px);
      transition: background 0.3s, color 0.3s, border-color 0.3s;
      animation: heroFadeUp 0.9s 0.32s ease both;
    }

    .hero-cta:hover {
      background: rgba(14, 14, 14, 0.45);
      border-color: #8884ff;
      color: #8884ff;
    }

    .hero-cta .arrow {
      transition: transform 0.25s;
    }

    .hero-cta:hover .arrow { transform: translateX(5px); }

    .hero-scroll {
      position: absolute;
      bottom: 24px;
      left: 50%;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      margin-left: -19px;
      color: rgba(242, 239, 232, 0.7);
      border: 1px solid rgba(242, 239, 232, 0.28);
      border-radius: 50%;
      background: rgba(14, 14, 14, 0.25);
      backdrop-filter: blur(8px);
      transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
      animation: heroFadeUp 0.9s 0.45s ease both;
    }

    .hero-scroll:hover,
    .hero-scroll:focus-visible {
      color: var(--text-btn-hover);
      border-color: var(--text-btn-hover);
      background: rgba(255, 255, 255, 0.08);
      outline: none;
      transform: translateY(2px);
    }

    .hero-scroll svg {
      width: 16px;
      height: 16px;
      animation: heroScrollBounce 1.8s ease-in-out infinite;
    }

    @keyframes heroScrollBounce {
      0%, 100% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(4px); opacity: 0.65; }
    }

    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-eyebrow,
      .hero h1,
      .hero-sub,
      .hero-cta,
      .hero-scroll,
      .hero-mark,
      .hero-mark svg,
      .hero-mark::before { animation: none; }
      .hero-scroll svg { animation: none; }
      .hero-mark .mark-frame,
      .hero-mark .mark-diag,
      .hero-mark .mark-dot { animation: none; opacity: 0.7; transform: none; }

      .hero-media {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        transform: none;
      }
    }

    /* ── About ── */
    .infographic-section {
      background: #ffffff;
      color: #161616;
      padding: clamp(88px, 10vw, 120px) 0;
    }

    .about-intro {
      margin-bottom: clamp(28px, 3.5vw, 40px);
    }

    .about-copy {
      max-width: none;
      padding-top: 8px;
    }

    .about-eyebrow {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #9a9690;
      margin-bottom: 18px;
      font-weight: 500;
    }

    .about-intro h2 {
      color: #161616;
      margin-bottom: 22px;
    }

    .about-copy > p {
      font-size: 1.05rem;
      color: #4f4c48;
      line-height: 1.75;
      font-weight: 300;
      max-width: none;
    }

    .about-copy > p strong {
      font-weight: 600;
      color: #161616;
    }

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

    .about-pillar {
      position: relative;
      padding: 28px 24px 32px;
      border: 1px solid rgba(22, 22, 22, 0.1);
      background: #fff;
      min-width: 0;
      transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        background 0.35s ease;
    }

    .about-pillar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: #8884ff;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .about-pillar:hover {
      transform: translateY(-4px);
      border-color: rgba(136, 132, 255, 0.4);
      background: #fcfcfb;
    }

    .about-pillar:hover::before {
      transform: scaleX(1);
    }

    .about-pillar-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }

    .about-pillar-icon {
      position: relative;
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      overflow: visible;
    }

    .about-pillar-orbit {
      position: absolute;
      inset: 0;
      width: 44px;
      height: 44px;
      overflow: visible;
      pointer-events: none;
    }

    .about-pillar-ring {
      fill: none;
      stroke: rgba(22, 22, 22, 0.16);
      stroke-width: 1;
      transition: stroke 0.35s ease;
    }

    .about-pillar-dot {
      fill: #8884ff;
    }

    .about-pillar-spin {
      transform-box: view-box;
      transform-origin: 50% 50%;
      animation: aboutIconOrbit 6.5s linear infinite;
    }

    .about-pillar:nth-child(2) .about-pillar-spin { animation-delay: -2.16s; }
    .about-pillar:nth-child(3) .about-pillar-spin { animation-delay: -4.33s; }

    .about-pillar-icon > svg:not(.about-pillar-orbit) {
      width: 18px;
      height: 18px;
      color: #161616;
      position: relative;
      z-index: 1;
      transition: color 0.35s ease;
    }

    .about-pillar:hover .about-pillar-ring {
      stroke: #8884ff;
    }

    .about-pillar:hover .about-pillar-icon > svg:not(.about-pillar-orbit) {
      color: #8884ff;
    }

    .about-pillar-title {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: clamp(1.05rem, 1.8vw, 1.25rem);
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.3;
      color: #161616;
      margin: 0;
    }

    .about-pillar > p {
      font-size: 0.98rem;
      color: #4f4c48;
      line-height: 1.75;
      font-weight: 300;
      margin: 0;
    }

    @keyframes aboutIconOrbit {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @media (prefers-reduced-motion: reduce) {
      .about-pillar,
      .about-pillar::before,
      .about-pillar-ring,
      .about-pillar-icon > svg:not(.about-pillar-orbit) {
        transition: none;
      }

      .about-pillar:hover {
        transform: none;
      }

      .about-pillar-dot {
        animation: none;
      }

      .about-pillar-spin {
        animation: none;
      }
    }

    /* ── Sectors ── */
    .sectors-section {
      background: #f4f4f2;
      color: #161616;
      padding: clamp(88px, 10vw, 120px) 0;
    }

    .sectors-header {
      margin-bottom: clamp(28px, 3.5vw, 40px);
      padding-top: 8px;
    }

    .sectors-header h2 {
      color: #161616;
      margin-bottom: 0;
    }

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

    .sector-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 28px 24px 32px;
      border: 1px solid rgba(22, 22, 22, 0.1);
      background: #fff;
      min-width: 0;
      min-height: 220px;
      overflow: hidden;
      transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        background 0.35s ease;
    }

    .sector-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: #8884ff;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .sector-card:hover {
      transform: translateY(-4px);
      border-color: rgba(136, 132, 255, 0.4);
      background: #fcfcfb;
    }

    .sector-card:hover::before {
      transform: scaleX(1);
    }

    .sector-head {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 16px;
    }

    .sector-icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      border: 1px solid rgba(22, 22, 22, 0.16);
      border-radius: 50%;
      transition:
        border-color 0.35s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .sector-icon svg {
      width: 18px;
      height: 18px;
      color: #161616;
      transition: color 0.35s ease;
    }

    .sector-card:hover .sector-icon {
      border-color: #8884ff;
      transform: scale(1.06);
    }

    .sector-card:hover .sector-icon svg {
      color: #8884ff;
    }

    .sector-title {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: clamp(1.18rem, 2vw, 1.4rem);
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.3;
      color: #161616;
      margin: 0;
    }

    .sector-card > p {
      font-size: 0.98rem;
      color: #4f4c48;
      line-height: 1.75;
      font-weight: 300;
      margin: auto 0 0;
    }

    @media (prefers-reduced-motion: reduce) {
      .sector-card,
      .sector-card::before,
      .sector-icon,
      .sector-icon svg {
        transition: none;
      }

      .sector-card:hover {
        transform: none;
      }

      .sector-card:hover .sector-icon {
        transform: none;
      }
    }

    /* ── Highlights ── */
    .bold-stats {
      padding: clamp(96px, 11vw, 130px) 0;
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    .bold-stats-header {
      max-width: 620px;
      margin-bottom: 56px;
      position: relative;
    }

    .bold-stats-eyebrow {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 18px;
      font-weight: 500;
    }

    .bold-stats-header h2 {
      margin-bottom: 0;
    }

    .bold-stat-list {
      list-style: none;
      position: relative;
      border-top: 1px solid var(--surface-border);
    }

    .bold-stat-item {
      border-bottom: 1px solid var(--surface-border);
    }

    .bold-stat-link {
      display: grid;
      grid-template-columns: 56px 1fr auto;
      gap: 28px;
      align-items: center;
      padding: 32px 8px;
      list-style: none;
      cursor: pointer;
      width: 100%;
      transition: background 0.3s ease, padding 0.3s ease;
    }

    .bold-stat-link::-webkit-details-marker {
      display: none;
    }

    .bold-stat-link:hover,
    .bold-stat-link:focus-visible,
    .bold-stat-acc[open] .bold-stat-link {
      background: rgba(255, 255, 255, 0.03);
      outline: none;
    }

    .bold-stat-index {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      color: var(--text-dim);
      font-weight: 500;
    }

    .bold-stat-text {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: clamp(1.25rem, 2.5vw, 1.85rem);
      line-height: 1.35;
      color: var(--text);
      font-weight: 500;
      letter-spacing: -0.01em;
    }

    .bold-stat-text span {
      color: var(--text);
    }

    .bold-stat-more {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.84rem;
      font-weight: 500;
      color: var(--text-muted);
      white-space: nowrap;
      letter-spacing: 0.01em;
      transition: gap 0.25s ease, color 0.25s;
    }

    .bold-stat-more .arrow {
      display: inline-block;
      transition: transform 0.25s ease;
    }

    .bold-stat-link:hover .bold-stat-more {
      color: var(--text-btn-hover);
      gap: 14px;
    }

    .bold-stat-link:hover .bold-stat-more .arrow {
      transform: translateY(3px);
    }

    .bold-stat-acc[open] .bold-stat-more {
      color: var(--text-btn-hover);
    }

    .bold-stat-acc[open] .bold-stat-more .arrow,
    .bold-stat-acc[open] .bold-stat-link:hover .bold-stat-more .arrow {
      transform: rotate(180deg);
    }

    .bold-stat-panel {
      padding: 4px 8px 36px calc(56px + 28px + 8px);
      max-width: 78ch;
    }

    .bold-stat-panel > p {
      color: var(--text-muted);
      font-size: 0.98rem;
      line-height: 1.75;
      font-weight: 300;
      margin: 0 0 18px;
    }

    .bold-stat-panel ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 0;
      padding: 0;
    }

    .bold-stat-panel li {
      position: relative;
      padding-left: 14px;
      color: var(--text-dim);
      font-size: 0.92rem;
      line-height: 1.6;
      font-weight: 300;
    }

    .bold-stat-panel li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.6em;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #8884ff;
      opacity: 0.7;
    }

    .bold-stat-panel li strong {
      color: var(--text);
      font-weight: 500;
    }

    /* ── Facts band ── */
    .stats-section {
      background: #f4f4f2;
      color: #161616;
      padding: clamp(88px, 10vw, 120px) 0 clamp(104px, 12vw, 148px);
    }

    .stats-layout {
      display: grid;
      grid-template-columns: minmax(260px, 0.85fr) 1.25fr;
      gap: clamp(48px, 7vw, 96px);
      align-items: start;
    }

    .stats-intro {
      position: sticky;
      top: 100px;
      padding-top: 4px;
    }

    .stats-heading {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: var(--heading-size);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.015em;
      text-align: left;
      max-width: 16ch;
      margin: 0 0 22px;
      color: #161616;
    }

    .stats-lead {
      font-size: 1.05rem;
      line-height: 1.75;
      color: #4f4c48;
      font-weight: 300;
      max-width: 36ch;
      margin: 0;
    }

    .stats-rows {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding-top: 0;
      border-top: 1px solid rgba(22, 22, 22, 0.12);
    }

    .stat-item {
      display: grid;
      grid-template-columns: minmax(100px, 0.55fr) 1.45fr;
      gap: 20px 28px;
      align-items: baseline;
      padding: 28px 0;
      border-bottom: 1px solid rgba(22, 22, 22, 0.1);
    }

    .stat-item:last-child {
      border-bottom: 1px solid rgba(22, 22, 22, 0.12);
    }

    .stat-number {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: clamp(2rem, 3.2vw, 2.6rem);
      line-height: 1;
      margin-bottom: 0;
      color: #161616;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .stat-label {
      color: #7a7670;
      font-size: 0.92rem;
      line-height: 1.45;
      max-width: 42ch;
      font-weight: 400;
      padding-top: 4px;
    }

    /* ── Sections ── */
    .section { padding: 100px 0; }
    .section-dark { background: var(--bg); }
    .section-surface { background: var(--surface); }

    .section-title {
      margin-bottom: 20px;
    }

    .section-intro {
      color: var(--text-muted);
      font-size: 0.95rem;
      max-width: 620px;
      margin-bottom: 56px;
      line-height: 1.7;
      font-weight: 300;
    }

    /* ── Services ── */
    .services-section {
      background: #ffffff;
      color: #161616;
      padding: clamp(72px, 8vw, 96px) 0;
    }

    .services-header {
      margin-bottom: clamp(28px, 3.5vw, 40px);
    }

    .services-header .about-copy {
      padding-top: 8px;
    }

    .services-header h2 {
      color: #161616;
      margin-bottom: 22px;
    }

    .service-rows {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .service-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: center;
      padding: 0;
      border: none;
      position: relative;
      z-index: 0;
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .service-row::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      background:
        linear-gradient(rgba(22, 22, 22, 0.18), rgba(22, 22, 22, 0.18)) 0 0 / 0 1px no-repeat,
        linear-gradient(rgba(22, 22, 22, 0.18), rgba(22, 22, 22, 0.18)) 100% 0 / 1px 0 no-repeat,
        linear-gradient(rgba(22, 22, 22, 0.18), rgba(22, 22, 22, 0.18)) 100% 100% / 0 1px no-repeat,
        linear-gradient(rgba(22, 22, 22, 0.18), rgba(22, 22, 22, 0.18)) 0 100% / 1px 0 no-repeat;
      transition: background-size 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .service-row:hover {
      z-index: 2;
    }

    .service-row:hover::before {
      background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
    }

    .service-row:has(~ .service-row:hover) {
      transform: translateY(-18px);
    }

    .service-row:hover ~ .service-row {
      transform: translateY(18px);
    }

    .service-row:nth-child(even) .service-copy {
      order: 2;
    }

    .service-row:nth-child(even) .photo-frame {
      order: 1;
    }

    .service-copy {
      padding: clamp(24px, 3.5vw, 40px) clamp(24px, 4vw, 48px);
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: background 0.35s ease;
    }

    .service-row:hover .service-copy {
      background: #fcfcfb;
    }

    .service-num {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #9a9690;
      margin-bottom: 12px;
      font-weight: 500;
      transition: color 0.35s ease;
    }

    .service-row:hover .service-num {
      color: #8884ff;
    }

    .service-row h3 {
      margin-bottom: 12px;
      color: #161616;
      transition: color 0.35s ease;
    }

    .service-row:hover h3 {
      color: #161616;
    }

    .service-row p {
      color: #4f4c48;
      font-size: 1.05rem;
      line-height: 1.75;
      font-weight: 300;
      max-width: none;
    }

    .photo-frame,
    .case-media,
    .quote-portrait-wrap,
    .team-photo {
      position: relative;
      overflow: hidden;
    }

    .photo-frame img,
    .case-media img,
    .quote-portrait,
    .team-photo img {
      display: block;
      width: 100%;
      filter: grayscale(1);
      transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
      will-change: transform;
    }

    .photo-frame img {
      aspect-ratio: 16/11;
      object-fit: cover;
    }

    .photo-frame:hover img,
    .service-row:hover .photo-frame img,
    .case-media:hover img,
    .quote-portrait-wrap:hover img,
    .team-member:hover .team-photo img {
      transform: scale(1.05);
      filter: grayscale(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .photo-frame img,
      .case-media img,
      .quote-portrait,
      .team-photo img {
        transition: filter 0.45s ease;
      }

      .photo-frame:hover img,
      .service-row:hover .photo-frame img,
      .case-media:hover img,
      .quote-portrait-wrap:hover img,
      .team-member:hover .team-photo img {
        transform: none;
        filter: grayscale(0);
      }

      .service-row,
      .service-row:has(~ .service-row:hover),
      .service-row:hover ~ .service-row {
        transform: none;
        transition: none;
      }

      .service-row::before,
      .service-row:hover::before {
        transition: none;
        background-size: 0 1px, 1px 0, 0 1px, 1px 0;
      }
    }

    /* ── Quote ── */
    .quote-section {
      background: var(--bg);
      color: var(--text);
      padding: clamp(80px, 9vw, 104px) 0;
      position: relative;
    }

    .quote-block {
      display: grid;
      grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
      grid-template-rows: 1fr auto;
      column-gap: clamp(36px, 5vw, 56px);
      row-gap: 0;
      align-items: stretch;
      margin: 0;
    }

    .quote-portrait-wrap {
      position: relative;
      grid-column: 1;
      grid-row: 1 / 3;
      align-self: start;
      width: 100%;
      overflow: hidden;
    }

    .quote-portrait {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center;
      border: 1px solid var(--surface-border);
    }

    .quote-mark {
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 2;
      width: 28%;
      min-width: 80px;
      max-width: 128px;
      aspect-ratio: 1;
      height: auto;
      container-type: size;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg);
      color: var(--text);
      font-family: 'IBM Plex Sans', sans-serif;
      font-weight: 400;
      transition: background 0.35s ease, color 0.35s ease;
    }

    .quote-mark span {
      display: block;
      font-size: 52cqmin;
      line-height: 1;
      transform: translate(0.06em, 0.28em);
    }

    .quote-block:has(.quote-portrait-wrap:hover) .quote-mark,
    .quote-mark:hover {
      background: #8884ff;
      color: var(--bg);
    }

    .quote-body {
      grid-column: 2;
      grid-row: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 0;
      padding-bottom: 28px;
    }

    .quote-eyebrow {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 18px;
      font-weight: 500;
    }

    .quote-text {
      font-family: 'IBM Plex Sans', sans-serif;
      font-style: italic;
      font-weight: 400;
      font-size: clamp(1.35rem, 2.4vw, 1.75rem);
      line-height: 1.6;
      color: var(--text);
      margin: 0;
    }

    .quote-attr {
      grid-column: 2;
      grid-row: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 24px 0 8px;
      border-top: 1px solid var(--surface-border);
    }

    .quote-attr strong {
      color: var(--text);
      display: block;
      font-family: 'IBM Plex Sans', sans-serif;
      font-style: normal;
      font-weight: 500;
      margin-bottom: 2px;
      font-size: 0.92rem;
    }

    .quote-attr span {
      display: block;
      color: var(--text-dim);
      font-size: 0.84rem;
      font-weight: 400;
      font-style: normal;
    }

    @media (prefers-reduced-motion: reduce) {
      .quote-mark {
        transition: none;
      }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      font-weight: 500;
      padding: 14px 28px;
      cursor: pointer;
      border: none;
      transition: all 0.25s;
      font-family: inherit;
    }

    .btn-accent {
      background: var(--accent);
      color: var(--bg);
      border: 1px solid var(--accent);
    }

    .btn-accent:hover {
      background: var(--accent-hover);
      border-color: var(--accent-hover);
    }

    .btn-accent .arrow { transition: transform 0.25s; }
    .btn-accent:hover .arrow { transform: translateX(4px); }

    /* ── Case studies ── */
    .portfolio-section {
      background: #ffffff;
      color: #161616;
      padding: clamp(88px, 10vw, 120px) 0;
    }

    .portfolio-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 32px;
      margin-bottom: 0;
      padding-bottom: clamp(24px, 3vw, 32px);
    }

    .portfolio-header .about-copy {
      padding-top: 8px;
    }

    .portfolio-header h2 {
      color: #161616;
      margin-bottom: 0;
    }

    .case-slider-controls {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-shrink: 0;
      padding-bottom: 4px;
    }

    .case-slider-index {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      font-weight: 500;
      color: #9a9690;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
    }

    .case-slider-index [data-case-current] {
      color: #161616;
      font-weight: 600;
    }

    .case-slider-index-sep {
      margin: 0 6px;
      color: #c8c4be;
    }

    .case-slider-buttons {
      display: flex;
      gap: 10px;
    }

    .case-slider-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(22, 22, 22, 0.16);
      background: #fff;
      color: #161616;
      display: grid;
      place-items: center;
      cursor: pointer;
      padding: 0;
      font: inherit;
      appearance: none;
      -webkit-appearance: none;
      transition:
        border-color 0.35s ease,
        color 0.35s ease,
        background 0.35s ease;
    }

    .case-slider-btn:hover {
      border-color: #8884ff;
      color: #8884ff;
      background: #fcfcfb;
    }

    .case-slider-btn:focus-visible {
      outline: 1px solid #8884ff;
      outline-offset: 3px;
    }

    .case-slider-btn svg {
      width: 16px;
      height: 16px;
    }

    .case-slider-progress {
      position: relative;
      height: 1px;
      background: rgba(22, 22, 22, 0.1);
      margin-bottom: 8px;
    }

    .case-slider-progress span {
      display: block;
      height: 100%;
      width: 50%;
      background: #161616;
      transform-origin: left center;
      transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .case-slider-viewport {
      position: relative;
      overflow: hidden;
      transition: height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .case-study {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: clamp(36px, 5vw, 64px);
      align-items: stretch;
      padding: clamp(40px, 5vw, 56px) 0 8px;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      transform: translateX(48px);
      transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .case-slider[data-dir="prev"] .case-study {
      transform: translateX(-48px);
    }

    .case-study.is-active {
      position: relative;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: none;
    }

    .case-study.is-leaving {
      position: absolute;
      visibility: visible;
      opacity: 0;
      transform: translateX(-48px);
    }

    .case-slider[data-dir="prev"] .case-study.is-leaving {
      transform: translateX(48px);
    }

    .case-media {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 100%;
      min-height: 100%;
      align-self: stretch;
    }

    .case-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .case-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .case-status {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #161616;
      font-weight: 500;
      margin-bottom: 14px;
    }

    .case-status--live::before,
    .case-status--done::before {
      content: '';
      width: 12px;
      height: 12px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .case-status--live::before {
      background: #8884ff;
      box-shadow: 0 0 0 0 rgba(136, 132, 255, 0.55);
      animation: statusPulse 2s ease-in-out infinite;
    }

    .case-status--done::before {
      background: #9a9690;
    }

    @keyframes statusPulse {
      0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(136, 132, 255, 0.45);
      }
      50% {
        opacity: 0.5;
        transform: scale(1.08);
        box-shadow: 0 0 0 10px rgba(136, 132, 255, 0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .case-status--live::before {
        animation: none;
        opacity: 1;
      }

      .case-study,
      .case-slider-progress span,
      .case-slider-viewport {
        transition: none;
      }

      .case-study,
      .case-slider[data-dir="prev"] .case-study,
      .case-study.is-leaving,
      .case-slider[data-dir="prev"] .case-study.is-leaving {
        transform: none;
      }
    }

    .case-body h3 {
      margin-bottom: 18px;
      color: #161616;
    }

    .case-body > p {
      color: #4f4c48;
      font-size: 0.98rem;
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 28px;
      max-width: 54ch;
    }

    .case-areas-label {
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #9a9690;
      margin-bottom: 12px;
      font-weight: 500;
    }

    .case-areas {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .case-areas li {
      font-size: 0.84rem;
      color: #4f4c48;
      line-height: 1.4;
      background: #f4f4f2;
      padding: 8px 14px;
    }

    /* ── Team ── */
    #komanda {
      padding: clamp(88px, 10vw, 120px) 0;
    }

    #komanda .about-copy {
      padding-top: 8px;
      margin-bottom: clamp(36px, 4.5vw, 48px);
    }

    #komanda h2 {
      color: var(--text);
      margin-bottom: 22px;
    }

    #komanda .about-copy > p {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.75;
      font-weight: 300;
      max-width: none;
      margin: 0 0 18px;
    }

    #komanda .about-copy > p:last-child {
      margin-bottom: 0;
    }

    .team-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      margin-top: 0;
      border-top: none;
    }

    #komanda .team-member {
      display: grid;
      grid-template-columns: minmax(148px, 36%) minmax(0, 1fr);
      grid-template-rows: auto auto auto 1fr;
      column-gap: 24px;
      row-gap: 0;
      align-items: stretch;
      padding: 20px;
      min-height: 100%;
      background: transparent;
      border: 1px solid var(--surface-border);
      border-bottom: 1px solid var(--surface-border);
    }

    #komanda .team-member:hover {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(136, 132, 255, 0.35);
    }

    #komanda .team-photo {
      grid-column: 1;
      grid-row: 1 / -1;
      width: 100%;
      height: 100%;
      margin-bottom: 0;
      align-self: stretch;
    }

    #komanda .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 18%;
    }

    #komanda .about-pillar-title,
    #komanda .role,
    #komanda .bio,
    #komanda .values-acc {
      grid-column: 2;
    }

    #komanda .about-pillar-title {
      font-size: clamp(1.12rem, 1.6vw, 1.28rem);
      color: var(--text);
      margin-bottom: 6px;
      line-height: 1.3;
    }

    #komanda .role {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.45;
      font-weight: 500;
      margin-bottom: 10px;
    }

    #komanda .bio {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--text-muted);
      font-weight: 300;
      margin-bottom: 16px;
    }

    .team-expertise {
      margin-top: 4px;
    }

    .team-expertise summary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      list-style: none;
      cursor: pointer;
      font-size: 0.84rem;
      font-weight: 500;
      color: var(--text-muted);
      transition: color 0.25s, gap 0.25s ease;
    }

    .team-expertise summary::-webkit-details-marker {
      display: none;
    }

    .team-expertise summary .arrow {
      display: inline-block;
      transition: transform 0.25s ease;
    }

    .team-expertise summary:hover {
      color: var(--text-btn-hover);
      gap: 12px;
    }

    .team-expertise[open] summary {
      color: var(--text-btn-hover);
    }

    .team-expertise[open] summary .arrow {
      transform: rotate(180deg);
    }

    .team-expertise-list {
      list-style: none;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--surface-border);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .team-expertise-list li {
      font-size: 0.84rem;
      color: var(--text-dim);
      line-height: 1.45;
      font-weight: 300;
      padding-left: 14px;
      position: relative;
    }

    .team-expertise-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #8884ff;
      opacity: 0.7;
    }

    /* ── Mission / Values ── */
    .values-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-top: 48px;
    }

    .values-item .label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 14px;
      font-weight: 500;
    }

    .values-item .label svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--text-dim);
      opacity: 0.9;
    }

    .values-item h4 {
      margin-bottom: 14px;
    }

    .values-item p {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.65;
      font-weight: 300;
      margin-bottom: 20px;
    }

    .values-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.84rem;
      font-weight: 500;
      color: #6b6862;
      transition: gap 0.25s ease, color 0.25s;
    }

    .values-more .arrow {
      display: inline-block;
      transition: transform 0.25s ease;
    }

    .values-more:hover {
      color: var(--text-btn-hover);
      gap: 12px;
    }

    .values-more:hover .arrow {
      transform: translateX(3px);
    }

    .values-acc {
      margin-top: 0;
    }

    .values-acc > summary {
      list-style: none;
      cursor: pointer;
    }

    .values-acc > summary::-webkit-details-marker {
      display: none;
    }

    .values-acc[open] > summary {
      color: var(--text-btn-hover);
    }

    .values-acc[open] > summary .arrow,
    .values-acc[open] > summary:hover .arrow {
      transform: rotate(180deg);
    }

    .values-acc > summary:hover .arrow {
      transform: translateY(3px);
    }

    .values-expand-list {
      list-style: none;
      margin: 16px 0 0;
      padding: 16px 0 0;
      border-top: 1px solid var(--surface-border);
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .values-expand-list li {
      position: relative;
      padding-left: 14px;
      font-size: 0.875rem;
      color: var(--text-dim);
      line-height: 1.6;
      font-weight: 300;
    }

    .values-expand-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.6em;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #8884ff;
      opacity: 0.7;
    }

    .values-expand-list li strong {
      color: var(--text);
      font-weight: 500;
    }

    #atsakinga-veikla {
      padding: clamp(88px, 10vw, 120px) 0;
    }

    #atsakinga-veikla .about-copy {
      padding-top: 8px;
      margin-bottom: clamp(28px, 3.5vw, 40px);
    }

    #atsakinga-veikla h2 {
      font-size: var(--heading-size);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.015em;
      color: var(--text);
      margin-bottom: 0;
      max-width: none;
      width: 100%;
    }

    #atsakinga-veikla .values-grid {
      gap: 20px;
      margin-top: 0;
      align-items: stretch;
    }

    #atsakinga-veikla .about-pillar {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      background: transparent;
      border-color: var(--surface-border);
    }

    #atsakinga-veikla .about-pillar:hover {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(136, 132, 255, 0.35);
    }

    #atsakinga-veikla .about-pillar-title {
      font-size: clamp(1.2rem, 2.2vw, 1.5rem);
      color: var(--text);
    }

    #atsakinga-veikla .about-pillar-icon {
      border: 1px solid rgba(242, 239, 232, 0.2);
      border-radius: 50%;
      overflow: hidden;
    }

    #atsakinga-veikla .about-pillar-icon > svg {
      width: 18px;
      height: 18px;
      color: var(--text);
    }

    #atsakinga-veikla .about-pillar:hover .about-pillar-icon {
      border-color: #8884ff;
    }

    #atsakinga-veikla .about-pillar:hover .about-pillar-icon > svg {
      color: #8884ff;
    }

    #atsakinga-veikla .about-pillar > p {
      margin-bottom: 20px;
      font-size: 1.02rem;
      line-height: 1.8;
      color: var(--text-muted);
    }

    #atsakinga-veikla .values-acc,
    #komanda .values-acc {
      margin-top: auto;
    }

    #atsakinga-veikla .values-more,
    #komanda .values-more {
      color: var(--text-muted);
      background: none;
      border: none;
      padding: 0;
      font: inherit;
      cursor: pointer;
    }

    #atsakinga-veikla .values-more:hover .arrow,
    #komanda .values-more:hover .arrow {
      transform: translateY(3px);
    }

    #atsakinga-veikla .values-acc.is-open .values-more,
    #komanda .values-acc.is-open .values-more {
      color: var(--text-btn-hover);
    }

    #atsakinga-veikla .values-acc.is-open .values-more .arrow,
    #atsakinga-veikla .values-acc.is-open .values-more:hover .arrow,
    #komanda .values-acc.is-open .values-more .arrow,
    #komanda .values-acc.is-open .values-more:hover .arrow {
      transform: rotate(180deg);
    }

    #atsakinga-veikla .values-acc-panel,
    #komanda .values-acc-panel {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    #atsakinga-veikla .values-acc.is-open .values-acc-panel,
    #komanda .values-acc.is-open .values-acc-panel {
      grid-template-rows: 1fr;
    }

    #atsakinga-veikla .values-acc-inner,
    #komanda .values-acc-inner {
      overflow: hidden;
      min-height: 0;
    }

    #atsakinga-veikla .values-expand-list,
    #komanda .values-expand-list {
      margin: 16px 0 0;
      padding: 18px 0 0;
      border-top: 1px solid var(--surface-border);
      gap: 18px;
      opacity: 0;
      transform: translateY(8px);
      transition:
        opacity 0.4s ease 0.08s,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    #atsakinga-veikla .values-acc.is-open .values-expand-list,
    #komanda .values-acc.is-open .values-expand-list {
      opacity: 1;
      transform: none;
    }

    #komanda .team-note {
      margin: 16px 0 0;
      font-size: 0.8rem;
      line-height: 1.6;
      color: var(--text-muted);
      font-weight: 300;
      opacity: 0;
      transform: translateY(8px);
      transition:
        opacity 0.4s ease 0.08s,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    #komanda .values-acc.is-open .team-note {
      opacity: 1;
      transform: none;
    }

    #atsakinga-veikla .values-expand-list li,
    #komanda .values-expand-list li {
      position: relative;
      padding-left: 28px;
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--text-muted);
    }

    #atsakinga-veikla .values-expand-list li::before,
    #komanda .values-expand-list li::before {
      display: block;
      content: '';
      position: absolute;
      left: 0;
      top: 0.18em;
      width: 15px;
      height: 15px;
      background: #9a958c;
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l5 5L20 7'/%3E%3C/svg%3E") center / contain no-repeat;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l5 5L20 7'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    #atsakinga-veikla .values-expand-list li strong {
      display: block;
      color: var(--text);
      font-size: 0.92rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      margin-bottom: 4px;
    }

    #atsakinga-veikla .values-acc--empty {
      min-height: 1.35em;
      pointer-events: none;
    }

    @media (prefers-reduced-motion: reduce) {
      #atsakinga-veikla .values-acc-panel,
      #atsakinga-veikla .values-expand-list,
      #komanda .values-acc-panel,
      #komanda .values-expand-list {
        transition: none;
      }
    }

    .values-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 56px;
      padding-top: 48px;
      border-top: 1px solid var(--surface-border);
    }

    .value-pill {
      border-radius: 0;
      border: 1px solid var(--surface-border);
      padding: 10px 20px;
      font-size: 0.8rem;
      color: var(--text-muted);
      transition: border-color 0.25s, color 0.25s;
    }

    .value-pill:hover {
      border-color: var(--text-btn-hover);
      color: var(--text-btn-hover);
    }

    /* ── Footer ── */
    .site-footer {
      background: var(--bg);
      border-top: 1px solid var(--surface-border);
      padding: clamp(64px, 8vw, 88px) 0 36px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand p {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.65;
      font-weight: 300;
      max-width: 32ch;
      margin-top: 16px;
    }

    .footer-brand .logo img {
      height: 24px;
    }

    .footer-col h3 {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dim);
      font-weight: 500;
      margin-bottom: 18px;
    }

    .footer-menu,
    .footer-contact {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-menu a,
    .footer-contact a,
    .footer-contact li {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.45;
      transition: color 0.25s;
    }

    .footer-menu a:hover,
    .footer-contact a:hover {
      color: var(--text-btn-hover);
    }

    .footer-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: 28px;
      border-top: 1px solid var(--surface-border);
    }

    .footer-bar p {
      color: var(--text-dim);
      font-size: 0.75rem;
      line-height: 1.5;
    }

    .footer-credit a {
      color: #b5b0a6;
      transition: color 0.25s;
    }

    .footer-credit a:hover,
    .footer-credit a:focus-visible {
      color: var(--text-btn-hover);
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .quote-block {
        grid-template-columns: minmax(220px, 1fr) minmax(0, 1.2fr);
        column-gap: 32px;
      }

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

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

      #komanda .team-member {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        column-gap: 0;
      }

      #komanda .team-photo {
        grid-column: 1;
        grid-row: auto;
        height: auto;
        margin-bottom: 16px;
      }

      #komanda .team-photo img {
        height: auto;
        aspect-ratio: 1 / 1;
      }

      #komanda .about-pillar-title,
      #komanda .role,
      #komanda .bio,
      #komanda .values-acc {
        grid-column: 1;
      }
    }

    @media (max-width: 768px) {
      .container, .header-inner, .hero-inner { padding-left: 20px; padding-right: 20px; }

      h1, h2, h3, h4, p, blockquote, li {
        overflow-wrap: break-word;
        word-wrap: break-word;
      }

      h1, h2,
      .section-title,
      .portfolio-header h2,
      .about-intro h2,
      .services-header h2,
      .sectors-header h2,
      #atsakinga-veikla h2,
      #komanda h2 {
        font-size: clamp(1.7rem, 6.6vw, 2.15rem);
        max-width: none;
      }

      h3, h4 {
        font-size: clamp(1.2rem, 4.6vw, 1.45rem);
      }

      .nav-toggle { display: flex; }

      .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 20px 20px;
        background: rgba(4, 4, 6, 0.96);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(136, 132, 255, 0.14);
      }

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

      .nav a {
        padding: 14px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .nav a:last-child { border-bottom: none; }

      .header {
        --iseg-header-pad: 16px;
        --iseg-header-pad-scrolled: 14px;
      }

      .header.scrolled .logo img { height: var(--iseg-logo-h-scrolled, var(--iseg-logo-h, 28px)); }
      .header.scrolled .nav a { font-size: 0.95rem; }

      .header-inner {
        position: relative;
      }

      .hero {
        min-height: auto;
        justify-content: flex-start;
      }

      .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        grid-template-columns: 1fr;
        gap: clamp(40px, 8vw, 56px);
        padding-top: 104px;
        padding-bottom: 96px;
      }

      .hero-content {
        width: 100%;
        max-width: none;
        align-items: flex-start;
        padding-right: 0;
      }

      .hero-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.05em;
        line-height: 1.55;
        max-width: none;
        width: 100%;
        margin-bottom: 18px;
      }

      .hero h1 {
        max-width: none;
        width: 100%;
        font-size: clamp(1.8rem, 7vw, 2.35rem);
        line-height: 1.18;
        margin-bottom: 20px;
      }

      .hero-sub {
        max-width: none;
        width: 100%;
        font-size: 1.02rem;
        margin-bottom: 32px;
        line-height: 1.65;
      }

      .hero-mark {
        max-width: 380px;
        width: 88%;
        justify-self: center;
        align-self: center;
        margin: 8px auto 0;
      }

      .hero-scroll { bottom: 20px; }

      .bold-stats-header,
      .bold-stat-panel {
        max-width: none;
      }

      .bold-stat-link {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 16px 16px;
        padding: 24px 0;
      }
      .bold-stat-more { grid-column: 2; }
      .bold-stat-text {
        font-size: clamp(1.05rem, 4.2vw, 1.3rem);
        line-height: 1.4;
      }
      .bold-stat-panel {
        padding: 0 0 24px calc(40px + 16px);
      }

      .stats-layout { grid-template-columns: 1fr; gap: 40px; }
      .stats-intro { position: static; }
      .stats-heading { max-width: none; }
      .stats-lead { max-width: none; }
      .stat-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 28px 0;
      }
      .stat-label { padding-top: 0; max-width: none; }

      .about-copy,
      .about-copy > p,
      .services-header,
      .sectors-header,
      .portfolio-header,
      #komanda .about-copy > p,
      #atsakinga-veikla h2 {
        max-width: none;
        width: 100%;
      }

      .about-pillars { grid-template-columns: 1fr; gap: 16px; }
      .about-pillar,
      .sector-card {
        padding: 22px 18px 24px;
      }
      .sectors-grid { grid-template-columns: 1fr; gap: 16px; }
      .sector-card {
        min-height: 0;
      }
      .sector-head {
        align-items: center;
        margin-bottom: 12px;
      }
      .sector-card > p {
        margin: 0;
      }
      .sector-title br { display: none; }
      .sector-title {
        font-size: clamp(1.12rem, 4.2vw, 1.28rem);
      }

      .services-header { margin-bottom: 28px; }
      .service-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 16px;
      }
      .service-row:nth-child(even) .service-copy,
      .service-row:nth-child(even) .photo-frame { order: unset; }
      .service-copy {
        padding: 0;
      }
      .service-row h3 {
        font-size: clamp(1.2rem, 4.8vw, 1.4rem);
      }
      .service-row p {
        font-size: 1rem;
      }
      .service-rows { gap: 28px; }

      .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 24px;
      }

      .case-study { grid-template-columns: 1fr; gap: 28px; padding: 32px 0 8px; }
      .case-media {
        min-height: 220px;
        height: auto;
        aspect-ratio: 16 / 11;
      }
      .case-body > p { max-width: none; }

      .values-grid { grid-template-columns: 1fr; gap: 36px; }
      .quote-block {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 28px;
      }
      .quote-portrait-wrap {
        grid-column: 1;
        grid-row: 1;
        height: auto;
        min-height: 0;
        align-self: start;
      }
      .quote-portrait {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
      }
      .quote-mark {
        position: absolute;
        right: 0;
        bottom: 0;
        height: auto;
        width: 28%;
        min-width: 72px;
        max-width: 96px;
      }
      .quote-body {
        grid-column: 1;
        grid-row: 2;
        padding-bottom: 0;
      }
      .quote-text {
        font-size: 1.12rem;
        line-height: 1.55;
      }
      .quote-attr {
        grid-column: 1;
        grid-row: 3;
      }

      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-brand p { max-width: none; }
      .footer-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

      .team-list {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      #komanda .team-member {
        grid-template-columns: 1fr;
        padding: 16px;
      }

      #komanda .team-photo {
        grid-row: auto;
        height: auto;
        margin-bottom: 16px;
      }

      #komanda .team-photo img {
        height: auto;
        aspect-ratio: 1 / 1;
      }

      #komanda .about-pillar-title,
      #komanda .role,
      #komanda .bio,
      #komanda .values-acc {
        grid-column: 1;
      }

      .section { padding: 72px 0; }
      .section-intro { margin-bottom: 40px; max-width: none; }
      .infographic-section,
      .bold-stats,
      .stats-section,
      .services-section,
      .sectors-section,
      .portfolio-section,
      .quote-section,
      #komanda,
      #atsakinga-veikla {
        padding-left: 0;
        padding-right: 0;
      }
      .stats-section {
        padding-top: clamp(64px, 10vw, 88px);
        padding-bottom: clamp(72px, 10vw, 104px);
      }
      .bold-stats { padding: clamp(72px, 10vw, 96px) 0; }
      .services-section {
        padding-top: clamp(56px, 8vw, 80px);
        padding-bottom: clamp(56px, 8vw, 80px);
      }
      .quote-section { padding: 72px 0; }
    }

    @media (max-width: 480px) {
      .container, .header-inner, .hero-inner { padding-left: 16px; padding-right: 16px; }
      .nav { padding-left: 16px; padding-right: 16px; }

      h1, h2,
      .section-title,
      .portfolio-header h2,
      .about-intro h2,
      .services-header h2,
      .sectors-header h2,
      #atsakinga-veikla h2,
      #komanda h2 {
        font-size: clamp(1.55rem, 7.2vw, 1.9rem);
      }

      .hero-inner {
        gap: 36px;
        padding-top: 96px;
        padding-bottom: 88px;
      }

      .hero h1 {
        font-size: clamp(1.65rem, 8vw, 2.05rem);
      }

      .hero-mark {
        max-width: 340px;
        width: 85%;
      }

      .hero-cta {
        width: 100%;
        justify-content: center;
      }

      .about-pillar,
      .sector-card,
      #komanda .team-member {
        padding: 18px 16px 20px;
      }

      .service-row {
        padding: 16px 14px;
      }

      .service-row.is-scroll-hot {
        padding: 16px 14px;
      }

      .bold-stat-link {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 12px 12px;
      }
      .bold-stat-panel {
        padding-left: calc(28px + 12px);
      }

      .case-areas li {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
        width: 100%;
      }
    }

    /* ── Mobile scroll-hot (mirrors desktop hover) ── */
    @media (max-width: 768px) {
      .about-pillar.is-scroll-hot {
        transform: translateY(-4px);
        border-color: rgba(136, 132, 255, 0.4);
        background: #fcfcfb;
      }

      .about-pillar.is-scroll-hot::before {
        transform: scaleX(1);
      }

      .about-pillar.is-scroll-hot .about-pillar-ring {
        stroke: #8884ff;
      }

      .about-pillar.is-scroll-hot .about-pillar-icon > svg:not(.about-pillar-orbit) {
        color: #8884ff;
      }

      .sector-card.is-scroll-hot {
        transform: translateY(-4px);
        border-color: rgba(136, 132, 255, 0.4);
        background: #fcfcfb;
      }

      .sector-card.is-scroll-hot::before {
        transform: scaleX(1);
      }

      .sector-card.is-scroll-hot .sector-icon {
        border-color: #8884ff;
        transform: scale(1.06);
      }

      .sector-card.is-scroll-hot .sector-icon svg {
        color: #8884ff;
      }

      .service-row.is-scroll-hot {
        z-index: 2;
        padding: 18px 16px;
      }

      .service-row.is-scroll-hot::before {
        background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
      }

      .service-row.is-scroll-hot .service-copy {
        background: #fcfcfb;
        padding: 0;
      }

      .service-row.is-scroll-hot .service-num {
        color: #8884ff;
      }

      .service-row.is-scroll-hot .photo-frame img,
      .quote-block.is-scroll-hot .quote-portrait,
      .team-member.is-scroll-hot .team-photo img,
      .case-study.is-scroll-hot .case-media img {
        transform: scale(1.05);
        filter: grayscale(0);
      }

      .quote-block.is-scroll-hot .quote-mark {
        background: #8884ff;
        color: var(--bg);
      }

      #komanda .team-member.is-scroll-hot {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(136, 132, 255, 0.35);
        transform: none;
      }

      #atsakinga-veikla .about-pillar.is-scroll-hot {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(136, 132, 255, 0.35);
        transform: none;
      }

      #atsakinga-veikla .about-pillar.is-scroll-hot .about-pillar-icon {
        border-color: #8884ff;
      }

      #atsakinga-veikla .about-pillar.is-scroll-hot .about-pillar-icon > svg {
        color: #8884ff;
      }

      .bold-stat-acc.is-scroll-hot .bold-stat-link {
        background: rgba(255, 255, 255, 0.03);
      }

      .bold-stat-acc.is-scroll-hot .bold-stat-more {
        color: var(--text-btn-hover);
        gap: 14px;
      }
    }

    @media (max-width: 768px) and (prefers-reduced-motion: reduce) {
      .about-pillar.is-scroll-hot,
      .sector-card.is-scroll-hot {
        transform: none;
      }

      .service-row.is-scroll-hot .photo-frame img,
      .quote-block.is-scroll-hot .quote-portrait,
      .team-member.is-scroll-hot .team-photo img,
      .case-study.is-scroll-hot .case-media img {
        transform: none;
      }
    }

    html.iseg-reveal-armed .reveal {
      opacity: 0;
      transform: translate3d(0, 10px, 0);
      transition:
        opacity 1.9s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 1.9s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    html.iseg-reveal-armed .reveal.is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    @media (max-width: 768px) {
      .hero-eyebrow,
      .hero h1,
      .hero-sub,
      .hero-cta,
      .hero-scroll {
        animation-duration: 0.55s;
      }

      .hero h1 { animation-delay: 0.06s; }
      .hero-sub { animation-delay: 0.1s; }
      .hero-cta { animation-delay: 0.16s; }
      .hero-scroll { animation-delay: 0.22s; }

      .hero-mark {
        animation-duration: 0.7s;
        animation-delay: 0.16s;
      }

      html.iseg-reveal-armed .reveal {
        transition-duration: 1.05s, 1.05s;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html.iseg-reveal-armed .reveal,
      html.iseg-reveal-armed .reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }
