/* ============================================================
   int32.si — Sober corporate theme. Custom CSS on top of Tailwind (CDN)
   Flat, structured, single corporate-blue accent on white. IBM Plex Sans.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-2: #f1f4f5;
  --surface: #f7f9fa;
  --surface-2: #eef2f4;
  --ink: #10201f;
  --text: #43545a;
  --muted: #6b7c81;
  --line: rgba(12,30,34,.14);
  --line-2: rgba(12,30,34,.22);

  /* Deep sea-blue anchor — the main colour of the clipped headline letters. */
  --violet: #0e3f66;
  --fuchsia: #12507f;
  --pink: #0e3f66;
  --orange: #0e3f66;

  /* Controlled accent family (used through light, glows and gradients — never rainbow). */
  --acc-blue: #1f6feb;
  --acc-indigo: #6b5cff;
  --acc-cyan: #22b8d6;
  --acc-emerald: #12b48a;
  --acc-coral: #ff7a5c;

  /* Deep-ocean surfaces for dark cinematic sections. */
  --navy-900: #06121e;
  --navy-800: #0a1b2c;
  --navy-700: #0f2740;

  /* "grad" kept as a flat fill so every old gradient surface renders solid. */
  --grad: linear-gradient(0deg, #0e3f66, #0e3f66);
  --grad-rev: linear-gradient(0deg, #0e3f66, #0e3f66);

  /* Soft, diffuse shadows for a premium, borderless surface. */
  --shadow-glow: 0 1px 2px rgba(16,32,40,.04), 0 18px 44px -22px rgba(16,32,40,.16);
  --shadow-card: 0 1px 3px rgba(16,32,40,.05), 0 16px 38px -20px rgba(16,32,40,.14);
  --shadow-hover: 0 6px 14px rgba(16,32,40,.07), 0 28px 60px -24px rgba(16,32,40,.22);

  /* Deep-blue aerial sea clipped inside display headlines (site-wide motif). */
  --clip-img: url("assets/01-pexels-photo-13978513.jpeg");

  --radius: 24px;
  --radius-sm: 14px;
  --maxw: 1200px;
  /* Premium system-first stack — typography carries the design. */
  --font-display: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.grad-text {
  color: var(--violet);
  -webkit-text-fill-color: currentColor;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--violet);
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--violet); }
/* Section labels retired — headlines carry the hierarchy on their own. */
.eyebrow { display: none !important; }

.section { padding-block: clamp(88px, 11vw, 168px); position: relative; }
.section-head { max-width: 760px; }
.section-head h2 { font-size: clamp(42px, 5vw, 76px); margin-top: 18px; letter-spacing: -0.035em; line-height: 1.02; }
.section-head p { margin-top: 22px; color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.5; max-width: 600px; }
.center { text-align: center; margin-inline: auto; }

/* Centered section intros (only block-level heads, not split headings). */
.section > .container > .section-head {
  text-align: center; max-width: 820px; margin-inline: auto;
}
.section > .container > .section-head .eyebrow { justify-content: center; }
.section > .container > .section-head p { margin-inline: auto; }

/* Full-width tonal bands for light/dark pacing. */
.section-alt { background: #f5f5f7; }
.section-alt .bento-card,
.section-alt .card,
.section-alt .step,
.section-alt .value,
.section-alt .ci-row { background: #fff; }
.section-alt .stats { background: #fff; }

/* Deep-ocean cinematic sections. */
.section-dark {
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(31,111,235,.22) 0%, rgba(31,111,235,0) 55%),
    radial-gradient(90% 80% at 0% 110%, rgba(34,184,214,.14) 0%, rgba(34,184,214,0) 55%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: rgba(255,255,255,.72);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,.66); }
.section-dark .eyebrow { color: rgba(255,255,255,.75); }
.section-dark .eyebrow::before { background: rgba(255,255,255,.55); }

.svg-ico { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: 13px 26px;
  border-radius: 980px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s, color .2s, border-color .2s, filter .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #fff;
  background: #0e3f66;
}
.btn-primary:hover { background: #0a2e4c; }
.btn-primary .svg-ico { transition: transform .25s; }
.btn-primary:hover .svg-ico { transform: translateX(3px); }
.btn-ghost { color: var(--ink); border-color: var(--line-2); background: transparent; }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); background: rgba(14,63,102,.05); }
.btn-light { color: #1e3a8a; background: #fff; }
.btn-light:hover { background: #eef2ff; }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.8);
  border-bottom-color: rgba(12,30,34,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 60px; }
/* New int32 wordmark logo — shown as a cropped background; old badge+text hidden. */
.brand {
  display: block; width: 116px; height: 34px; flex: none;
  background-image: url("_attachments/image-f08fcb.webp");
  background-repeat: no-repeat; background-position: center;
  background-size: 170px auto;
}
.brand > * { display: none !important; }
.site-footer .brand { width: 152px; height: 44px; background-size: 224px auto; }
.brand-badge {
  width: 34px; height: 34px; border-radius: 10px;
  background: #0e3f66;
  display: grid; place-items: center; color: #fff; flex: none;
}
.brand-badge svg { width: 19px; height: 19px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; color: var(--ink); }
.brand-name b { font-weight: 700; color: var(--violet); }
.brand-sub { font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 5px; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: 8px 14px; border-radius: 980px;
  font-family: var(--font-display);
  font-size: .92rem; font-weight: 500; letter-spacing: -0.01em;
  color: var(--text); transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(14,63,102,.06); }
.nav-links a.active { color: var(--violet); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* Header CTA + language selector share one compact size. */
.nav-right .btn { padding: 10px 20px; font-size: .85rem; }
.lang-select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  font-family: var(--font-display); font-size: .85rem; font-weight: 600;
  letter-spacing: .02em; color: var(--ink); background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7c81' stroke-width='2.5' 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 12px center; background-size: 13px;
  border: 1px solid var(--line-2); border-radius: 980px; padding: 10px 32px 10px 16px;
  cursor: pointer; transition: border-color .2s;
}
.lang-select:hover { border-color: var(--violet); }
.lang-select:focus { outline: none; border-color: var(--violet); }
.mobile-menu .lang-select { width: 100%; margin-top: 14px; padding: 12px; }

.nav-toggle {
  display: none; width: 46px; height: 46px;
  border: 1px solid var(--line-2); background: #fff;
  border-radius: 12px; align-items: center; justify-content: center; cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none; position: fixed; inset: 60px 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 12px 24px 24px; z-index: 55;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .28s, opacity .28s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  display: block; padding: 14px 4px;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  letter-spacing: .02em;
  border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-menu a.active { color: var(--violet); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 18px; }

/* ---------- Hero (image-clipped headline) ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(66px, 10vw, 128px);
  background: #ffffff;
}
.hero-clip-wrap { max-width: 1040px; margin-inline: auto; text-align: center; }
.hero-clip-wrap .eyebrow { justify-content: center; }
/* Reusable: deep-blue sea photo clipped inside the text (inner-page headings). */
.clip-text,
.page-hero h1 {
  background-color: #0b3a63;
  background-image: var(--clip-img);
  background-size: cover;
  background-position: center 48%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
/* Homepage hero: muted video clipped inside the headline letters. */
.hero-clip-title {
  margin: 22px 0 0;
  filter: drop-shadow(0 12px 26px rgba(19,42,92,.22));
}
.hero-clip-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 400;
}
.hero-clip-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-clip-sub {
  margin: 44px auto 0; max-width: 640px;
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
  color: var(--text);
}
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-clip-wrap .hero-cta { justify-content: center; }

/* ---------- Keyword strip (static, sober) ---------- */
.diag-wrap { position: relative; overflow: hidden; border-block: 1px solid var(--line); background: var(--surface); }
.diag-marquee {
  width: 100%;
  padding: 14px 0;
}
.diag-marquee .marquee-track {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 30px; width: auto;
}
.diag-marquee .marquee-track span {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); white-space: nowrap;
}
.diag-marquee .marquee-track span .dot { color: var(--violet); }

/* ---------- Feature cards — matched editorial campaign panels ---------- */
.feature-scroller { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card {
  --glow: rgba(31,111,235,.42);
  position: relative; overflow: hidden;
  min-height: 540px; border-radius: 30px; padding: 40px 38px;
  display: flex; flex-direction: column; color: #fff;
  background: linear-gradient(165deg, var(--navy-700) 0%, var(--navy-900) 100%);
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
/* Accent lighting per card — same world, different focal colour. */
.feat-card:nth-child(1) { --glow: rgba(107,92,255,.42); }  /* Procesi — indigo */
.feat-card:nth-child(2) { --glow: rgba(34,184,214,.42); }  /* Integracije — cyan */
.feat-card:nth-child(3) { --glow: rgba(18,180,138,.40); }  /* Podatki — emerald */
.feat-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(85% 60% at 50% 116%, var(--glow) 0%, transparent 62%);
  mix-blend-mode: screen;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.feat-card:hover .feat-img { transform: scale(1.03); }
/* Full-bleed generated image + light scrim so the top title stays readable. */
.feat-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .7s var(--ease); }
.feat-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(6,18,30,.6) 0%, rgba(9,38,64,.2) 34%, rgba(10,46,76,0) 60%); }
.feat-eyebrow, .feat-title, .feat-desc, .feat-plus { position: relative; z-index: 2; }
.feat-eyebrow { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.feat-title { margin-top: 12px; font-size: clamp(1.7rem, 2.4vw, 2.2rem); line-height: 1.05; letter-spacing: -0.03em; color: #fff; max-width: 13ch; }
.feat-desc { margin-top: 16px; color: rgba(255,255,255,.88); font-size: 1rem; line-height: 1.5; max-width: 34ch; }
.feat-plus {
  position: absolute; right: 24px; bottom: 24px;
  width: 46px; height: 46px; border-radius: 999px;
  background: #fff; color: #0e3f66;
  display: grid; place-items: center; line-height: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,.20);
  transition: transform .2s ease, background .2s;
}
.feat-plus svg { width: 22px; height: 22px; }
.feat-plus:hover { transform: scale(1.09); background: #eaf1f8; }

/* ---------- Feature cards — image-led editorial panels (text on artwork) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fcard {
  position: relative; overflow: hidden; border-radius: 36px;
  min-height: 620px; display: flex; flex-direction: column; justify-content: flex-start;
  padding: clamp(32px, 2.6vw, 44px);
  background: var(--navy-900); box-shadow: var(--shadow-card);
  transition: transform .7s var(--ease), box-shadow .7s var(--ease);
}
.fcard > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .7s var(--ease); transform: translate3d(0, var(--py, 0%), 0) scale(var(--ps, 1)); }
/* Top-anchored scrim: text sits at the top, artwork stays bright below. */
.fcard::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(4,13,22,.86) 0%, rgba(5,16,26,.46) 26%, rgba(6,18,30,.06) 48%, rgba(6,18,30,0) 64%);
}
.fcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.fcard:hover > img { transform: translate3d(0, var(--py, 0%), 0) scale(calc(var(--ps, 1) + .03)); }
.fcard-body { position: relative; z-index: 2; max-width: 30ch; }
.fcard-eyebrow { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent, rgba(255,255,255,.85)); }
.fcard h3 { margin-top: 14px; color: #fff; font-size: clamp(1.55rem, 1.9vw, 2rem); line-height: 1.05; letter-spacing: -0.03em; }
.fcard p { margin-top: 16px; color: rgba(255,255,255,.84); font-size: 1rem; line-height: 1.5; }
/* Accent per card + deliberate framing so copy avoids the focal object. */
.fcard[data-accent="indigo"]  { --accent: #ada0ff; }
.fcard[data-accent="cyan"]    { --accent: #74e2f4; }
.fcard[data-accent="emerald"] { --accent: #5ce4c2; }
.fcard[data-accent="indigo"] > img  { object-position: 46% 66%; }
.fcard[data-accent="cyan"] > img     { object-position: 60% 66%; }
.fcard[data-accent="emerald"] > img  { object-position: 50% 70%; }

/* ---------- Bento / capabilities ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 22px; }
.bento-lg { grid-row: auto; }
.bento-card {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 38px;
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.bento-ico { width: 54px; height: 54px; border-radius: var(--radius-sm); display: grid; place-items: center; background: rgba(14,63,102,.08); color: var(--violet); }
.bento-ico svg { width: 27px; height: 27px; }
.bento-card h3 { font-size: 1.3rem; margin-top: 26px; letter-spacing: -0.01em; }
.bento-lg h3 { font-size: 1.3rem; }
.bento-card p { margin-top: 13px; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.bento-lg p { max-width: 420px; font-size: 1.05rem; }
.bento-tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.bento-tags span { font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 980px; background: rgba(14,63,102,.07); color: var(--violet); }

/* ---------- Generic cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid transparent;
  border-radius: var(--radius); padding: 36px 34px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-ico { width: 54px; height: 54px; border-radius: var(--radius-sm); display: grid; place-items: center; background: rgba(14,63,102,.08); color: var(--violet); margin-bottom: 24px; }
.card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; color: var(--ink); letter-spacing: -0.01em; }
.card p { margin-top: 13px; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.card .card-tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.card-tags span { font-size: 12px; font-weight: 500; padding: 6px 13px; border-radius: 980px; background: rgba(14,63,102,.07); color: var(--violet); }
.card.accent { background: #0e3f66; border-color: transparent; }
.card.accent h3, .card.accent p { color: #fff; }
.card.accent p { color: rgba(255,255,255,.9); }
.card.accent .card-ico { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.25); color: #fff; }
.card.accent .card-tags span { background: rgba(0,0,0,.18); border-color: rgba(255,255,255,.25); color: #fff; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.split.rev .split-media { order: -1; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-glow); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.split-media .badge-float {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius-sm); padding: 13px 17px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-card);
}
.badge-float .bf-ico { width: 38px; height: 38px; border-radius: 11px; background: #0e3f66; color: #fff; display: grid; place-items: center; flex: none; }
.badge-float .bf-ico svg { width: 21px; height: 21px; }
.badge-float b { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.badge-float small { color: var(--muted); font-size: .8rem; }

.check-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 15px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; }
.check-list .ci { width: 28px; height: 28px; flex: none; border-radius: 999px; background: rgba(14,63,102,.10); color: var(--violet); display: grid; place-items: center; margin-top: 2px; }
.check-list .ci svg { width: 15px; height: 15px; }
.check-list b { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.check-list p { margin: 3px 0 0; color: var(--text); font-size: .95rem; }

/* ---------- Stats band ---------- */
.stats {
  background: var(--surface);
  border-radius: var(--radius); padding: clamp(44px, 5vw, 68px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  position: relative; overflow: hidden;
}
.stats.two { grid-template-columns: repeat(2, 1fr); }
.stat { position: relative; z-index: 1; }
.stat + .stat { border-left: 1px solid var(--line); padding-left: 30px; }
.stat .s-num { font-family: var(--font-display); font-size: clamp(2.4rem, 4.4vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; color: var(--violet); }
.stat .s-lbl { margin-top: 8px; color: var(--text); font-size: .98rem; max-width: 260px; }

/* ---------- Process ---------- */
.steps { display: grid; gap: 16px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start;
  padding: 30px 32px; background: var(--surface); border: 1px solid transparent;
  border-radius: var(--radius); transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.step .s-no { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; width: 52px; height: 52px; border-radius: var(--radius-sm); display: grid; place-items: center; color: #fff; background: #0e3f66; flex: none; }
.step h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
.step p { margin-top: 9px; color: var(--muted); line-height: 1.55; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius); background: #0e3f66; color: #fff; padding: clamp(56px, 7vw, 92px); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.4vw, 46px); letter-spacing: -0.025em; }
.cta-band p { margin: 18px auto 0; max-width: 560px; color: rgba(255,255,255,.85); font-size: 1.12rem; line-height: 1.5; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .eyebrow { color: rgba(255,255,255,.9); }
.cta-band .eyebrow::before { background: rgba(255,255,255,.7); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(64px, 8vw, 104px) clamp(44px, 6vw, 72px); border-bottom: 1px solid var(--line); background: #ffffff; }
.page-hero .inner { max-width: var(--maxw); position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(34px, 5vw, 60px); margin-top: 18px; max-width: 900px; line-height: 1.04; letter-spacing: -0.03em; }
.page-hero p { margin-top: 22px; font-size: 1.2rem; color: var(--muted); line-height: 1.5; max-width: 620px; }
.breadcrumb { font-size: .8rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--violet); }

/* ---------- Detailed service rows ---------- */
/* Services — editorial numbered ledger: number, big outcome title, quiet detail. */
.section:has(> .container > .svc-row) .container { counter-reset: svc; }
.svc-row {
  counter-increment: svc;
  display: grid; grid-template-columns: 5.5rem 1fr; gap: clamp(20px, 4vw, 56px);
  padding: clamp(40px, 5vw, 72px) 0; border-top: 1px solid var(--line);
}
.svc-row::before {
  content: counter(svc, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.04em;
  font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1; color: rgba(14,63,102,.22);
}
.svc-row .svc-ico { display: none; }
.svc-row h3 { font-size: clamp(1.7rem, 3vw, 2.6rem); letter-spacing: -0.03em; line-height: 1.06; max-width: 22ch; }
.svc-row > div p { margin-top: 18px; color: var(--muted); font-size: clamp(1.05rem, 1.3vw, 1.2rem); line-height: 1.55; max-width: 620px; }
.svc-feats { list-style: none; margin: 26px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 32px; max-width: 640px; }
.svc-feats li { display: flex; gap: 10px; align-items: center; font-size: .92rem; color: var(--muted); }
.svc-feats svg { display: none; }
.svc-feats li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--acc-blue); flex: none; }

/* ---------- Values ---------- */
.value { padding: 34px; border-radius: var(--radius); background: var(--surface); border: 1px solid transparent; transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s; }
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.value .v-ico { width: 52px; height: 52px; border-radius: var(--radius-sm); background: rgba(14,63,102,.08); color: var(--violet); display: grid; place-items: center; margin-bottom: 20px; }
.value .v-ico svg { width: 23px; height: 23px; }
.value h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
.value p { margin-top: 11px; color: var(--muted); font-size: 1rem; line-height: 1.55; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 54px); align-items: start; }
.contact-info { display: grid; gap: 12px; margin-top: 28px; }
.ci-row { display: flex; gap: 16px; align-items: center; padding: 20px 24px; background: var(--surface); border: 1px solid transparent; border-radius: var(--radius-sm); transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s; }
.ci-row:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.ci-row .ci-ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(14,63,102,.08); color: var(--violet); display: grid; place-items: center; flex: none; }
.ci-row .ci-ic svg { width: 21px; height: 21px; }
.ci-row small { color: var(--muted); display: block; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.ci-row b { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--ink); }

.form-card { background: var(--surface); border: 1px solid transparent; border-radius: var(--radius); padding: clamp(30px, 3vw, 44px); }
.field { margin-bottom: 17px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 8px; color: var(--ink); }
.field label span { text-transform: none; letter-spacing: 0; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line-2); border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field select { color: var(--ink); }
.field select option { background: #fff; color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--fuchsia); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .83rem; color: var(--muted); margin-top: 4px; }
.form-success { display: none; align-items: center; gap: 12px; padding: 15px 18px; background: rgba(14,63,102,.09); border: 1px solid rgba(14,63,102,.35); color: #0e3f66; border-radius: 8px; font-weight: 500; margin-top: 4px; }
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; }

/* Contact — email panel over deep-ocean artwork (replaces the form). */
.mail-panel {
  border-radius: 32px; padding: clamp(36px, 4vw, 56px); color: #fff;
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; gap: 0;
  position: relative; isolation: isolate; overflow: hidden; background: #04101a;
  box-shadow: var(--shadow-card);
}
.mail-panel::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(4,12,20,.35) 0%, rgba(4,12,20,.82) 100%);
}
.mail-panel h2 { color: #fff; font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.035em; }
.mail-panel p { margin-top: 12px; color: rgba(255,255,255,.8); font-size: 1.08rem; max-width: 36ch; }
.mail-link { display: inline-block; margin-top: 26px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.2rem); letter-spacing: -0.02em; color: #fff; word-break: break-word; }
.mail-link:hover { text-decoration: underline; text-underline-offset: 6px; }
.mail-panel .btn { margin-top: 28px; align-self: flex-start; }

/* faq — editorial accordion */
.faq { border-top: 1px solid var(--line); max-width: 840px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: clamp(24px, 3vw, 34px) 4px; }
.faq summary { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 1.6vw, 1.4rem); letter-spacing: -0.015em; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.7rem; font-weight: 300; transition: transform .3s var(--ease); color: var(--muted); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); color: var(--violet); }
.faq p { margin: 16px 0 0; color: var(--muted); font-size: 1.08rem; line-height: 1.6; max-width: 680px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); color: var(--text); padding-block: 60px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-about { margin-top: 18px; max-width: 300px; color: var(--muted); font-size: .94rem; }
.footer-legal { margin-top: 14px; color: var(--muted); font-size: .8rem; letter-spacing: .03em; opacity: .85; }
.footer-col h4 { font-family: var(--font-display); color: var(--ink); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: .94rem; padding: 6px 0; margin: 0; transition: color .2s; }
.footer-col a:hover { color: var(--violet); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: var(--muted); }

/* ---------- Editorial statement (Mi smo int32) ---------- */
.editorial-statement .eyebrow { justify-content: flex-start; }
.big-statement { font-size: clamp(34px, 5.4vw, 74px); line-height: 1.03; letter-spacing: -0.04em; margin-top: 22px; max-width: 20ch; }
.statement-body { margin-top: 36px; max-width: 600px; color: var(--muted); font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.55; }
.statement-body p + p { margin-top: 16px; }
.statement-body .btn { margin-top: 30px; }

/* "O nas" statement over a deep-ocean background image. */
.section-ocean {
  position: relative; isolation: isolate; overflow: hidden; background: #04101a;
}
/* Artwork and shade live on their own layers so the artwork can drift on scroll (--py/--ps set by app.js). */
.section-ocean::before, .mail-panel::before {
  content: ""; position: absolute; inset: -12% 0; z-index: -2;
  background: url("_attachments/glassdeep-bd0721.webp") center / cover no-repeat;
  transform: translate3d(0, var(--py, 0%), 0) scale(var(--ps, 1));
  will-change: transform;
}
.section-ocean::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(4,12,20,.74) 0%, rgba(5,15,25,.7) 55%, rgba(4,12,20,.8) 100%);
}
.section-ocean .eyebrow { color: rgba(255,255,255,.82); }
.section-ocean .eyebrow::before { background: rgba(255,255,255,.6); }
.section-ocean .big-statement { color: #fff; }
.section-ocean .statement-body { color: rgba(255,255,255,.82); }

/* Large cinematic editorial visual (wide ocean/glass brand moment). */
.editorial-visual { margin-top: clamp(52px, 7vw, 96px); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-glow); }
.editorial-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 7.5; display: block; transition: transform 1.2s var(--ease); }
.editorial-visual:hover img { transform: scale(1.02); }

/* ---------- Why int32 — oversized metrics + principles ---------- */
.why-head { max-width: 760px; margin-inline: auto; text-align: center; }
.why-head h2 { font-size: clamp(30px, 3.8vw, 54px); margin-top: 16px; letter-spacing: -0.03em; line-height: 1.04; }
.why-head p { margin: 18px auto 0; color: var(--muted); font-size: 1.15rem; line-height: 1.5; max-width: 560px; }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: clamp(48px, 6vw, 84px); }
.metric { text-align: center; }
.metric-num {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.05em;
  font-size: clamp(62px, 10vw, 150px); line-height: 1.05; padding-bottom: .08em;
  background: linear-gradient(125deg, var(--acc-blue) 0%, #0e3f66 78%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.metric-lbl { margin: 18px auto 0; color: var(--muted); font-size: 1.05rem; line-height: 1.5; max-width: 320px; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: clamp(56px, 7vw, 96px); padding-top: 46px; border-top: 1px solid var(--line); }
.principle h3 { font-size: 1.3rem; letter-spacing: -0.015em; }
.principle p { margin-top: 12px; color: var(--muted); line-height: 1.55; }

/* ---------- Process — dark editorial ledger ---------- */
.process-editorial .steps { margin-top: clamp(44px, 5vw, 72px); gap: 0; }
.process-editorial .step {
  background: transparent; border: 0; border-top: 1px solid rgba(255,255,255,.13);
  border-radius: 0; padding: clamp(26px, 3vw, 40px) 0; gap: clamp(20px, 4vw, 56px); align-items: baseline;
}
.process-editorial .step:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.process-editorial .step:hover { transform: none; box-shadow: none; }
.process-editorial .s-no {
  background: transparent; color: rgba(255,255,255,.34); width: auto; height: auto; border-radius: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem); font-weight: 700; letter-spacing: -0.04em; place-items: start;
}
.process-editorial .step h3 { color: #fff; font-size: clamp(1.35rem, 2vw, 1.8rem); letter-spacing: -0.02em; }
.process-editorial .step p { color: rgba(255,255,255,.6); margin-top: 12px; max-width: 620px; }

/* ---------- Company: name story (editorial numeric) ---------- */
.story-editorial { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.story-32 {
  font-family: var(--font-display); font-weight: 700; line-height: .78; letter-spacing: -0.06em;
  font-size: clamp(140px, 22vw, 320px);
  background: linear-gradient(140deg, var(--acc-blue) 0%, #0e3f66 82%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.story-bits { margin-top: 20px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82rem; letter-spacing: .34em; color: var(--muted); }
.story-editorial .story-text p { color: var(--text); }
.story-editorial .story-text p + p { margin-top: 16px; }

/* ---------- Company: values as editorial rows ---------- */
.values-editorial { margin-top: clamp(40px, 5vw, 76px); display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(40px, 6vw, 88px); }
.value-row { display: grid; grid-template-columns: 2.4rem 1fr; gap: 14px; padding: clamp(26px, 3vw, 38px) 0; border-top: 1px solid var(--line); }
.value-row .vr-no { font-family: var(--font-display); font-weight: 700; color: var(--acc-blue); font-size: 1rem; }
.value-row h3 { font-size: 1.35rem; letter-spacing: -0.015em; }
.value-row p { margin-top: 12px; color: var(--muted); line-height: 1.55; }

/* ---------- Company: approach statement ---------- */
.approach-statement { max-width: 820px; }
.approach-statement h2 { font-size: clamp(34px, 5vw, 68px); letter-spacing: -0.04em; line-height: 1.03; margin-top: 18px; }
.approach-statement > p { margin-top: 24px; font-size: clamp(1.08rem, 1.5vw, 1.3rem); color: var(--muted); line-height: 1.55; max-width: 620px; }
.approach-points { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; padding-top: 40px; border-top: 1px solid var(--line); }
.approach-points h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
.approach-points p { margin-top: 10px; color: var(--muted); line-height: 1.55; }

/* ---------- Final CTA — quiet, large ---------- */
.cta-final { text-align: center; max-width: 940px; margin-inline: auto; }
.cta-final .eyebrow { justify-content: center; }
.cta-final h2 { font-size: clamp(40px, 6.2vw, 88px); letter-spacing: -0.045em; line-height: 1.0; margin-top: 20px; }
.cta-final p { margin: 26px auto 0; max-width: 560px; color: var(--muted); font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.5; }
.cta-final .hero-cta { justify-content: center; margin-top: 40px; }
.section-dark .cta-final p { color: rgba(255,255,255,.66); }

/* ---------- Reveal ---------- */
html.js .reveal { opacity: 0; transform: translateY(56px) scale(.97); }
html.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 1s var(--ease), transform 1.1s var(--ease);
  transition-delay: calc(var(--d, 0) * 110ms);
}
/* Process steps sweep in from the left; artwork cards rise from further down. */
html.js .step.reveal { transform: translateX(-60px); }
html.js .fcard.reveal { transform: translateY(110px) scale(.94); }
html.js .fcard.reveal.is-in { transform: none; }
html.js .step.reveal.is-in { transform: none; }

/* Headlines split into words by app.js; each word rises out of its own mask. */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .14em; margin-bottom: -.14em; }
.wi { display: inline-block; will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .step.reveal, html.js .fcard.reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .bento { grid-template-columns: 1fr; }
  .bento-lg { grid-row: auto; }
}
@media (max-width: 900px) {
  /* Apple-style horizontal scroll of feature cards */
  .feature-scroller {
    display: flex; overflow-x: auto; gap: 16px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    margin-inline: -24px; padding: 4px 24px 12px;
    scrollbar-width: none;
  }
  .feature-scroller::-webkit-scrollbar { display: none; }
  .feat-card { min-width: 82%; scroll-snap-align: center; min-height: 420px; }
}
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .stats, .stats.two { grid-template-columns: 1fr; gap: 0; }
  .stat + .stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 26px; margin-top: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-feats { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; gap: 28px; }
  .feature-grid { grid-template-columns: 1fr; gap: 20px; }
  .fcard { min-height: 540px; }
  .story-editorial { grid-template-columns: 1fr; gap: 24px; }
  .story-32 { font-size: clamp(120px, 34vw, 220px); }
  .values-editorial { grid-template-columns: 1fr; gap: 0; }
  .approach-points { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-right .btn, .nav-right .lang-select { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu { display: block; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
  .hero-clip-title { letter-spacing: -0.025em; filter: drop-shadow(0 8px 18px rgba(19,42,92,.20)); }
  .metrics { grid-template-columns: 1fr; gap: 40px; }
  .svc-row { grid-template-columns: 1fr; gap: 14px; }
  .svc-feats { grid-template-columns: 1fr; }
  .process-editorial .step { grid-template-columns: auto 1fr; gap: 18px; }
}
