/* =========================================================
   MINK – izdelava spletnih strani
   ========================================================= */

:root {
  --paper: #f5f7fa;
  --paper-2: #e8eef5;
  --card: #ffffff;
  --ink: #0b1a2c;
  --ink-2: #132840;
  --muted: #55616f;
  --line: rgba(11, 26, 44, .12);
  --accent: #fc6326;
  --accent-ink: #ffffff;
  --accent-soft: #ffe3d6;
  --blue: #018ed1;
  --blue-ink: #0070aa;
  --blue-soft: #d9eef9;
  --blue-light: #4fb3ec;
  --logo-ink: var(--paper);

  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --shadow: 0 1px 2px rgba(11,26,44,.06), 0 12px 32px -12px rgba(11,26,44,.18);
  --shadow-lg: 0 2px 4px rgba(11,26,44,.05), 0 40px 80px -30px rgba(11,26,44,.35);
  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(72px, 10vw, 136px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -.02em; line-height: 1.08; }
p { margin: 0; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
::selection { background: var(--blue); color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip:focus { left: 8px; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* ---------- icons ---------- */
.i { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.i.fill { fill: currentColor; stroke: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.35em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: 700 15px/1.2 var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1.05em 1.6em; font-size: 16px; }
.btn-sm { padding: .6em 1.1em; font-size: 14px; }
.btn-block { width: 100%; }
.btn-accent { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 24px -10px rgba(252,99,38,.6); }
.btn-accent:hover { background: #ff7642; box-shadow: 0 14px 30px -10px rgba(252,99,38,.7); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.btn .i { transition: transform .2s ease; }
.btn:hover .i { transform: translateX(3px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,247,250, .8);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background-color .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(245,247,250, .92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 800; font-size: 21px; letter-spacing: .06em; }
.logo img { height: 48px; width: auto; }
@media (max-width: 640px) { .logo img { height: 40px; } }
.logo-light { color: var(--paper); --logo-ink: var(--ink); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a:not(.btn) {
  text-decoration: none; font-size: 14px; font-weight: 600; color: var(--muted); white-space: nowrap;
  padding: 8px 9px; border-radius: 999px; transition: color .2s, background-color .2s;
}
.nav a:not(.btn):hover, .nav a.active { color: var(--ink); background: rgba(11,26,44,.05); }
.nav-cta { margin-left: 8px; }

/* spustni meni Storitve */
.nav-drop { position: relative; }
.nav-drop-btn {
  display: inline-flex; align-items: center; gap: 4px; border: 0; background: transparent; cursor: pointer;
  font: 600 14px/1.6 var(--sans); color: var(--muted); padding: 8px 9px 8px 11px; border-radius: 999px; white-space: nowrap;
  transition: color .2s, background-color .2s;
}
.nav-drop-btn .i { width: 16px; height: 16px; transition: transform .25s ease; }
.nav-drop-btn:hover, .nav-drop-btn.active, .nav-drop.open .nav-drop-btn { color: var(--ink); background: rgba(11,26,44,.05); }
.nav-drop.open .nav-drop-btn .i { transform: rotate(180deg); }
.nav-sub {
  position: absolute; top: calc(100% + 10px); left: -12px; width: 330px; padding: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-sub::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; } /* most za miško */
.nav-drop.open .nav-sub { opacity: 1; visibility: visible; transform: none; }
@media (hover: hover) and (min-width: 1241px) {
  .nav-drop:hover .nav-sub { opacity: 1; visibility: visible; transform: none; }
  .nav-drop:hover .nav-drop-btn .i { transform: rotate(180deg); }
}
.nav .nav-sub a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; white-space: normal; color: var(--ink); }
.nav .nav-sub a:hover, .nav .nav-sub a.active { background: var(--paper); }
.nav-sub b { display: block; font-size: 14.5px; font-weight: 700; line-height: 1.3; }
.nav-sub small { display: block; font-size: 12.5px; font-weight: 500; color: var(--muted); line-height: 1.35; margin-top: 2px; }
.ns-ico { width: 38px; height: 38px; flex: none; border-radius: 11px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); }
.ns-ico .i { width: 19px; height: 19px; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--ink); border-radius: 50%; cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 13px; right: 13px; height: 2px; background: var(--paper); border-radius: 2px; transition: transform .3s ease, top .3s ease; }
.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 25px; }
.nav-open .nav-toggle span:first-child { top: 21px; transform: rotate(45deg); }
.nav-open .nav-toggle span:last-child { top: 21px; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(40px, 7vw, 96px) 0 0; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(closest-side, rgba(1,142,209, .16), transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; position: relative; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(1,142,209,.18); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(1,142,209,0); } }

.hero h1 { font-size: clamp(44px, 5.8vw, 74px); line-height: 1; letter-spacing: -.035em; font-weight: 800; }
.hero h1 em { color: var(--blue); font-size: 1.1em; line-height: .8; }
.lead { font-size: clamp(17px, 1.5vw, 19.5px); color: var(--muted); margin-top: 24px; max-width: 540px; }

.hero-price {
  display: inline-flex; align-items: center; gap: 18px; margin-top: 32px;
  padding: 16px 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow);
}
.hero-price > div { display: flex; flex-direction: column; }
.price-num { font-weight: 800; font-size: 34px; line-height: 1; letter-spacing: -.03em; }
.price-num.sm { font-size: 26px; color: var(--muted); }
.price-label { font-size: 13px; color: var(--muted); margin-top: 6px; font-weight: 600; }
.price-plus { font-family: var(--serif); font-size: 36px; color: var(--accent); line-height: 1; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-ticks { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: 14.5px; font-weight: 600; color: var(--muted); }
.hero-ticks li { display: inline-flex; align-items: center; gap: 8px; }
.hero-ticks .i { color: var(--blue); stroke-width: 2.6; }

/* browser stack */
.hero-visual { position: relative; aspect-ratio: 1 / .92; }
.browser {
  position: absolute; width: 78%;
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(11,26,44,.08);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.browser img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.browser-bar { display: flex; align-items: center; gap: 6px; height: 30px; padding: 0 12px; background: #f1efeb; border-bottom: 1px solid rgba(11,26,44,.06); }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #d9d5ce; }
.browser-bar i:first-child { background: #ff6b5b; }
.browser-bar i:nth-child(2) { background: #ffbd3f; }
.browser-bar i:nth-child(3) { background: #32c85a; }
.browser-bar span { margin-left: 10px; font-size: 11px; font-weight: 600; color: #8b8e95; background: #fff; padding: 3px 12px; border-radius: 6px; flex: 1; max-width: 220px; }
.b1 { top: 0; right: 0; transform: rotate(2.5deg); z-index: 1; }
.b2 { top: 26%; left: 0; transform: rotate(-3deg); z-index: 2; }
.b3 { bottom: 0; right: 4%; width: 62%; transform: rotate(1.5deg); z-index: 3; }
.hero-visual:hover .b1 { transform: rotate(3.5deg) translate(8px, -6px); }
.hero-visual:hover .b2 { transform: rotate(-4deg) translate(-8px, 0); }
.hero-visual:hover .b3 { transform: rotate(2deg) translate(6px, 8px); }

.hero-badge {
  position: absolute; left: 2%; bottom: 3%; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--paper); padding: 10px 20px 10px 10px; border-radius: 999px;
  box-shadow: var(--shadow-lg);
}
.badge-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; flex: none; }
.badge-icon .i { width: 20px; height: 20px; }
.hero-badge b { display: block; font-size: 14.5px; font-weight: 700; }
.hero-badge span:last-child { font-size: 12.5px; line-height: 1.35; color: rgba(245,247,250,.7); }

/* marquee */
.marquee { margin-top: clamp(56px, 8vw, 96px); border-block: 1px solid var(--line); padding: 20px 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 50s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); color: var(--muted); padding: 0 24px; white-space: nowrap; display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after { content: "✦"; font-size: .5em; color: var(--accent); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* hero – dark with weasel photo */
.hero { background: var(--ink); color: var(--paper); isolation: isolate; }
.hero::before { inset: auto auto -30% -20%; background: radial-gradient(closest-side, rgba(1,142,209,.22), transparent 70%); z-index: 1; }
.hero-grid { z-index: 2; min-height: clamp(520px, 62vh, 640px); }
.hero-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 64%; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 54% 42%; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(11,26,44,.88) 16%, rgba(11,26,44,.35) 40%, rgba(11,26,44,0) 62%),
    linear-gradient(0deg, var(--ink) 0%, rgba(11,26,44,.6) 12%, rgba(11,26,44,0) 32%),
    linear-gradient(180deg, rgba(11,26,44,.35) 0%, rgba(11,26,44,0) 18%);
}
.hero h1 em { color: var(--blue-light); }
.hero .eyebrow { color: rgba(245,247,250,.72); }
.hero .lead { color: rgba(245,247,250,.78); }
.hero-ticks { color: rgba(245,247,250,.78); }
.hero-ticks .i { color: var(--blue-light); }
.hero-price { color: var(--ink); border-color: transparent; }
.hero-aside { align-self: stretch; display: flex; align-items: flex-end; justify-content: flex-end; padding-bottom: 12px; }
.hero-badge { position: static; background: rgba(11,26,44,.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(245,247,250,.14); }
.hero .marquee { position: relative; z-index: 2; border-color: rgba(245,247,250,.12); }
.hero .marquee-track span { color: rgba(245,247,250,.6); }

/* ---------- sections ---------- */
.section { padding: var(--section) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.split { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 64px; align-items: end; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-ink); margin-bottom: 18px; }
.kicker::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.section-head.center .kicker::after { content: ""; width: 22px; height: 2px; background: currentColor; }
h2 { font-size: clamp(34px, 4.6vw, 58px); letter-spacing: -.03em; font-weight: 800; }
h2 em { color: var(--blue); font-size: 1.08em; }
.section-lead { font-size: clamp(16.5px, 1.4vw, 19px); color: var(--muted); margin-top: 20px; }
.section-head.split .section-lead { margin-top: 0; }

/* why */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; transition: transform .3s ease, box-shadow .3s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.f-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); margin-bottom: 22px; }
.f-icon .i { width: 24px; height: 24px; }
.feature h3 { font-size: 19px; margin-bottom: 10px; }
.feature p { font-size: 15.5px; color: var(--muted); }

/* package */
.package { background: var(--paper-2); }
.pricing { display: grid; grid-template-columns: 1.15fr auto 1fr; align-items: center; gap: 20px; max-width: 1040px; margin: 0 auto; }
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); height: 100%; display: flex; flex-direction: column; }
.price-card.main { background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.price-card.main::before { content: ""; position: absolute; right: -120px; top: -120px; width: 320px; height: 320px; background: radial-gradient(closest-side, rgba(1,142,209,.45), transparent); pointer-events: none; }
.pc-head { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line); position: relative; }
.main .pc-head { border-color: rgba(245,247,250,.14); }
.pc-name { font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.pc-price { font-size: 26px; font-weight: 700; margin-top: 10px; line-height: 1; }
.pc-price span { font-size: clamp(64px, 8vw, 92px); font-weight: 800; letter-spacing: -.05em; }
.main .pc-price span { color: var(--accent); }
.pc-note { margin-top: 10px; font-size: 14.5px; opacity: .7; }
.checklist { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 12px; align-content: start; flex: 1; position: relative; }
.checklist li { position: relative; padding-left: 32px; font-size: 15.5px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230070aa' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4L18 8'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.main .checklist li::before { background-color: rgba(1,142,209,.16); }
.price-plus-big { font-family: var(--serif); font-size: 64px; color: var(--accent); line-height: 1; }
.pc-extra { margin-top: auto; padding: 20px; border-radius: var(--r-sm); background: var(--paper); font-size: 14.5px; color: var(--muted); }
.pc-extra-title { font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.pricing-foot { text-align: center; margin-top: 36px; color: var(--muted); font-size: 15px; }
.pricing-foot a { color: var(--ink); font-weight: 700; text-underline-offset: 3px; }

/* process */
.process { background: var(--paper-2); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; padding: 28px 24px 30px; border-top: 2px solid var(--ink); }
.step::before { content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); }
.step-num { display: block; font-family: var(--serif); font-size: 56px; line-height: 1; color: var(--blue); margin-bottom: 18px; }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* refs */
.ref-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ref-card { display: block; text-decoration: none; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
.ref-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ref-shot { overflow: hidden; aspect-ratio: 16 / 10; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.ref-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.ref-card:hover .ref-shot img { transform: scale(1.045); }
.ref-meta { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; }
.ref-meta h3 { font-size: 17px; letter-spacing: -.01em; }
.ref-card.lg .ref-meta h3 { font-size: 21px; }
.ref-meta p { font-size: 14px; color: var(--muted); margin-top: 3px; }
.ref-tag { flex: none; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; background: var(--paper-2); color: var(--muted); }
.ref-more { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 32px; font-size: 15px; color: var(--muted); }
.ref-more span { font-weight: 700; color: var(--ink); margin-right: 4px; }
.ref-more a { text-decoration: none; padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; transition: border-color .2s, color .2s; }
.ref-more a:hover { border-color: var(--blue); color: var(--blue); }
.ref-etc { font-family: var(--serif); font-size: 21px; color: var(--muted); margin-left: 6px; }

/* quotes */
.quotes { background: var(--ink); color: var(--paper); }
.quotes .section-lead { color: rgba(245,247,250,.7); }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.quote { margin: 0; padding: clamp(28px, 3.5vw, 40px); border-radius: var(--r-lg); background: var(--ink-2); border: 1px solid rgba(245,247,250,.08); display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.quote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(22px, 2.2vw, 28px); line-height: 1.3; }
.quote figcaption { display: flex; align-items: center; gap: 14px; font-size: 14px; color: rgba(245,247,250,.65); }
.quote figcaption strong { display: block; color: var(--paper); font-size: 15.5px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: #fff; font-weight: 800; font-size: 14px; flex: none; }

/* software */
.products { display: grid; gap: 24px; }
.product { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.product:nth-child(even) .product-shot { order: 2; }
.product-shot { display: block; overflow: hidden; background: var(--paper-2); }
.product-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.product:hover .product-shot img { transform: scale(1.04); }
.product-body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.product-tag { font-size: 13px; font-weight: 700; color: var(--blue-ink); letter-spacing: .08em; text-transform: uppercase; }
.product h3 { font-size: clamp(30px, 3.4vw, 42px); margin: 10px 0 14px; }
.product-body > p:not(.product-tag) { color: var(--muted); }
.pills { list-style: none; padding: 0; margin: 22px 0 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.pills li { font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: var(--paper-2); }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; text-decoration: none; color: var(--ink); border-bottom: 2px solid var(--blue); padding-bottom: 3px; align-self: flex-start; }
.link-arrow:hover { color: var(--blue); }

.custom-dev { margin-top: 24px; display: grid; grid-template-columns: 1fr 2fr; gap: clamp(24px, 4vw, 56px); padding: clamp(28px, 4vw, 48px); border-radius: var(--r-lg); background: var(--paper-2); }
.cd-intro h3 { font-size: 26px; margin-bottom: 12px; }
.cd-intro p { color: var(--muted); }
.cd-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; }
.cd-list li { border-top: 1px solid var(--line); padding-top: 16px; }
.cd-list strong { display: block; font-size: 16.5px; }
.cd-list span { color: var(--muted); font-size: 15px; }

/* about */
.about { }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.photo-frame { position: relative; aspect-ratio: 1 / 1; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(145deg, var(--ink) 0%, #173150 100%); }
.photo-frame::after { content: ""; position: absolute; inset: auto -20% -30% auto; width: 80%; height: 70%; background: radial-gradient(closest-side, rgba(1,142,209,.55), transparent); }
.photo-frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.photo-fallback { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: clamp(96px, 14vw, 180px); color: var(--paper); opacity: .9; }
.about-copy > p:not(.kicker):not(.section-lead) { color: var(--muted); margin-top: 18px; }
.about-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* faq */
.faq { background: var(--paper-2); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.faq-grid .section-head { position: sticky; top: 110px; }
.faq-list { display: grid; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); transition: box-shadow .25s ease; }
.faq details[open] { box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 64px 22px 24px; font-weight: 700; font-size: 17px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 28px; height: 28px; margin-top: -14px; border-radius: 50%; background: var(--paper-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1a2c' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 14px no-repeat; transition: transform .3s ease, background-color .3s; }
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--blue-soft); }
.faq details p { padding: 0 24px 24px; color: var(--muted); }

/* contact */
.contact { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; left: -15%; bottom: -40%; width: 60vw; height: 60vw; max-width: 800px; max-height: 800px; background: radial-gradient(closest-side, rgba(1,142,209,.22), transparent); pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 88px); position: relative; }
.contact .section-lead { color: rgba(245,247,250,.7); }
.contact-list { list-style: none; padding: 0; margin: 40px 0 0; display: grid; gap: 0; }
.contact-list li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(245,247,250,.12); font-size: 17px; }
.contact-list span { color: rgba(245,247,250,.55); font-size: 14px; font-weight: 600; padding-top: 2px; }
.contact-list a { text-decoration: none; font-weight: 700; }
.contact-list a:hover { color: var(--blue); }

.contact-form { background: var(--paper); color: var(--ink); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 44px); display: grid; gap: 16px; box-shadow: var(--shadow-lg); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; border: 0; margin: 0; padding: 0; min-width: 0; }
.field > span, .field legend { font-size: 13.5px; font-weight: 700; }
.field legend { margin-bottom: 7px; padding: 0; }
.field input, .field textarea {
  width: 100%; font: 500 16px/1.4 var(--sans); color: var(--ink);
  padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--card);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(1,142,209,.15); }
.field input.invalid, .field textarea.invalid { border-color: #d93a1a; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label { position: relative; }
.chips input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chips span { display: inline-block; padding: 9px 14px; border-radius: 999px; border: 1.5px solid var(--line); font-size: 14px; font-weight: 600; background: var(--card); transition: all .2s; }
.chips input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chips input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); cursor: pointer; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); flex: none; }
.consent.invalid span { color: #d93a1a; }
.form-status { font-size: 15px; font-weight: 600; min-height: 1em; text-align: center; }
.form-status.ok { color: #178a3e; }
.form-status.err { color: #d93a1a; }

/* footer */
.site-footer { background: #07121f; color: rgba(245,247,250,.7); padding: 72px 0 28px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-tag { margin-top: 16px; max-width: 260px; }
.footer-h { color: var(--paper); font-weight: 700; margin-bottom: 12px; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(245,247,250,.1); font-size: 13.5px; }

.mobile-cta { display: none; }

/* ---------- subpages ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 112px) 0 clamp(40px, 6vw, 72px); border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; right: -15%; top: -60%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; background: radial-gradient(closest-side, rgba(1,142,209,.14), transparent 70%); pointer-events: none; }
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(40px, 6vw, 76px); line-height: 1.02; letter-spacing: -.035em; font-weight: 800; max-width: 900px; }
.page-hero h1 em, .contact-page h1 em { color: var(--blue); font-size: 1.08em; }
.page-hero .lead { max-width: 640px; }
.crumbs { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 22px; }
.crumbs a { text-decoration: none; color: var(--ink); }
.crumbs a:hover { color: var(--blue); }
.crumbs span { opacity: .45; }
.crumbs.light { color: rgba(245,247,250,.6); }
.crumbs.light a { color: var(--paper); }
.kicker.light { color: var(--blue-light); }
.quotes h2 em, .price-band h2 em, .contact-page h1 em { color: var(--blue-light); }
.cta-band h2 em { color: var(--accent); }
.price-band .kicker, .quotes .kicker, .cta-band .kicker, .contact .kicker { color: var(--blue-light); }

.btn-outline-light { border-color: rgba(245,247,250,.3); color: var(--paper); background: transparent; }
.btn-outline-light:hover { border-color: var(--paper); }

/* CTA band */
.cta-band { background: var(--ink); color: var(--paper); padding: clamp(64px, 8vw, 104px) 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; left: -10%; bottom: -80%; width: 60vw; height: 60vw; max-width: 780px; max-height: 780px; background: radial-gradient(closest-side, rgba(252,99,38,.25), transparent); pointer-events: none; }
.cta-inner { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px 64px; align-items: center; }
.cta-band .section-lead { color: rgba(245,247,250,.7); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* home: price band */
.price-band-wrap { padding-top: 0; }
.price-band { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px 64px; align-items: center; background: var(--ink); color: var(--paper); border-radius: var(--r-lg); padding: clamp(32px, 5vw, 64px); position: relative; overflow: hidden; }
.price-band::before { content: ""; position: absolute; right: -140px; top: -140px; width: 420px; height: 420px; background: radial-gradient(closest-side, rgba(1,142,209,.4), transparent); pointer-events: none; }
.price-band > * { position: relative; }
.price-band .section-lead { color: rgba(245,247,250,.7); }
.pb-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.pb-prices { display: flex; align-items: center; gap: 20px; justify-content: center; }
.pb-price { display: flex; flex-direction: column; }
.pb-num { font-weight: 800; font-size: clamp(56px, 6.5vw, 84px); letter-spacing: -.05em; line-height: 1; color: var(--accent); }
.pb-num.sm { font-size: clamp(36px, 4vw, 52px); color: var(--paper); }
.pb-label { font-size: 13.5px; color: rgba(245,247,250,.65); margin-top: 10px; line-height: 1.45; }
.pb-plus { font-family: var(--serif); font-size: 56px; color: var(--accent); line-height: 1; }

.more-link { display: flex; justify-content: center; margin-top: 40px; }
.home-refs { padding-top: 0; }

/* home: teasers */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.teaser { display: flex; flex-direction: column; text-decoration: none; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; transition: transform .3s ease, box-shadow .3s ease; }
.teaser:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.teaser h3 { font-size: 22px; margin-bottom: 10px; }
.teaser p:not(.kicker) { color: var(--muted); font-size: 15.5px; margin-bottom: 24px; }
.teaser .link-arrow { margin-top: auto; }

/* cenik: addons */
.addons { padding-top: 0; background: var(--paper-2); }

/* postopek */
.steps-detailed .step p { font-size: 16px; }
.prep-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.prep-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.prep-list li { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px 22px 64px; position: relative; }
.prep-list li::before { content: ""; position: absolute; left: 22px; top: 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230070aa' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4L18 8'/%3E%3C/svg%3E") center / 14px no-repeat; }
.prep-list strong { display: block; font-size: 17px; }
.prep-list span { color: var(--muted); font-size: 15.5px; }

/* o meni */
.values { background: var(--paper-2); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; }
.value h3 { font-size: 21px; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: 15.5px; }
.about-copy h2 { margin-bottom: 8px; }

/* vprasanja */
.faq-wrap { max-width: 860px; }
.faq details p a { color: var(--ink); font-weight: 700; text-underline-offset: 3px; }

/* kontakt */
.contact-page { padding-top: clamp(56px, 8vw, 104px); }
.contact-page h1 { font-size: clamp(38px, 5vw, 64px); line-height: 1.03; letter-spacing: -.035em; font-weight: 800; }
.page-kontakt .mobile-cta { display: none !important; }

/* spletne trgovine */
.features.features-3 { grid-template-columns: repeat(3, 1fr); }
.page-hero .hero-cta { margin-top: 32px; }
.shop-price { padding-top: 0; }
.shop-faq { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.shop-faq li { background: rgba(245,247,250,.06); border: 1px solid rgba(245,247,250,.1); border-radius: var(--r); padding: 18px 20px; }
.shop-faq strong { display: block; font-size: 16px; margin-bottom: 4px; }
.shop-faq span { font-size: 14.5px; color: rgba(245,247,250,.7); }
.home-shop { padding-top: 0; }
.addon-link { margin-top: 14px; font-size: 14.5px; }
.shop-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.shop-teaser-shot { background: var(--paper-2); overflow: hidden; }
.shop-teaser-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.shop-teaser-body { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.shop-teaser-body h2 { font-size: clamp(30px, 3.6vw, 46px); }
.shop-teaser-body .checklist { margin: 24px 0 28px; flex: none; }
.shop-teaser-body .btn { align-self: flex-start; }

/* seo */
.seo-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.seo-hero h1 { font-size: clamp(40px, 5.2vw, 68px); }
.ai-chat { margin: 0; background: var(--ink); color: var(--paper); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-lg); position: relative; }
.ai-chat::before { content: ""; position: absolute; inset: -30px -30px auto auto; width: 180px; height: 180px; background: radial-gradient(closest-side, rgba(1,142,209,.45), transparent); pointer-events: none; }
.ai-chat-bar { display: flex; align-items: center; gap: 10px; font-size: 14px; padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid rgba(245,247,250,.1); position: relative; }
.ai-dot { width: 10px; height: 10px; border-radius: 50%; background: #32c85a; box-shadow: 0 0 0 4px rgba(50,200,90,.18); }
.ai-chip { margin-left: auto; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; padding: 4px 10px; border-radius: 999px; background: rgba(1,142,209,.2); color: var(--blue-light); }
.ai-msg { border-radius: 18px; padding: 14px 16px; font-size: 15px; line-height: 1.55; position: relative; }
.ai-user { background: var(--blue); color: #fff; margin-left: 18%; border-bottom-right-radius: 6px; }
.ai-bot { background: rgba(245,247,250,.07); border: 1px solid rgba(245,247,250,.1); margin-top: 14px; margin-right: 6%; border-bottom-left-radius: 6px; }
.ai-bot p + p, .ai-bot ul + p { margin-top: 10px; }
.ai-bot strong { color: #fff; }
.ai-bot ul { margin: 10px 0 0; padding-left: 18px; color: rgba(245,247,250,.8); }
.ai-bot li { margin: 3px 0; }
.ai-bot li::marker { color: var(--accent); }
.ai-src { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--blue-light); background: rgba(1,142,209,.14); padding: 4px 10px; border-radius: 999px; }
.ai-src .i { width: 14px; height: 14px; }
.ai-chat figcaption { font-size: 12.5px; color: rgba(245,247,250,.5); margin-top: 16px; }
.seo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.seo-col { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); }
.seo-col.dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.seo-col-tag { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-ink); }
.seo-col.dark .seo-col-tag { color: var(--blue-light); }
.seo-col h3 { font-size: clamp(26px, 3vw, 34px); margin: 10px 0 24px; }
.seo-col h3 em { color: var(--blue); }
.seo-col.dark h3 em { color: var(--blue-light); }
.seo-col .checklist { margin: 0; }
.seo-col.dark .checklist li { color: rgba(245,247,250,.8); }
.seo-col.dark .checklist strong { color: #fff; }
.seo-col.dark .checklist li::before { background-color: rgba(1,142,209,.2); }
.seo-proof { padding-top: 0; }

/* hero – poslovna kartica na fotografiji */
.hero-offer {
  display: flex; align-items: stretch; gap: 18px; max-width: 390px; text-decoration: none; color: var(--paper);
  background: rgba(11,26,44,.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245,247,250,.16); border-radius: var(--r); padding: 16px 20px 16px 16px;
  box-shadow: var(--shadow-lg); transition: transform .25s ease, border-color .25s ease;
}
.hero-offer:hover { transform: translateY(-3px); border-color: rgba(252,99,38,.6); }
.ho-stat { flex: none; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 78px; padding: 8px 10px; border-radius: 14px; background: var(--accent); color: #fff; font-size: 12.5px; font-weight: 700; line-height: 1.1; }
.ho-stat b { font-size: 30px; font-weight: 800; letter-spacing: -.03em; line-height: 1; margin-bottom: 2px; }
.ho-text { display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.ho-text strong { font-size: 15.5px; line-height: 1.3; }
.ho-text > span { font-size: 13px; color: rgba(245,247,250,.72); line-height: 1.4; }
.ho-text .ho-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 13.5px; font-weight: 700; color: var(--blue-light); }
.ho-link .i { width: 15px; height: 15px; transition: transform .2s ease; }
.hero-offer:hover .ho-link .i { transform: translateX(3px); }

/* hero – prosojne kartice storitev */
.hero-services { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: clamp(32px, 4vw, 56px); }
.hs-card {
  display: flex; align-items: center; gap: 12px; min-height: 76px; padding: 14px 16px; text-decoration: none; color: var(--paper);
  background: rgba(11,26,44,.42); backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(245,247,250,.16); border-radius: var(--r);
  box-shadow: 0 20px 40px -24px rgba(0,0,0,.6);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}
.hs-card:hover { transform: translateY(-4px); background: rgba(11,26,44,.62); border-color: rgba(252,99,38,.65); }
.hs-ico { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(1,142,209,.22); color: var(--blue-light); transition: background-color .25s, color .25s; }
.hs-card:hover .hs-ico { background: var(--accent); color: #fff; }
.hs-ico .i { width: 20px; height: 20px; }
.hs-title { font-size: 14.5px; font-weight: 700; line-height: 1.3; }
@media (max-width: 1080px) { .hero-services { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 960px) {
  .hero-services { grid-template-columns: repeat(2, 1fr); margin-top: 16px; }
  .hs-card { background: rgba(245,247,250,.06); }
  .hs-card:first-child { grid-column: 1 / -1; }
}

/* mobilna aplikacija */
.app-photo { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--paper-2); }
.app-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.app-photo.tall img { aspect-ratio: 4 / 5; }
.app-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.app-split .section-head { margin-bottom: 28px; }
.app-list { margin: 0; }
.app-list li { font-size: 16px; }
.app-price { padding-top: 0; }
@media (max-width: 960px) {
  .app-split { grid-template-columns: 1fr; }
  .app-photo.tall img { aspect-ratio: 4 / 3; }
}

/* domača stran – AI optimizacija */
.home-ai { padding-top: 0; }
.home-ai-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.home-ai-grid .hero-cta { margin-top: 28px; }
@media (max-width: 960px) { .home-ai-grid { grid-template-columns: 1fr; } }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1240px) {
  .nav-toggle { display: block; z-index: 2; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); padding: 16px var(--gutter) 28px; border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 40px -20px rgba(11,26,44,.25);
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all .25s ease;
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav-open .nav { transform: none; opacity: 1; visibility: visible; }
  .nav a:not(.btn) { font-size: 17px; padding: 14px 12px; }
  .nav-cta { margin: 12px 0 0; padding: 14px; font-size: 16px; }
  .nav-drop-btn { width: 100%; justify-content: space-between; font-size: 17px; padding: 14px 12px; }
  .nav-sub { position: static; width: auto; box-shadow: none; border: 0; background: transparent; padding: 0 0 6px 8px; display: none; opacity: 1; visibility: visible; transform: none; }
  .nav-sub::before { display: none; }
  .nav-drop.open .nav-sub { display: block; }
}

@media (max-width: 1080px) {
  .features, .features.features-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
}

@media (max-width: 960px) {

  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-aside { display: none; }
  .hero-photo { position: relative; width: auto; height: clamp(260px, 62vw, 460px); margin: 36px var(--gutter) 0; border-radius: var(--r-lg); overflow: hidden; }
  .hero-photo::after { background: linear-gradient(0deg, rgba(11,26,44,.35) 0%, rgba(11,26,44,0) 40%); }
  .hero-photo img { object-position: 54% 45%; }
  .hero-visual { max-width: 620px; width: 100%; margin: 12px auto 0; }
  .section-head.split { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 560px; }
  .price-plus-big { text-align: center; margin: -8px 0; }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .product, .custom-dev, .shop-teaser, .seo-hero-grid, .seo-cols { grid-template-columns: 1fr; }
  .shop-teaser-shot { aspect-ratio: 16 / 10; }
  .product:nth-child(even) .product-shot { order: 0; }
  .product-shot { aspect-ratio: 16 / 10; }
  .about-grid, .faq-grid, .contact-grid, .price-band, .prep-grid, .cta-inner { grid-template-columns: 1fr; }
  .pb-prices { justify-content: flex-start; }
  .cta-actions { justify-content: flex-start; }
  .teaser-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; }
  .faq-grid .section-head { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-inner { height: 64px; }
  .nav { inset: 64px 0 auto 0; }
  .hero h1 { font-size: clamp(40px, 11vw, 56px); }
  .hero-price { display: flex; gap: 14px; padding: 14px 18px; }
  .price-num { font-size: 30px; }
  .price-num.sm { font-size: 22px; }
  .hero-cta .btn { width: 100%; }
  .hero-badge { padding: 8px 14px 8px 8px; gap: 10px; }
  .badge-icon { width: 32px; height: 32px; }
  .hero-badge b { font-size: 13px; }
  .hero-badge span:last-child { font-size: 11.5px; }
  .page-hero { padding: 48px 0 40px; }
  .price-band { padding: 28px 22px; }
  .pb-prices { flex-direction: column; align-items: flex-start; }
  .cta-actions .btn, .pb-actions .btn { width: 100%; }
  .teaser-grid, .value-grid { grid-template-columns: 1fr; }
  .browser-bar { height: 22px; padding: 0 8px; gap: 4px; }
  .browser-bar i { width: 6px; height: 6px; }
  .browser-bar span { display: none; }
  .features, .features.features-3, .steps, .ref-featured, .ref-grid, .quote-grid, .cd-list, .field-row { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr; }
  .faq summary { font-size: 16px; padding: 18px 56px 18px 18px; }
  .faq details p { padding: 0 18px 18px; }

  .mobile-cta {
    display: flex; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40;
    padding: 15px; font-size: 15.5px;
    transform: translateY(140%); transition: transform .35s ease;
  }
  .mobile-cta.show { transform: none; }
  .mobile-cta:hover { transform: none; }
}
