/* ===================================================================
   jauns-lifts.lv - components v2
   =================================================================== */

/* ===================================================================
   HOME HERO - split: intro + calculator
   =================================================================== */
.hero-home { position: relative; color: #fff; overflow: hidden; padding: 150px 0 110px;
  background-color: var(--ink);
  background-image:
    radial-gradient(820px 560px at 86% 16%, rgba(124,194,66,0.12), transparent 62%),
    linear-gradient(100deg, var(--ink) 30%, rgba(17,36,28,0.66) 56%, rgba(17,36,28,0.28) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='760' viewBox='0 0 600 760' fill='none' stroke='%237cc242' stroke-opacity='0.15' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='170' y='40' width='280' height='690'/%3E%3Cline x1='310' y1='40' x2='310' y2='730'/%3E%3Cline x1='170' y1='120' x2='450' y2='120'/%3E%3Cline x1='170' y1='200' x2='450' y2='200'/%3E%3Cline x1='170' y1='280' x2='450' y2='280'/%3E%3Cline x1='170' y1='360' x2='450' y2='360'/%3E%3Cline x1='170' y1='440' x2='450' y2='440'/%3E%3Cline x1='170' y1='520' x2='450' y2='520'/%3E%3Cline x1='170' y1='600' x2='450' y2='600'/%3E%3Cline x1='170' y1='680' x2='450' y2='680'/%3E%3Crect x='240' y='300' width='140' height='180'/%3E%3Cline x1='310' y1='300' x2='310' y2='480'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center, center, right -30px bottom -10px; background-size: auto, cover, auto 94%;
}
.hero-home__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background: #11241c;
  object-fit: cover; object-position: center;
  z-index: 0; pointer-events: none;
  /* minimal zoom + slight left push; no blur so the footage stays crisp */
  transform: scale(1.18) translateX(-9%);
  transform-origin: center;
  filter: brightness(0.9) saturate(1.1) contrast(1.06);
}
.hero-home__scrim {
  position: absolute; inset: 0; z-index: 1;
  /* darken only the left copy zone for legibility; let the footage read on the right */
  background: linear-gradient(100deg, rgba(17,36,28,0.88) 0%, rgba(17,36,28,0.60) 26%, rgba(17,36,28,0.22) 46%, rgba(17,36,28,0.06) 64%, transparent 80%);
}
.hero-home__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-home__copy h1 { margin: 0 0 26px; font-size: clamp(46px, 5.6vw, 76px); line-height: 1.02; }
.hero-home__copy .lead { max-width: 480px; font-size: clamp(18px, 1.5vw, 21px); }
.hero-home__cta { display: flex; align-items: center; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.hero-home__phone { display: inline-flex; align-items: center; gap: 14px; transition: opacity .2s var(--ease); }
.hero-home__phone:hover { opacity: .82; }
.hero-home__phone-ico { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.28); display: grid; place-items: center; color: var(--amber); flex-shrink: 0; transition: border-color .2s var(--ease); }
.hero-home__phone:hover .hero-home__phone-ico { border-color: var(--amber); }
.hero-home__phone-ico svg { width: 21px; height: 21px; }
.hero-home__phone-txt { display: flex; flex-direction: column; gap: 2px; }
.hero-home__phone-txt b { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.hero-home__phone-txt i { font-style: normal; font-size: 13.5px; color: var(--on-dark-soft); }
.hero-home__points { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.hero-home__point { display: flex; align-items: center; gap: 14px; font-size: 17px; font-weight: 500; color: var(--on-dark-soft); }
.hero-home__point svg { width: 22px; height: 22px; color: var(--amber); flex-shrink: 0; }

/* ===================================================================
   CALCULATOR - icon chip card (ZOLT-style)
   =================================================================== */
.calc-card { background: var(--amber); border-radius: var(--r-lg); padding: 44px; box-shadow: var(--shadow-lg); }
/* hero form fade-in on page load: 300ms delay, 250ms opacity/visibility ease */
@media (prefers-reduced-motion: no-preference) {
  .hero-home .calc-card { animation: calcIn .8s ease-out .3s both; }
}
@keyframes calcIn { from { opacity: 0; visibility: hidden; } to { opacity: 1; visibility: visible; } }
.calc-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.calc-card__head svg { width: 32px; height: 32px; color: var(--ink); }
.calc-card h3 { color: var(--ink); font-size: clamp(28px, 3vw, 36px); font-weight: 900; letter-spacing: -0.03em; }
.calc-card__sub { color: #2c4a17; font-size: 16px; font-weight: 500; margin-bottom: 30px; }

.calc-field { margin-bottom: 24px; }
.calc-field__label { display: block; font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }

.chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.chips--2 { grid-template-columns: repeat(2, 1fr); }
.chip {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--white); border: 2px solid transparent; border-radius: 12px;
  padding: 15px 12px; cursor: pointer; font: inherit; font-size: 15px; font-weight: 700;
  color: var(--ink); transition: all .2s var(--ease); text-align: center; line-height: 1.2;
}
.chip svg { width: 22px; height: 22px; flex-shrink: 0; transition: color .2s; }
.chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.chip.selected { background: var(--ink); color: #fff; }
.chip.selected svg { color: var(--amber); }
.chip__stack { display: flex; flex-direction: column; align-items: center; gap: 7px; }

/* ===================================================================
   DARK CALCULATOR + BUILDING-TYPE ROUTER
   =================================================================== */
.calc-card--dark { background: var(--ink); }
.calc-card--dark .calc-card__head svg { color: var(--amber); }
.calc-card--dark h3 { color: #fff; }
.calc-card--dark .calc-card__sub { color: var(--on-dark-soft); }
.calc-card--dark .calc-field__label { color: var(--on-dark-mute); }
.calc-card--dark .calc-note { color: var(--on-dark-mute); }
.calc-card--dark .calc-note a { color: var(--amber); }
.calc-step[hidden] { display: none; }
.calc-step { animation: cstepin .35s var(--ease); }
@keyframes cstepin { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.calc-back { display: inline-flex; align-items: center; gap: 7px; background: none; border: none; cursor: pointer; font: inherit; font-size: 13px; font-weight: 800; letter-spacing: 0.02em; color: var(--on-dark-soft); padding: 0; margin-bottom: 20px; transition: color .2s var(--ease); }
.calc-back svg { width: 15px; height: 15px; }
.calc-back:hover { color: var(--amber); }
.optlist { display: flex; flex-direction: column; gap: 11px; }
.optrow { display: flex; align-items: center; gap: 16px; width: 100%; text-align: left; padding: 17px 18px; border-radius: 14px; border: 1px solid var(--border-dark); background: rgba(255,255,255,.04); color: #fff; cursor: pointer; font: inherit; transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease); }
.optrow:hover { border-color: var(--amber); background: rgba(124,194,66,.08); transform: translateX(3px); }
.optrow__ico { width: 46px; height: 46px; border-radius: 11px; background: rgba(124,194,66,.13); color: var(--amber); display: grid; place-items: center; flex-shrink: 0; }
.optrow__ico svg { width: 24px; height: 24px; }
.optrow__txt { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.optrow__txt b { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; }
.optrow__txt i { font-style: normal; font-size: 13px; color: var(--on-dark-soft); }
.optrow__arrow { width: 20px; height: 20px; color: var(--on-dark-mute); flex-shrink: 0; transition: color .2s var(--ease), transform .2s var(--ease); }
.optrow:hover .optrow__arrow { color: var(--amber); transform: translateX(3px); }
.calc-contact__title { font-size: clamp(22px, 2.4vw, 28px); font-weight: 800; letter-spacing: -0.02em; color: #fff; margin-bottom: 8px; }
.calc-contact__intro { font-size: 15px; color: var(--on-dark-soft); margin-bottom: 22px; line-height: 1.55; }

/* ===================================================================
   SPEC PAGE (aprekins.html)
   =================================================================== */
.hero--spec { min-height: 0; padding: 132px 0 76px; }
.hero--spec .spec-eyebrow { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
.specgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.speccard { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 30px 28px; display: flex; flex-direction: column; gap: 22px; }
.speccard__head { display: flex; align-items: center; gap: 14px; }
.speccard__tag { font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber-600); background: var(--amber-soft); padding: 6px 12px; border-radius: 100px; }
.speccard__head h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.blueprint { background: #eef2e8; border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.blueprint svg { width: 100%; height: auto; display: block; }
.bp-shaft { stroke: var(--text-mute); stroke-width: 1.4; stroke-dasharray: 6 4; fill: none; }
.bp-cabin { stroke: var(--ink); stroke-width: 2; fill: rgba(124,194,66,.07); }
.bp-door { stroke: var(--amber-600); stroke-width: 3; fill: none; }
.bp-dim, .bp-ext { stroke: var(--amber-600); fill: none; }
.bp-dim { stroke-width: 1.3; }
.bp-ext { stroke-width: 1; opacity: .55; }
.bp-arrow { fill: none; stroke: var(--amber-600); stroke-width: 1.3; }
.bp-label { fill: var(--ink); font: 800 15px 'Inter', sans-serif; }
.bp-cap { fill: var(--text-mute); font: 600 10.5px 'Inter', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
.spectable { width: 100%; border-collapse: collapse; }
.spectable td { padding: 12px 2px; border-bottom: 1px solid var(--border); font-size: 14.5px; vertical-align: middle; }
.spectable tr:last-child td { border-bottom: none; }
.spectable td:first-child { color: var(--text); font-weight: 500; }
.spectable td:last-child { text-align: right; }
.spec-ref { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 7px; background: var(--amber-soft); color: var(--amber-600); font-weight: 800; font-size: 13px; }
.specph { display: inline-block; width: 52px; height: 2px; border-radius: 2px; background: repeating-linear-gradient(90deg, var(--border-strong, #c4cdba) 0 7px, transparent 7px 12px); vertical-align: middle; }
.spec-foot { margin-top: 26px; font-size: 13.5px; color: var(--text-mute); display: flex; gap: 10px; align-items: flex-start; max-width: 70ch; }
.spec-foot svg { width: 18px; height: 18px; color: var(--amber-600); flex-shrink: 0; margin-top: 2px; }
.spec-cta { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.spec-cta h2 { color: #fff; }
.spec-cta p { color: var(--on-dark-soft); font-size: 17px; max-width: 46ch; margin-top: 10px; }
.spec-cta__btns { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.spec-cta__phone { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -0.01em; transition: color .2s var(--ease); }
.spec-cta__phone svg { width: 19px; height: 19px; color: var(--amber); }
.spec-cta__phone:hover { color: var(--amber); }

@media (max-width: 760px) {
  .specgrid { grid-template-columns: 1fr; }
}

/* demo-data banner */
.spec-demo { display: flex; align-items: flex-start; gap: 11px; background: var(--amber-soft); border: 1px solid rgba(124,194,66,.3); color: var(--accent-on-light, var(--amber-600)); border-radius: 12px; padding: 14px 18px; font-size: 14px; font-weight: 600; margin-bottom: 28px; }
.spec-demo svg { width: 19px; height: 19px; color: var(--amber-600); flex-shrink: 0; margin-top: 1px; }
/* series media (photo slot) */
.spec-media { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: center; margin-bottom: 32px; }
.spec-media__ph { aspect-ratio: 16/10; border-radius: var(--r); }
.spec-media__txt h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; }
.spec-media__txt p { font-size: 15px; color: var(--text); }
/* dimension numbers on blueprint */
.bp-num { fill: var(--ink); font: 700 12.5px 'Inter', sans-serif; }
.bp-dimv { display: inline-block; font-weight: 800; color: var(--ink); }
/* non-standard (Cita) state */
.spec-nonstd { max-width: 640px; margin: 0 auto; text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 52px 40px; }
.spec-nonstd__ico { width: 64px; height: 64px; border-radius: 50%; background: var(--amber-soft); color: var(--amber-600); display: grid; place-items: center; margin: 0 auto 22px; }
.spec-nonstd__ico svg { width: 30px; height: 30px; }
.spec-nonstd h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px; }
.spec-nonstd p { font-size: 16px; color: var(--text); max-width: 48ch; margin: 0 auto 28px; }

/* non-standard: how-it-works steps */
.nonstd-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.nonstd-step { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 30px 26px; }
.nonstd-step__ico { width: 50px; height: 50px; border-radius: 12px; background: var(--ink); color: var(--amber); display: grid; place-items: center; margin-bottom: 18px; }
.nonstd-step__ico svg { width: 24px; height: 24px; }
.nonstd-step__n { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; color: var(--amber-600); }
.nonstd-step h4 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); margin: 4px 0 9px; }
.nonstd-step p { font-size: 14.5px; color: var(--text-mute); line-height: 1.55; }
@media (max-width: 760px) {
  .nonstd-steps { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .spec-media { grid-template-columns: 1fr; }
}

/* series entry cards (liftu-nomaina) */
.seriesgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.seriescard { display: flex; flex-direction: column; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 32px 28px; transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease); }
.seriescard:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.seriescard__ico { width: 54px; height: 54px; border-radius: 13px; background: var(--amber-soft); color: var(--amber-600); display: grid; place-items: center; }
.seriescard__ico svg { width: 27px; height: 27px; }
.seriescard h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.seriescard p { font-size: 14.5px; color: var(--text-mute); margin-top: -6px; }
.seriescard__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; color: var(--amber-600); }
.seriescard__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.seriescard:hover .seriescard__link svg { transform: translateX(4px); }
.series-other { text-align: center; margin-top: 30px; }
.series-other a { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; color: var(--text); transition: color .2s var(--ease); }
.series-other a svg { width: 17px; height: 17px; color: var(--amber-600); }
.series-other a:hover { color: var(--amber-600); }
@media (max-width: 760px) {
  .seriesgrid { grid-template-columns: 1fr; }
}

.calc-card__btn { margin-top: 32px; }
.calc-card .btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.calc-card .btn-dark::before { background: var(--ink-2); }
.calc-card .btn-dark:hover { color: #fff; border-color: var(--ink-2); }

.calc-note { font-size: 13.5px; color: #2c4a17; margin-top: 16px; text-align: center; }
.calc-note a { color: var(--ink); font-weight: 700; }

/* result */
.calc-result { display: none; }
.calc-result.active { display: block; animation: cfade .4s var(--ease); }
@keyframes cfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.calc-result__inner { background: var(--ink); border-radius: var(--r); padding: 44px 40px; }
.calc-result__choice { font-size: 15px; color: var(--on-dark-soft); margin-bottom: 18px; }
.calc-result__choice b { color: #fff; }
.calc-result__price { font-size: clamp(19px, 2vw, 24px); font-weight: 800; color: #fff; letter-spacing: -0.015em; line-height: 1.25; white-space: nowrap; }
.calc-result__pvn { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-dark-mute); margin-top: 10px; }
.calc-result__custom { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.3; }
.calc-result__contact { font-size: 18px; color: var(--amber); font-weight: 700; margin-top: 10px; line-height: 1.7; }
.calc-result__note { font-size: 14px; color: var(--on-dark-mute); margin: 20px 0 22px; }
.calc-result__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.calc-restart { background: none; border: none; cursor: pointer; font: inherit; font-size: 14px; font-weight: 700; color: var(--on-dark-soft); text-decoration: underline; text-underline-offset: 3px; margin-top: 18px; display: inline-block; }
.calc-restart:hover { color: #fff; }
/* inline contact form inside result */
.calc-result__form { display: flex; flex-direction: column; gap: 12px; }
.calc-result__pill { display: inline-flex; align-items: center; gap: 9px; align-self: flex-start; background: rgba(124,194,66,.14); border: 1px solid rgba(124,194,66,.3); color: var(--amber); font-size: 13px; font-weight: 700; padding: 8px 13px; border-radius: 100px; margin-bottom: 6px; }
.calc-result__pill svg { width: 15px; height: 15px; flex-shrink: 0; }
.calc-result__form input[type="text"], .calc-result__form input[type="tel"] { width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--border-dark); background: rgba(255,255,255,.05); color: #fff; font: inherit; font-size: 15px; transition: border-color .2s var(--ease); }
.calc-result__form input::placeholder { color: var(--on-dark-mute); }
.calc-result__form input:focus { outline: none; border-color: var(--amber); }
.calc-result__form input.invalid { border-color: #e0604d; }
.calc-result__consent { display: flex; gap: 11px; align-items: flex-start; font-size: 12.5px; color: var(--on-dark-soft); line-height: 1.45; cursor: pointer; padding: 2px 0; }
.calc-result__consent input { width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px; accent-color: var(--amber); }
.calc-result__consent a { color: var(--amber); font-weight: 700; }
.calc-result__consent.invalid span { color: #e8897a; }
.calc-result__form .btn { margin-top: 4px; }
.calc-result__form .calc-result__contact { font-size: 13.5px; color: var(--on-dark-mute); font-weight: 500; text-align: center; margin: 6px 0 0; }
.calc-result__form .calc-result__contact a { color: var(--amber); font-weight: 700; }
/* success state */
.calc-result__success { text-align: center; }
.calc-result__success-ico { width: 60px; height: 60px; border-radius: 50%; background: var(--amber); color: var(--ink); display: grid; place-items: center; margin: 0 auto 22px; }
.calc-result__success-ico svg { width: 30px; height: 30px; }
.calc-result__success h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.calc-result__success p { color: var(--on-dark-soft); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.calc-result__success .calc-result__pill { margin: 0 auto 4px; }

/* standalone calculator (liftu-nomaina) is wider/centered */
.calc-standalone { max-width: 720px; margin: 0 auto; }

/* ===================================================================
   PROCESS - infographic timeline
   =================================================================== */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px 20px; max-width: 1180px; margin: 0 auto; }
.pstep { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 24px 22px; background: var(--ink-2); border: 1px solid var(--border-dark); border-radius: 18px; }
.pstep__node { position: relative; width: 50px; height: 50px; border-radius: 13px; background: rgba(124,194,66,.12); border: 1px solid var(--border-dark); display: grid; place-items: center; color: var(--amber); }
.pstep__node svg { width: 26px; height: 26px; }
.pstep__num { position: absolute; top: -9px; right: -9px; width: 26px; height: 26px; border-radius: 50%; background: var(--amber); color: var(--ink); font-size: 13px; font-weight: 800; display: grid; place-items: center; border: 3px solid var(--ink-2); }
.pstep__body h3 { color: #fff; font-size: 16px; margin-bottom: 6px; letter-spacing: -0.01em; }
.pstep__body p { color: var(--on-dark-soft); font-size: 13.5px; line-height: 1.5; margin: 0; }
.pstep__meta { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--amber); padding: 5px 9px; border: 1px solid var(--border-dark); border-radius: 6px; }
/* Two rows, both left-to-right (1-5 top, 6-10 bottom) - natural reading order */
.pstep::after { content: ""; position: absolute; z-index: 3; }
/* right-pointing arrows between cards within each row (not after 5 or 10) */
.pstep:nth-child(1)::after, .pstep:nth-child(2)::after, .pstep:nth-child(3)::after, .pstep:nth-child(4)::after,
.pstep:nth-child(6)::after, .pstep:nth-child(7)::after, .pstep:nth-child(8)::after, .pstep:nth-child(9)::after {
  right: -14px; top: 50%; transform: translateY(-50%);
  border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 8px solid var(--amber);
}
/* Liftu nomaiņa hero: same footage, mirrored + different zoom so it reads as a different angle */
.hero-home--alt .hero-home__video { transform: scaleX(-1) scale(1.26); object-position: 60% center; filter: brightness(0.86) saturate(1.12) contrast(1.05); }
/* M\u016bsu projekti hero: third angle of the footage */
.hero--page .hero-home__video, .hero--page .hero-home__scrim { z-index: 0; }
.hero--page .hero-home__scrim { z-index: 1; }
.hero--vid3 .hero-home__video { transform: scale(1.3) translateX(12%); object-position: 36% center; filter: brightness(0.84) saturate(1.1) contrast(1.05); }
.hero--vid4 .hero-home__video { transform: scaleX(-1) scale(1.22) translateX(6%); object-position: 56% center; filter: brightness(0.85) saturate(1.1) contrast(1.04); }
.hero--vid5 { min-height: 0; padding: 140px 0 84px; }
.hero--vid5 .hero-home__video { object-fit: cover; object-position: center bottom; width: 100%; height: 100%; transform: scale(1.2) translate(-3%, -5%); transform-origin: center; filter: brightness(0.82) saturate(1.1) contrast(1.04); }

/* ===================================================================
   MODEL CARDS (jauns-lifts) - real Orona models
   =================================================================== */
.modelcard { display: flex; flex-direction: column; }
.modelcard__art { height: 220px; background: var(--ink); position: relative; overflow: hidden; display: grid; place-items: center; }
.modelcard__art .gridtex { opacity: .55; }
.modelcard__art svg.bp { width: auto; height: 170px; position: relative; z-index: 2; }
.modelcard__body { padding: 30px 30px 0; flex: 1; display: flex; flex-direction: column; }
.modelcard__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.modelcard h3 { font-size: 24px; }
.modelcard__tagline { font-size: 16px; color: var(--text-soft); margin-bottom: 22px; }
.specs { list-style: none; padding: 0; margin: 0 0 4px; }
.specs li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.specs li:last-child { border-bottom: none; }
.specs .k { color: var(--text-mute); }
.specs .v { color: var(--ink); font-weight: 700; }
.modelcard__foot { padding: 24px 30px 30px; }

/* category cards */
.catcard { display: flex; flex-direction: column; }
.catcard__art { height: 210px; background: var(--ink); position: relative; overflow: hidden; display: grid; place-items: center; }
.catcard__art svg { width: 100%; height: 100%; position: relative; z-index: 2; }
.catcard .card__body { flex: 1; display: flex; flex-direction: column; }
.catcard h3 { margin-bottom: 12px; }
.catcard p { font-size: 16px; flex: 1; }
.catcard .textlink { margin-top: 24px; align-self: flex-start; }

/* ===================================================================
   AMBIANCES
   =================================================================== */
.ambiance { position: relative; border-radius: var(--r); overflow: hidden; min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; color: #fff; }
.ambiance__bg { position: absolute; inset: 0; }
.ambiance__bg .imgph { position: absolute; inset: 0; }
.ambiance::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,23,25,.92) 0%, rgba(20,23,25,.4) 55%, rgba(20,23,25,.15) 100%); z-index: 1; }
.ambiance__content { position: relative; z-index: 2; }
.ambiance h3 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.ambiance p { color: var(--on-dark-soft); font-size: 15.5px; margin: 0; }
.ambiance .tag { margin-bottom: 16px; }

/* ===================================================================
   SWATCHES
   =================================================================== */
.swatches { display: flex; flex-wrap: wrap; gap: 26px; }
.swatch { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 92px; }
.swatch__dot { width: 72px; height: 72px; border-radius: 50%; border: 1px solid rgba(0,0,0,.08); box-shadow: inset 0 -9px 16px rgba(0,0,0,.12), inset 0 7px 12px rgba(255,255,255,.5); }
.swatch__name { font-size: 13px; color: var(--text-mute); text-align: center; }

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery__item { position: relative; aspect-ratio: 4/3; border-radius: var(--r-sm); overflow: hidden; cursor: pointer; }
.gallery__item .imgph { position: absolute; inset: 0; transition: transform .5s var(--ease); }
.gallery__item:hover .imgph { transform: scale(1.06); }
.gallery__overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 9px; color: #fff; font-weight: 700; font-size: 15px; background: rgba(124,194,66,0); opacity: 0; transition: all .3s var(--ease); }
.gallery__item:hover .gallery__overlay { background: rgba(20,23,25,.55); opacity: 1; }
.gallery__overlay svg { width: 18px; height: 18px; }

/* ===================================================================
   PROJECT CARD
   =================================================================== */
.project-card .imgph { aspect-ratio: 4/3; }
.project-card .card__body { padding: 26px; }
.project-card h3 { font-size: 21px; margin: 14px 0 6px; }
.project-card .meta { font-size: 15px; color: var(--text-mute); }

/* ===================================================================
   POWERED BY ORONA
   =================================================================== */
.orona { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.orona__logo { display: flex; align-items: center; justify-content: center; }
.orona__logo img { height: 132px; width: auto; }
.orona__models { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.orona__model { font-size: 14px; font-weight: 600; color: var(--on-dark-soft); padding: 9px 16px; border: 1px solid var(--border-dark); border-radius: 100px; }

/* ===================================================================
   FORMS
   =================================================================== */
.form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-size: 15px; font-weight: 600; color: var(--ink); }
.field .req { color: var(--amber-600); }
.field input, .field textarea { font-family: var(--font); font-size: 16px; color: var(--ink); padding: 16px 18px; border: 1.5px solid var(--border-2); border-radius: var(--r-sm); background: var(--white); transition: border-color .15s, box-shadow .15s; width: 100%; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(124,194,66,.2); }
.field textarea { resize: vertical; min-height: 140px; }
.check { display: flex; align-items: flex-start; gap: 13px; cursor: pointer; }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--amber-600); flex-shrink: 0; }
.check span { font-size: 14.5px; color: var(--text-soft); line-height: 1.5; }
.check a { color: var(--amber-600); font-weight: 700; }
.form__note { font-size: 15px; color: var(--text-mute); }
.form__note a { color: var(--amber-600); font-weight: 700; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 48px; box-shadow: var(--shadow-sm); }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.cinfo { display: flex; flex-direction: column; gap: 26px; margin: 28px 0 34px; }
.cinfo__row { display: flex; gap: 18px; align-items: flex-start; }
.cinfo__ico { width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0; background: var(--amber-soft); color: var(--amber-600); display: grid; place-items: center; }
.cinfo__ico svg { width: 24px; height: 24px; }
.cinfo__k { font-size: 13px; color: var(--text-mute); margin-bottom: 2px; }
.cinfo__v { font-size: 17px; color: var(--ink); font-weight: 700; }
.cinfo__v a:hover { color: var(--amber-600); }
.map { border-radius: var(--r); overflow: hidden; height: 260px; border: 1px solid var(--border); }
.map .imgph { height: 100%; }

/* ===================================================================
   ABOUT (homepage)
   =================================================================== */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center; }
.about__media { background: transparent; border-radius: 0; padding: 0; text-align: center; position: relative; overflow: visible; }
.about__logo { display: inline-flex; flex-direction: row; align-items: center; justify-content: center; gap: 22px; color: var(--ink); width: 100%; }
.about__logo .about-mark { width: 100%; max-width: 340px; height: auto; }
.about__logo .logo-lockup { width: 150px; height: auto; }
.about__logo-text { font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); white-space: nowrap; }
.about__tag { margin-top: 24px; font-size: 15px; color: var(--text-mute); letter-spacing: 0.01em; }
.about__body h2 { margin-bottom: 22px; }
.about__body .lead { margin-bottom: 36px; }
.about__points { display: flex; flex-direction: column; gap: 18px; }
.about__point { display: flex; align-items: center; gap: 16px; color: var(--text); font-weight: 600; font-size: 18px; }
.about__point .point-ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--amber-soft); color: var(--amber-600); display: grid; place-items: center; }
.about__point .point-ico svg { width: 22px; height: 22px; }

/* ABOUT v2 — animated lift-logo */
.about--v2 { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
.about--v2 .about__media { display: flex; justify-content: center; }
.about__photo { width: 100%; height: auto; border-radius: 20px; box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4/3; }
.liftlogo { width: 100%; max-width: 250px; }
.liftlogo svg { width: 100%; height: auto; overflow: visible; }
.liftlogo__cabin { animation: liftride 6s cubic-bezier(.65,0,.35,1) infinite; transform-box: view-box; transform-origin: center; }
@keyframes liftride {
  0%   { transform: translateY(0); }
  14%  { transform: translateY(0); }
  46%  { transform: translateY(-46px); }
  60%  { transform: translateY(-46px); }
  92%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}
.liftlogo__chev { opacity: .35; animation: chevpulse 6s ease-in-out infinite; }
.liftlogo__chev:nth-of-type(2) { animation-delay: .15s; }
@keyframes chevpulse { 0%,40% { opacity: .35; } 50%,58% { opacity: 1; } 70%,100% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .liftlogo__cabin, .liftlogo__chev { animation: none; } .liftlogo__chev { opacity: 1; } }
.adv { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; margin-top: 8px; }
.adv__item { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 600; color: var(--text); }
.adv__ico { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; background: var(--amber-soft); color: var(--amber-600); display: grid; place-items: center; }
.adv__ico svg { width: 21px; height: 21px; }

/* WHY CARDS */
.section-pre { font-size: 15px; font-weight: 600; color: var(--text-mute); margin-bottom: 10px; }
.whycard { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 32px 28px; transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease); }
.whybento { display: grid; grid-template-columns: 1fr 1.45fr 1fr; grid-template-rows: auto auto; gap: 24px; }
.wb-1 { grid-column: 1; grid-row: 1; }
.wb-acc { grid-column: 2; grid-row: 1 / span 2; }
.wb-3 { grid-column: 3; grid-row: 1 / span 2; }
.wb-4 { grid-column: 1; grid-row: 2; }
.whycard--accent { background: var(--ink); border: 1px solid var(--ink); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 44px 40px; }
.whycard--accent:hover { border-color: var(--ink); }
.whycard--accent .whycard__ico { background: var(--amber); color: var(--ink); width: 60px; height: 60px; border-radius: 16px; }
.whycard--accent h3 { color: #fff; font-size: 26px; }
.whycard--accent p { color: var(--on-dark-soft); font-size: 16px; }
.whycard__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 14.5px; font-weight: 700; color: var(--amber); }
.whycard__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.whycard__link:hover svg { transform: translateX(4px); }
.whycard--tall { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.whycard:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--border-2); }
.whycard__ico { width: 54px; height: 54px; border-radius: 14px; background: var(--ink); color: var(--amber); display: grid; place-items: center; margin-bottom: 22px; }
.whycard__ico svg { width: 26px; height: 26px; }
.whycard h3 { font-size: 19px; margin-bottom: 10px; }
.whycard p { font-size: 15px; }

/* FLOW (Kā notiek) */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; position: relative; }
.flow__step { text-align: center; position: relative; }
.flow__step::after { content: ""; position: absolute; top: 33px; left: 50%; width: 100%; height: 2px; background: var(--border-2); z-index: 0; }
.flow__step:last-child::after { display: none; }
.flow__node { position: relative; z-index: 1; width: 66px; height: 66px; margin: 0 auto 22px; border-radius: 18px; background: var(--white); border: 1px solid var(--border); color: var(--amber-600); display: grid; place-items: center; }
.flow__node svg { width: 30px; height: 30px; }
.flow__num { position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; border-radius: 50%; background: var(--amber); color: var(--ink); font-size: 13px; font-weight: 800; display: grid; place-items: center; border: 3px solid var(--paper); }
.flow__step h3 { font-size: 17px; margin-bottom: 8px; }
.flow__step p { font-size: 14px; }

/* PROJECTS — enlarged */
.projects--big .pcard__img { aspect-ratio: 16/11; position: relative; }
.pcard__status { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 6px; background: var(--amber); color: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: 0.02em; padding: 6px 12px 6px 9px; border-radius: 100px; }
.pcard__status svg { width: 14px; height: 14px; }
.projects--big .card__body { padding: 26px 26px 28px; }
.pcard__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.ptag { font-size: 12px; font-weight: 600; color: var(--text-soft); background: var(--paper-2); padding: 4px 11px; border-radius: 6px; }
.projects--big .pcard h3 { font-size: 22px; margin-bottom: 7px; }
.projects--big .pcard .meta { font-size: 15px; margin-bottom: 18px; }
.pcard__link { font-size: 15px; }

/* USE CASES (Kam tas der) */
.usecases { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.usecase { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 34px 22px 30px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); transition: border-color .2s var(--ease), transform .2s var(--ease); }
.usecase:hover { border-color: var(--amber); transform: translateY(-3px); }
.usecase__ico { width: 56px; height: 56px; border-radius: 50%; background: var(--amber-soft); color: var(--amber-600); display: grid; place-items: center; margin-bottom: 4px; }
.usecase__ico svg { width: 27px; height: 27px; }
.usecase__label { font-size: 15.5px; font-weight: 700; color: var(--text); line-height: 1.3; }
.usecase__sub { font-size: 13.5px; font-weight: 700; color: var(--amber-600); line-height: 1.35; }
.usecase__desc { font-size: 13.5px; color: var(--text-mute); line-height: 1.5; margin: 0; }

/* ORONA chips */
.orona__chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.orona__chip { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: #fff; background: rgba(255,255,255,.05); border: 1px solid var(--border-dark); padding: 10px 16px; border-radius: 100px; }
.orona__chip svg { width: 16px; height: 16px; color: var(--amber); }

/* CTA banner big */
.cta-banner--big { padding: 60px 64px; }
.cta-banner--big h3 { font-size: clamp(26px, 3vw, 34px); }
.cta-banner--big p { max-width: 460px; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* SPLITROW (legacy) */
.splitrow { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.splitrow__points { display: flex; flex-direction: column; gap: 22px; }
.projects-cta { display: flex; justify-content: center; margin-top: 56px; }

/* ===================================================================
   EDITORIAL (legal)
   =================================================================== */
.editorial { max-width: 780px; margin: 0 auto; padding: 168px 0 110px; }
.editorial h1 { font-size: clamp(44px,6vw,68px); margin-bottom: 14px; }
.editorial__updated { font-size: 15px; color: var(--text-mute); margin-bottom: 52px; padding-bottom: 30px; border-bottom: 1px solid var(--border); }
.editorial h2 { font-size: 26px; margin: 14px 0 14px; }
.editorial p { font-size: 17px; line-height: 1.8; margin-bottom: 16px; }
.editorial a { color: var(--amber-600); font-weight: 600; }
.editorial ol { padding-left: 24px; }
.editorial ol > li { margin-bottom: 40px; }
.editorial ol > li::marker { color: var(--amber-600); font-weight: 800; }

/* ===================================================================
   404
   =================================================================== */
.notfound { min-height: 100vh; background: var(--ink); color: #fff; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.notfound__inner { position: relative; z-index: 2; max-width: 600px; }
.notfound__code { font-size: clamp(120px,22vw,210px); font-weight: 900; color: var(--amber); line-height: 1; letter-spacing: -0.05em; }
.notfound h2 { color: #fff; font-size: clamp(30px,4vw,46px); margin: 8px 0 18px; }
.notfound p { color: var(--on-dark-soft); font-size: 19px; margin-bottom: 40px; }
.notfound__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1000px) {
  .hero-home__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-home__video { width: 100%; transform: none; -webkit-mask-image: none; mask-image: none; }
  .hero-home__scrim { background: linear-gradient(180deg, rgba(17,36,28,0.74) 0%, rgba(17,36,28,0.82) 60%, var(--ink) 100%); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .pstep:nth-child(n) { grid-column: auto; grid-row: auto; }
  .pstep::after { display: none; }
  .orona { grid-template-columns: 1fr; gap: 40px; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about--v2 { grid-template-columns: 1fr; }
  .about--v2 .about__media { order: -1; }
  .about__media { padding: 48px 32px; }
  .about--v2 .about__media { padding: 0; }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .flow__step::after { display: none; }
  .usecases { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .whybento { grid-template-columns: 1fr 1fr; }
  .wb-1, .wb-4 { grid-column: auto; grid-row: auto; }
  .wb-acc { grid-column: 1 / -1; grid-row: 1; }
  .wb-3 { grid-column: auto; grid-row: auto; }
  .adv { grid-template-columns: 1fr; }
  .cta-banner--big { flex-direction: column; align-items: flex-start; padding: 40px 32px; }
  .splitrow { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .gallery { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .calc-card { padding: 28px 22px; }
  .chips { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; gap: 24px; }
  .usecases { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .whybento { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }
  .swatches { gap: 18px; justify-content: space-between; }
  .swatch { width: 64px; }
  .swatch__dot { width: 56px; height: 56px; }
}
