/* --- TOKENS --------------------------- */
    :root {
      --bg:        oklch(97% 0.012 260);
      --bg-alt:    oklch(93% 0.018 260);
      --dark:      oklch(13% 0.055 258);
      --dark-2:    oklch(17% 0.055 258);
      --text:      #111110;
      --muted:     #888880;
      --orange:    #FF5500;
      --orange-h:  #E04A00;
      --border:    oklch(87% 0.022 260);
      --radius:    4px;
    }

    /* --- BASE ----------------------------- */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Barlow', sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    h1,h2,h3,h4,h5 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.01em;
      text-transform: uppercase;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    section { position: relative; }

    /* --- NAVBAR --------------------------- */
    .navbar-iskra {
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: box-shadow .3s;
    }
    .navbar-iskra.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.07); }
    .navbar-inner {
      display: flex;
      align-items: center;
      height: 64px;
      gap: 48px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 22px;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--text);
      flex-shrink: 0;
    }
    .nav-logo-bolt {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links a {
      font-family: 'Barlow', sans-serif;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text);
      opacity: .7;
      transition: opacity .2s;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-links a:hover,
    .nav-links a.active { opacity: 1; }
    .nav-links a.active { color: var(--orange); }
    .nav-cta {
      margin-left: auto;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }
    .nav-phone {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: var(--text);
      letter-spacing: .02em;
    }
    .nav-sub {
      font-size: 11px;
      color: var(--orange);
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    /* --- HERO ----------------------------- */
    .hero {
      min-height: 75vh;
      background: var(--dark);
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      position: relative;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, oklch(13% 0.055 258 / 0.9) 18%, oklch(13% 0.055 258 / 0) 55%),
        linear-gradient(to top, oklch(13% 0.055 258 / 0.95) 0%, transparent 35%);
      z-index: 1;
    }
    .hero-img-placeholder {
      position: absolute;
      inset: 0;
      background: #1a1a18;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-img-placeholder::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,.015) 40px,
        rgba(255,255,255,.015) 80px
      );
    }
    .hero-img-label {
      font-family: 'Barlow', monospace;
      font-size: 12px;
      color: rgba(255,255,255,.2);
      letter-spacing: .1em;
      text-transform: uppercase;
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding-bottom: 96px;
      padding-top: 120px;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 24px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 2px;
      background: var(--orange);
    }
    .hero-title {
      font-size: clamp(36px, 4.5vw, 68px);
      color: #fff;
      line-height: 1;
      margin-bottom: 24px;
    }
    .hero-title span { color: var(--orange); }
    .hero-desc {
      font-size: 15px;
      color: rgba(255,255,255,.6);
      max-width: 440px;
      line-height: 1.7;
      margin-bottom: 40px;
      font-weight: 400;
    }
    .hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
    .btn-primary-iskra {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--orange);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: var(--radius);
      transition: background .2s, transform .15s;
      border: none;
      cursor: pointer;
    }
    .btn-primary-iskra:hover {
      background: var(--orange-h);
      color: #fff;
      transform: translateY(-1px);
    }
    .btn-ghost-iskra {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.7);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 16px 0;
      border: none;
      background: none;
      cursor: pointer;
      transition: color .2s;
    }
    .btn-ghost-iskra:hover { color: #fff; }
    .hero-stats {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 0;
      border-top: 1px solid rgba(255,255,255,.1);
      margin-top: 0;
    }
    .hero-stat {
      flex: 1;
      padding: 28px 32px;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 40px;
      color: #fff;
      line-height: 1;
      display: flex;
      align-items: baseline;
      gap: 2px;
    }
    .hero-stat-num sup {
      font-size: 20px;
      color: var(--orange);
    }
    .hero-stat-label {
      font-size: 12px;
      color: rgba(255,255,255,.86);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-top: 4px;
      text-shadow: 0 1px 8px rgba(0,0,0,.35);
    }

    /* --- SECTION HEADERS ------------------ */
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
    }
    .section-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--orange);
    }
    .section-title {
      font-size: clamp(36px, 4vw, 64px);
    }

    /* --- ABOUT ---------------------------- */
    .about { padding: 120px 0; background: var(--bg-alt); }
    .about-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 160px;
      line-height: 1;
      color: var(--bg-alt);
      position: absolute;
      top: -10px;
      left: -10px;
      z-index: 0;
      user-select: none;
      letter-spacing: -.04em;
      pointer-events: none;
    }
    .about-left { position: relative; }
    .about-lead {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(28px, 3.5vw, 52px);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.1;
      position: relative;
      z-index: 1;
      padding-top: 80px;
    }
    .about-lead em {
      font-style: normal;
      color: var(--orange);
    }
    .about-text {
      font-size: 16px;
      color: #555550;
      line-height: 1.8;
      margin-bottom: 32px;
    }
    .about-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .04em;
      color: var(--text);
      margin-right: 8px;
      margin-bottom: 8px;
      box-shadow: 0 8px 24px rgba(8,15,36,.04);
      transition: color .2s, border-color .2s, box-shadow .2s, transform .2s;
    }
    .about-pill:hover {
      color: var(--orange);
      border-color: rgba(255,85,0,.35);
      box-shadow: 0 14px 34px rgba(255,85,0,.12);
      transform: translateY(-2px);
    }
    .about-pill-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0;
    }

    /* --- PRODUCTS ------------------------- */
    .products { padding: 120px 0; background: var(--bg-alt); }
    .product-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      transition: transform .3s cubic-bezier(.25,.8,.25,1), box-shadow .3s;
      cursor: pointer;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 64px rgba(0,0,0,.1);
    }
    .product-card:hover .product-img-placeholder { background: #1A1A18; }
    .product-img-placeholder {
      height: 300px;
      background: var(--bg-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: background .3s;
      overflow: hidden;
    }
    .product-img-placeholder::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(0,0,0,.03) 20px,
        rgba(0,0,0,.03) 40px
      );
    }
    .product-img-label {
      font-family: 'Barlow', monospace;
      font-size: 11px;
      color: var(--muted);
      letter-spacing: .1em;
      text-transform: uppercase;
      z-index: 1;
    }
    .product-card:hover .product-img-label { color: rgba(255,255,255,.3); }
    .product-body { padding: 28px 28px 32px; }
    .product-tier {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 28px;
      text-transform: uppercase;
      letter-spacing: .02em;
      margin-bottom: 4px;
    }
    .product-sub {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 20px;
    }
    .product-features {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .product-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: #444440;
    }
    .product-features li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0;
    }
    .product-link {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--orange);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap .2s;
    }
    .product-link:hover { gap: 12px; color: var(--orange); }
    .product-card.featured { border: 2px solid var(--orange); }
    .product-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--orange);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 2px;
      z-index: 2;
    }

    /* --- APPROACH ------------------------- */
    .approach {
      padding: 80px 0;
      background: var(--dark);
      color: #fff;
    }
    .approach-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 8px;
      overflow: hidden;
      margin-top: 48px;
    }
    .approach-item {
      background: var(--dark-2);
      padding: 36px 28px;
      transition: background .3s;
    }
    .approach-item:hover { background: #222220; }
    .approach-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .12em;
      color: var(--orange);
      margin-bottom: 20px;
    }
    .approach-icon {
      width: 48px;
      height: 48px;
      background: rgba(255,85,0,.12);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .approach-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 22px;
      text-transform: uppercase;
      margin-bottom: 10px;
      color: #fff;
    }
    .approach-desc {
      font-size: 14px;
      color: rgba(255,255,255,.5);
      line-height: 1.65;
    }
    .approach-header { margin-bottom: 0; }
    .approach-header .section-title { color: #fff; }
    .approach-header .section-eyebrow { color: var(--orange); }

    /* --- MATERIALS ------------------------ */
    .materials {
      padding: 120px 0;
      background: linear-gradient(180deg, oklch(90% 0.03 260) 0%, oklch(88% 0.035 260) 100%);
      border-bottom: 1px solid rgba(8,15,36,.08);
    }
    .material-track {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 16px;
      scrollbar-width: thin;
      scrollbar-color: var(--border) transparent;
      cursor: grab;
      -webkit-overflow-scrolling: touch;
    }
    .material-track:active { cursor: grabbing; }
    .material-card {
      flex-shrink: 0;
      width: 100%;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 14px 34px rgba(8,15,36,.08);
      transition: transform .3s, box-shadow .3s;
    }
    .material-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 46px rgba(8,15,36,.12);
    }
    .material-swatch {
      width: 100%;
      height: 160px;
      background: var(--bg-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: monospace;
      font-size: 10px;
      color: var(--muted);
      letter-spacing: .06em;
      text-transform: uppercase;
      overflow: hidden;
      position: relative;
    }
    .material-swatch img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }
    .material-swatch::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 4px,
        rgba(0,0,0,.04) 4px,
        rgba(0,0,0,.04) 8px
      ),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 4px,
        rgba(0,0,0,.04) 4px,
        rgba(0,0,0,.04) 8px
      );
    }
    .material-info { padding: 16px 18px 20px; }
    .material-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: 2px;
    }
    .material-prop {
      font-size: 12px;
      color: var(--muted);
    }

    /* --- FORM / CTA ----------------------- */
    .form-section {
      padding: 120px 0;
      background: var(--dark);
      color: #fff;
      overflow: hidden;
    }
    .form-section .row {
      column-gap: 48px;
    }
    .form-section .col-lg-6 {
      flex: 0 0 calc(50% - 24px);
      max-width: calc(50% - 24px);
    }
    .form-section .col-lg-5.offset-lg-1 {
      flex: 0 0 calc(41.666667% - 24px);
      max-width: calc(41.666667% - 24px);
      margin-left: 8.333333%;
    }
    .form-title {
      font-size: clamp(34px, 4.3vw, 64px);
      max-width: 720px;
      color: #fff;
      margin-bottom: 16px;
      overflow-wrap: anywhere;
    }
    .form-title span { color: var(--orange); }
    .form-sub {
      font-size: 16px;
      color: rgba(255,255,255,.5);
      margin-bottom: 0;
    }
    .meta-list {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      margin-top: 48px;
    }
    .meta-item { display: flex; flex-direction: column; gap: 4px; }
    .meta-label {
      font-size: 11px;
      color: rgba(255,255,255,.35);
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .meta-value {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: #fff;
    }
    .form-card {
      background: #fff;
      border-radius: 8px;
      padding: 40px;
      position: relative;
      z-index: 2;
    }
    .form-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 8px;
      display: block;
    }
    .form-control-iskra {
      width: 100%;
      background: var(--bg-alt);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 14px 16px;
      font-family: 'Barlow', sans-serif;
      font-size: 15px;
      color: var(--text);
      transition: border-color .2s, box-shadow .2s;
      outline: none;
      margin-bottom: 16px;
    }
    .form-control-iskra:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(255,85,0,.1);
    }
    .form-control-iskra::placeholder { color: var(--muted); }

    @media (max-width: 991.98px) {
      .form-section .row {
        column-gap: 0;
      }
      .form-section .col-lg-6,
      .form-section .col-lg-5.offset-lg-1 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
      }
    }

    /* --- FOOTER --------------------------- */
    .footer {
      background: #080F24;
      padding: 48px 0 32px;
      color: rgba(255,255,255,.4);
    }
    .footer-logo {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 24px;
      letter-spacing: .06em;
      color: #fff;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .footer-copy { font-size: 13px; }
    .footer-links {
      list-style: none;
      padding: 0;
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .footer-links a {
      font-size: 13px;
      color: #fff;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--orange); }
    .footer-tech-row {
      margin-top: 18px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 18px;
    }
    .footer-powered {
      font-size: 12px;
      color: rgba(255,255,255,.55);
      text-align: left;
    }
    .footer-powered a {
      color: #fff;
      font-weight: 600;
      transition: color .2s;
    }
    .footer-powered a:hover { color: var(--orange); }

    /* --- DIVIDER LINE ---------------------- */
    .orange-line {
      display: block;
      width: 48px;
      height: 3px;
      background: var(--orange);
      margin: 24px 0;
    }

    /* --- UTILITIES ------------------------ */
    .text-orange { color: var(--orange); }
    .bg-dark-iskra { background: var(--dark); }

    .sports {
      padding: 100px 0;
      background: var(--bg);
      overflow: hidden;
    }
    .sports-eyebrow {
      justify-content: center;
    }
    .sports-eyebrow::after {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--orange);
    }
    .sports-lead {
      color: var(--muted);
      font-size: 15px;
      max-width: 520px;
      margin: 16px auto 0;
      line-height: 1.7;
    }
    .sports-grid {
      display: flex;
      gap: 26px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 56px;
    }
    .sport-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      color: var(--text);
      text-decoration: none;
      position: relative;
      outline: none;
    }
    .sport-circle {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid transparent;
      background: var(--bg-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      isolation: isolate;
      box-shadow: 0 10px 28px rgba(8,15,36,.08);
      transition: border-color .25s, box-shadow .25s, transform .25s;
    }
    .sport-circle::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      background: conic-gradient(from 120deg, transparent, rgba(255,85,0,.75), transparent 35%);
      opacity: 0;
      transform: rotate(-70deg) scale(.9);
      transition: opacity .25s, transform .35s;
      z-index: -1;
    }
    .sport-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s cubic-bezier(.25,.8,.25,1), filter .25s;
    }
    .sport-circle-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(8,15,36,.58);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: .1em;
      text-transform: uppercase;
      opacity: 0;
      transform: scale(.92);
      transition: opacity .25s, transform .25s;
    }
    .sport-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--text);
      position: relative;
      transition: color .2s, transform .25s;
    }
    .sport-name::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--orange);
      transform: translateX(-50%);
      transition: width .25s;
    }
    .sport-item:hover,
    .sport-item:focus {
      color: var(--text);
      text-decoration: none;
    }
    .sport-item:hover .sport-circle,
    .sport-item:focus .sport-circle {
      border-color: var(--orange);
      transform: translateY(-8px) scale(1.04);
      box-shadow: 0 22px 56px rgba(255,85,0,.22), 0 18px 40px rgba(8,15,36,.12);
    }
    .sport-item:hover .sport-circle::before,
    .sport-item:focus .sport-circle::before {
      opacity: 1;
      transform: rotate(30deg) scale(1);
    }
    .sport-item:hover .sport-circle img,
    .sport-item:focus .sport-circle img {
      transform: scale(1.12);
      filter: saturate(1.12) contrast(1.04);
    }
    .sport-item:hover .sport-circle-overlay,
    .sport-item:focus .sport-circle-overlay {
      opacity: 1;
      transform: scale(1);
    }
    .sport-item:hover .sport-name,
    .sport-item:focus .sport-name {
      color: var(--orange);
      transform: translateY(2px);
    }
    .sport-item:hover .sport-name::after,
    .sport-item:focus .sport-name::after {
      width: 100%;
    }

            /* -- DROPDOWN -- */
    .nav-dropdown { position: relative; display: flex; align-items: center; }
    .nav-drop-menu {
      position: fixed;
      top: -9999px;
      left: -9999px;
      background: #fff;
      border-top: 3px solid #FF5500;
      border-radius: 0;
      box-shadow: 0 8px 24px rgba(0,0,0,.13);
      min-width: 200px;
      padding: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity .15s;
      z-index: 9999;
    }
    .nav-drop-menu.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-drop-menu a {
      display: block;
      padding: 13px 20px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: #111110;
      border-bottom: 1px solid #E4E2DC;
      transition: background .12s, color .12s, padding-left .12s;
    }
    .nav-drop-menu a:last-child { border-bottom: none; }
    .nav-drop-menu a:hover { background: oklch(93% 0.018 260); color: #FF5500; padding-left: 28px; }
    .nav-drop-menu a.drop-active { color: #FF5500; }
    .nav-drop-menu.is-open .nav-drop-trigger svg { transform: rotate(180deg); }

    /* scrollbar */
    .material-track::-webkit-scrollbar { height: 4px; }
    .material-track::-webkit-scrollbar-track { background: transparent; }
    .material-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.photo-strip {
    width: 100%;
    overflow: hidden;
    background: var(--bg, oklch(97% 0.012 260));
    margin: 0;
    padding: 0;
    line-height: 0;
  }
  .photo-strip-track {
    display: flex;
    width: max-content;
    animation: photo-strip-scroll 50s linear infinite;
  }
  .photo-strip-track:hover { animation-play-state: paused; }
  .photo-strip-track img {
    height: 150px;
    width: auto;
    display: block;
    object-fit: cover;
    flex-shrink: 0;
  }
  @keyframes photo-strip-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

.clients-section {
      padding: 72px 0 64px;
      background: #fff;
      overflow: hidden;
      border-top: 1px solid var(--border, oklch(87% 0.022 260));
    }
    .clients-head {
      text-align: center;
      margin-bottom: 48px;
    }
    .clients-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--orange, #FF5500);
      margin-bottom: 12px;
      font-family: 'Barlow', sans-serif;
    }
    .clients-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--orange, #FF5500);
    }
    .clients-eyebrow::after {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--orange, #FF5500);
    }
    .clients-title {
      font-family: 'Barlow Condensed', 'Barlow', sans-serif;
      font-weight: 800;
      font-size: clamp(28px, 3vw, 46px);
      text-transform: uppercase;
      line-height: 1.05;
      color: var(--text, #111110);
    }
    .clients-title span { color: var(--orange, #FF5500); }

    /* Clients carousel */
    .clients-track-wrap {
      position: relative;
      /* fade edges */
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }
    .clients-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: clients-scroll 32s linear infinite;
      will-change: transform;
    }
    .clients-track:hover {
      animation-play-state: paused;
    }
    @keyframes clients-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .clients-logo-item {
      flex-shrink: 0;
      width: 180px;
      height: 110px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 24px;
      border-right: 1px solid var(--border, oklch(87% 0.022 260));
      transition: background .2s;
    }
    .clients-logo-item:hover {
      background: #fff;
    }
    .clients-logo-item img {
      max-width: 100%;
      max-height: 72px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: none;
    }

/* === Production page === */
.iskra-production-page h1, .iskra-production-page h2, .iskra-production-page h3, .iskra-production-page h4 {
font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      line-height: 1.05;
      text-transform: uppercase;
}

.iskra-production-page a {
text-decoration: none; color: inherit;
}

.iskra-production-page .navbar-iskra {
background: #fff;
      border-bottom: 1px solid var(--border);
      overflow: visible;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: box-shadow .3s;
}

.iskra-production-page .navbar-iskra.scrolled {
box-shadow: 0 2px 24px rgba(0,0,0,.07);
}

.iskra-production-page .navbar-inner {
display: flex; align-items: stretch; height: 64px; gap: 48px;
}

.iskra-production-page .nav-logo {
display: flex; align-items: center; gap: 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: .04em; text-transform: uppercase; color: var(--text); flex-shrink: 0;
}

.iskra-production-page .nav-links {
display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; align-self: stretch; align-items: center;
}

.iskra-production-page .nav-links a {
font-weight: 500; font-size: 14px;
      letter-spacing: .06em; text-transform: uppercase;
      color: var(--text); opacity: .7; transition: opacity .2s;
}

.iskra-production-page .nav-links a:hover, .iskra-production-page .nav-links a.active {
opacity: 1;
}

.iskra-production-page .nav-links a.active {
color: var(--orange);
}

.iskra-production-page .nav-cta {
margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
}

.iskra-production-page .nav-phone {
font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px;
}

.iskra-production-page .nav-sub {
font-size: 11px; color: var(--orange); font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}

.iskra-production-page .prod-hero {
background: var(--dark);
      padding: 0;
      overflow: hidden;
      position: relative;
      min-height: 75vh;
      display: flex;
      align-items: flex-end;
}

.iskra-production-page .prod-hero-bg {
position: absolute;
      inset: 0;
      z-index: 0;
}

.iskra-production-page .prod-hero-bg img {
width: 100%; height: 100%; object-fit: cover; object-position: center;
      transform: scaleX(-1);
}

.iskra-production-page .prod-hero-overlay {
position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, oklch(13% 0.055 258 / 0.92) 40%, oklch(13% 0.055 258 / 0.3) 100%),
        linear-gradient(to top, oklch(13% 0.055 258 / 0.95) 0%, transparent 40%);
      z-index: 1;
}

.iskra-production-page .prod-hero-inner {
position: relative;
      z-index: 2;
      width: 100%;
      padding-top: 120px;
}

.iskra-production-page .prod-hero-eyebrow {
display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 600;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 20px;
}

.iskra-production-page .prod-hero-eyebrow::before {
content: ''; display: block;
      width: 24px; height: 2px; background: var(--orange);
}

.iskra-production-page .prod-hero-title {
font-size: clamp(44px, 6vw, 88px);
      color: #fff; line-height: 1;
      margin-bottom: 20px;
}

.iskra-production-page .prod-hero-title span {
color: var(--orange);
}

.iskra-production-page .prod-hero-desc {
font-size: 15px; color: rgba(255,255,255,.55);
      line-height: 1.75; max-width: 420px;
      margin-bottom: 36px;
}

.iskra-production-page .prod-hero-images {
display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 8px;
      height: 340px;
}

.iskra-production-page .prod-hero-img {
border-radius: 6px;
      overflow: hidden;
      background: var(--dark-2);
      display: flex; align-items: center; justify-content: center;
}

.iskra-production-page .prod-hero-img img {
width: 100%; height: 100%; object-fit: cover;
}

.iskra-production-page .prod-hero-img-placeholder {
font-size: 11px; color: rgba(255,255,255,.2);
      letter-spacing: .08em; text-transform: uppercase;
}

.iskra-production-page .prod-hero-img.tall {
grid-row: 1 / 3;
}

.iskra-production-page .prod-hero-images-grid {
display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 8px;
      height: 340px;
}

.iskra-production-page .prod-hero-images-grid .img-main {
grid-row: 1 / 3;
      border-radius: 6px; overflow: hidden;
      background: var(--dark-2);
}

.iskra-production-page .prod-hero-images-grid .img-main img, .iskra-production-page .prod-hero-images-grid .img-sm img {
width: 100%; height: 100%; object-fit: cover;
}

.iskra-production-page .prod-hero-images-grid .img-sm {
border-radius: 6px; overflow: hidden;
      background: var(--dark-2);
      display: flex; align-items: center; justify-content: center;
}

.iskra-production-page .hero-badge-bar {
display: flex;
      gap: 0;
      border-top: 1px solid rgba(255,255,255,.08);
      margin-top: 56px;
}

.iskra-production-page .hero-badge-item {
flex: 1;
      padding: 24px 28px;
      border-right: 1px solid rgba(255,255,255,.06);
}

.iskra-production-page .hero-badge-item:last-child {
border-right: none;
}

.iskra-production-page .hero-badge-num {
font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 36px; color: #fff; line-height: 1;
}

.iskra-production-page .hero-badge-num sup {
font-size: 18px; color: var(--orange);
}

.iskra-production-page .hero-badge-label {
font-size: 11px; color: rgba(255,255,255,.35);
      letter-spacing: .08em; text-transform: uppercase; margin-top: 3px;
}

.iskra-production-page .section-eyebrow {
display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 600;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 14px;
}

.iskra-production-page .section-eyebrow::before {
content: ''; display: block; width: 24px; height: 2px; background: var(--orange);
}

.iskra-production-page .section-title {
font-size: clamp(32px, 3.5vw, 56px);
}

.iskra-production-page .cycle {
padding: 100px 0; background: var(--bg);
}

.iskra-production-page .cycle-grid {
display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px 48px;
      background: transparent;
      border: none;
      border-radius: 0;
      overflow: visible;
      margin-top: 56px;
}

.iskra-production-page .cycle-grid {
display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
}

.iskra-production-page .cycle-item {
background: var(--bg-alt);
      padding: 36px 32px;
      border-radius: 8px;
      transition: background .25s;
}

.iskra-production-page .cycle-item:hover {
background: #fff;
}

.iskra-production-page .cycle-icon {
width: 48px; height: 48px;
      background: oklch(90% 0.025 260);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
}

.iskra-production-page .cycle-name {
font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 20px;
      text-transform: uppercase; margin-bottom: 8px;
}

.iskra-production-page .cycle-desc {
font-size: 13px; color: var(--muted); line-height: 1.7;
}

.iskra-production-page .journey {
padding: 100px 0; background: var(--bg-alt);
}

.iskra-production-page .journey-steps {
display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
}

.iskra-production-page .journey-step {
position: relative;
      background: #fff;
      border-radius: 8px;
      padding: 32px 28px;
      transition: transform .3s, box-shadow .3s;
}

.iskra-production-page .journey-step:hover {
transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.iskra-production-page .journey-step-num {
display: inline-flex;
      align-items: center; justify-content: center;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 17px;
      margin-bottom: 16px;
      flex-shrink: 0;
}

.iskra-production-page .journey-step-name {
font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 20px;
      text-transform: uppercase; margin-bottom: 8px;
}

.iskra-production-page .journey-step-desc {
font-size: 13px; color: var(--muted); line-height: 1.7;
}

.iskra-production-page .journey-connector {
position: absolute;
      top: 50%;
      right: -12px;
      transform: translateY(-50%);
      width: 24px;
      height: 2px;
      background: var(--orange);
      z-index: 1;
}

.iskra-production-page .journey-step:nth-child(3) .journey-connector, .iskra-production-page .journey-step:nth-child(6) .journey-connector {
display: none;
}

.iskra-production-page .journey-cta-strip {
background: var(--dark);
      border-radius: 8px;
      padding: 32px 40px;
      margin-top: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
}

.iskra-production-page .journey-cta-text {
font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 22px;
      color: #fff; text-transform: uppercase;
}

.iskra-production-page .journey-cta-text span {
color: var(--orange);
}

.iskra-production-page .quality {
padding: 100px 0;
      background: var(--dark);
      color: #fff;
}

.iskra-production-page .quality-grid {
display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 48px;
      margin-top: 24px;
      border-top: 1px solid rgba(255,255,255,.08);
}

.iskra-production-page .quality-item {
display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: none;
}

.iskra-production-page .quality-item:hover {
background: transparent;
}

.iskra-production-page .quality-dot {
width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0;
      margin-top: 6px;
}

.iskra-production-page .quality-name {
font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 18px;
      text-transform: uppercase; margin-bottom: 6px;
      color: #fff;
}

.iskra-production-page .quality-desc {
font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7;
}

.iskra-production-page .cta-footer {
background: var(--dark);
      padding: 80px 0;
}

.iskra-production-page .cta-footer-title {
font-size: clamp(32px, 4vw, 60px);
      color: #fff; line-height: 1.05;
}

.iskra-production-page .cta-footer-title span {
color: var(--orange);
}

.iskra-production-page .cta-footer-sub {
font-size: 15px; color: rgba(255,255,255,.45);
      line-height: 1.7; margin-top: 16px; margin-bottom: 0;
}

.iskra-production-page .cta-right {
display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
}

.iskra-production-page .cta-meta {
display: flex; flex-direction: column; gap: 2px;
}

.iskra-production-page .cta-meta-label {
font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: .08em; text-transform: uppercase;
}

.iskra-production-page .cta-meta-val {
font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px; color: #fff;
}

.iskra-production-page .footer {
background: #080F24; padding: 40px 0 28px; color: rgba(255,255,255,.4);
}

.iskra-production-page .footer-logo {
font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 22px; color: #fff; text-transform: uppercase; margin-bottom: 6px;
}

.iskra-production-page .footer-copy {
font-size: 12px;
}

.iskra-production-page .footer-links {
list-style: none; padding: 0; display: flex; gap: 20px; flex-wrap: wrap; justify-content: flex-end;
}

.iskra-production-page .footer-links a {
font-size: 13px; color: rgba(255,255,255,.4); transition: color .2s;
}

.iskra-production-page .footer-links a:hover {
color: #fff;
}

.iskra-production-page .nav-dropdown {
position: relative; display: flex; align-items: center;
}

.iskra-production-page .nav-drop-menu {
position: fixed;
      top: -9999px;
      left: -9999px;
      background: #fff;
      border-top: 3px solid #FF5500;
      border-radius: 0;
      box-shadow: 0 8px 24px rgba(0,0,0,.13);
      min-width: 200px;
      padding: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity .15s;
      z-index: 9999;
}

.iskra-production-page .nav-drop-menu.is-open {
opacity: 1;
      pointer-events: auto;
}

.iskra-production-page .nav-drop-menu a {
display: block;
      padding: 13px 20px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: #111110;
      border-bottom: 1px solid #E4E2DC;
      transition: background .12s, color .12s, padding-left .12s;
}

.iskra-production-page .nav-drop-menu a:last-child {
border-bottom: none;
}

.iskra-production-page .nav-drop-menu a:hover {
background: oklch(93% 0.018 260); color: #FF5500; padding-left: 28px;
}

.iskra-production-page .nav-drop-menu a.drop-active {
color: #FF5500;
}

.iskra-production-page .nav-drop-menu.is-open .nav-drop-trigger svg {
transform: rotate(180deg);
}

.iskra-production-page .btn-primary-iskra {
display: inline-flex; align-items: center; gap: 10px;
      background: var(--orange); color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 15px;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 15px 32px; border-radius: var(--radius);
      transition: background .2s, transform .15s;
      border: none; cursor: pointer;
}

.iskra-production-page .btn-primary-iskra:hover {
background: var(--orange-h); color: #fff; transform: translateY(-1px);
}

/* === Contacts page === */
.iskra-contacts-page h1, .iskra-contacts-page h2, .iskra-contacts-page h3, .iskra-contacts-page h4 {
font-family: 'Barlow Condensed', sans-serif; font-weight: 800; line-height: 1.05; text-transform: uppercase;
}

.iskra-contacts-page a {
text-decoration: none; color: inherit;
}

.iskra-contacts-page .navbar-iskra {
background: #fff; border-bottom: 1px solid var(--border); overflow: visible; position: sticky; top: 0; z-index: 1000; transition: box-shadow .3s;
}

.iskra-contacts-page .navbar-iskra.scrolled {
box-shadow: 0 2px 24px rgba(0,0,0,.07);
}

.iskra-contacts-page .navbar-inner {
display: flex; align-items: stretch; height: 64px; gap: 48px;
}

.iskra-contacts-page .nav-logo {
display: flex; align-items: center; gap: 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: .04em; text-transform: uppercase; color: var(--text); flex-shrink: 0;
}

.iskra-contacts-page .nav-links {
display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; align-self: stretch;
}

.iskra-contacts-page .nav-links > li > a {
font-weight: 500; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--text); opacity: .7; transition: opacity .2s; display: flex; align-items: center; gap: 4px; height: 100%;
}

.iskra-contacts-page .nav-links > li > a:hover, .iskra-contacts-page .nav-links > li > a.active {
opacity: 1; color: var(--orange);
}

.iskra-contacts-page .nav-cta {
margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
}

.iskra-contacts-page .nav-phone {
font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; color: var(--text);
}

.iskra-contacts-page .nav-sub {
font-size: 11px; color: var(--orange); font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}

.iskra-contacts-page .nav-dropdown {
position: relative; display: flex; align-items: center;
}

.iskra-contacts-page .nav-drop-menu {
position: fixed; top: -9999px; left: -9999px;
      background: #fff; border-top: 3px solid #FF5500; border-radius: 0;
      box-shadow: 0 8px 24px rgba(0,0,0,.13); min-width: 200px; padding: 0;
      opacity: 0; pointer-events: none; transition: opacity .15s; z-index: 9999;
}

.iskra-contacts-page .nav-drop-menu.is-open {
opacity: 1; pointer-events: auto;
}

.iskra-contacts-page .nav-drop-menu a {
display: block; padding: 13px 20px; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #111110; border-bottom: 1px solid #E4E2DC; transition: background .12s, color .12s, padding-left .12s;
}

.iskra-contacts-page .nav-drop-menu a:last-child {
border-bottom: none;
}

.iskra-contacts-page .nav-drop-menu a:hover {
background: oklch(93% 0.018 260); color: #FF5500; padding-left: 28px;
}

.iskra-contacts-page .nav-drop-menu a.drop-active {
color: #FF5500;
}

.iskra-contacts-page .section-eyebrow {
display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}

.iskra-contacts-page .section-eyebrow::before {
content: ''; display: block; width: 24px; height: 2px; background: var(--orange);
}

.iskra-contacts-page .contact-hero {
background: var(--dark); padding: 80px 0 72px;
}

.iskra-contacts-page .hero-title {
font-size: clamp(44px, 6vw, 84px); color: #fff; line-height: 1;
}

.iskra-contacts-page .hero-title span {
color: var(--orange);
}

.iskra-contacts-page .hero-sub {
font-size: 16px; color: rgba(255,255,255,.45); line-height: 1.75; margin-top: 16px; max-width: 480px;
}

.iskra-contacts-page .form-card {
background: #fff; border-radius: 8px; padding: 40px;
}

.iskra-contacts-page .form-label {
font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text); margin-bottom: 8px; display: block;
}

.iskra-contacts-page .form-control-iskra {
width: 100%; background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 14px 16px; font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--text); transition: border-color .2s, box-shadow .2s; outline: none; margin-bottom: 16px;
}

.iskra-contacts-page .form-control-iskra:focus {
border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,85,0,.1);
}

.iskra-contacts-page .form-control-iskra::placeholder {
color: var(--muted);
}

.iskra-contacts-page select.form-control-iskra {
appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center;
}

.iskra-contacts-page textarea.form-control-iskra {
resize: vertical; min-height: 100px;
}

.iskra-contacts-page .btn-primary-iskra {
display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; padding: 16px 36px; border-radius: var(--radius); transition: background .2s, transform .15s; border: none; cursor: pointer; width: 100%; justify-content: center; font-size: 17px;
}

.iskra-contacts-page .btn-primary-iskra:hover {
background: var(--orange-h); transform: translateY(-1px);
}

.iskra-contacts-page .contacts-section {
padding: 80px 0; background: var(--bg);
}

.iskra-contacts-page .contact-item {
display: flex; align-items: flex-start; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border);
}

.iskra-contacts-page .contact-item:first-child {
border-top: 1px solid var(--border);
}

.iskra-contacts-page .contact-icon {
width: 48px; height: 48px; background: oklch(90% 0.025 260); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.iskra-contacts-page .contact-label {
font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}

.iskra-contacts-page .contact-value {
font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 22px; color: var(--text); line-height: 1.2;
}

.iskra-contacts-page .contact-value a {
color: var(--text); transition: color .2s;
}

.iskra-contacts-page .contact-value a:hover {
color: var(--orange);
}

.iskra-contacts-page .contact-note {
font-size: 13px; color: var(--muted); margin-top: 2px;
}

.iskra-contacts-page .map-section {
padding: 0 0 80px; background: var(--bg);
}

.iskra-contacts-page .map-placeholder {
width: 100%; height: 360px; background: var(--bg-alt); border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
}

.iskra-contacts-page .map-placeholder::after {
content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(0,0,0,.02) 20px, rgba(0,0,0,.02) 40px);
}

.iskra-contacts-page .map-label {
font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase;
}

.iskra-contacts-page .social-section {
padding: 64px 0; background: var(--bg-alt);
}

.iskra-contacts-page .social-item {
display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: #fff; border-radius: 8px; transition: transform .2s, box-shadow .2s;
}

.iskra-contacts-page .social-item:hover {
transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.iskra-contacts-page .social-icon {
width: 44px; height: 44px; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.iskra-contacts-page .social-name {
font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; text-transform: uppercase;
}

.iskra-contacts-page .social-handle {
font-size: 13px; color: var(--muted);
}

.iskra-contacts-page .footer {
background: #080F24; padding: 40px 0 28px; color: rgba(255,255,255,.4);
}

.iskra-contacts-page .footer-copy {
font-size: 12px; margin-top: 6px;
}

.iskra-contacts-page .footer-links {
list-style: none; padding: 0; display: flex; gap: 20px; flex-wrap: wrap; justify-content: flex-end;
}

.iskra-contacts-page .footer-links a {
font-size: 13px; color: rgba(255,255,255,.4); transition: color .2s;
}

.iskra-contacts-page .footer-links a:hover {
color: #fff;
}

.iskra-production-page .container,
.iskra-contacts-page .container {
    padding-right: 15px;
    padding-left: 15px;
}

.iskra-production-page .row,
.iskra-contacts-page .row {
    margin-right: -15px;
    margin-left: -15px;
}

.iskra-production-page [class*="col-"],
.iskra-contacts-page [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

/* === Sport detail pages === */
.iskra-sport-detail-page .sport-detail-hero {
    min-height: 70vh;
    background: var(--dark);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
}

.iskra-sport-detail-page .sport-detail-hero-img {
    position: absolute;
    inset: 0;
}

.iskra-sport-detail-page .sport-detail-hero-img picture {
    display: block;
    width: 100%;
    height: 100%;
}

.iskra-sport-detail-page .sport-detail-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.iskra-sport-detail-page .sport-detail-hero-grad {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, oklch(13% 0.055 258 / 0.92) 32%, oklch(13% 0.055 258 / 0.1) 70%),
        linear-gradient(to top, oklch(13% 0.055 258 / 0.9) 0%, transparent 30%);
    z-index: 1;
}

.iskra-sport-detail-page .sport-detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 72px;
}

.iskra-sport-detail-page .sport-detail-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.iskra-sport-detail-page .sport-detail-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
}

.iskra-sport-detail-page .sport-detail-title {
    font-size: clamp(44px, 6vw, 84px);
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
}

.iskra-sport-detail-page .sport-detail-desc {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.iskra-sport-detail-page .sport-detail-features {
    padding: 80px 0;
    background: var(--bg);
}

.iskra-sport-detail-page .sport-detail-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 3.5vw, 56px);
    line-height: 1.05;
    text-transform: uppercase;
}

.iskra-sport-detail-page .sport-detail-section-title span {
    color: var(--orange);
}

.iskra-sport-detail-page .sport-detail-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.iskra-sport-detail-page .sport-detail-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--text);
}

.iskra-sport-detail-page .sport-detail-feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.iskra-sport-detail-page .sport-detail-image-card {
    width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-alt);
}

.iskra-sport-detail-page .sport-detail-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iskra-sport-detail-page .sport-detail-products {
    padding: 80px 0;
    background: var(--bg-alt);
}

.iskra-sport-detail-page .sport-detail-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    position: relative;
}

.iskra-sport-detail-page .sport-detail-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,.1);
}

.iskra-sport-detail-page .sport-detail-product-card.featured {
    border: 2px solid var(--orange);
}

.iskra-sport-detail-page .sport-detail-product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--orange);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    z-index: 2;
}

.iskra-sport-detail-page .sport-detail-product-img {
    height: 220px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.iskra-sport-detail-page .sport-detail-product-img.dark {
    background: var(--dark);
}

.iskra-sport-detail-page .sport-detail-product-img span {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.iskra-sport-detail-page .sport-detail-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.iskra-sport-detail-page .sport-detail-product-card:hover .sport-detail-product-img img {
    transform: scale(1.06);
}

.iskra-sport-detail-page .sport-products-carousel-wrap {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.iskra-sport-detail-page .sport-products-carousel-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: sport-products-carousel-scroll 46s linear infinite;
}

.iskra-sport-detail-page .sport-products-carousel-track:hover {
    animation-play-state: paused;
}

.iskra-sport-detail-page .sport-products-manual-carousel {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 64px 42px;
}

.iskra-sport-detail-page .sport-products-manual-viewport {
    overflow: hidden;
    border-radius: 14px;
}

.iskra-sport-detail-page .sport-products-manual-track {
    display: flex;
    gap: 22px;
    transition: transform .35s ease;
    will-change: transform;
}

.iskra-sport-detail-page .sport-products-carousel-item {
    width: 320px;
    height: 420px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(8,15,36,.08);
}

.iskra-sport-detail-page .sport-products-manual-track .sport-products-carousel-item {
    width: calc((100% - 44px) / 3);
    box-shadow: 0 18px 44px rgba(8,15,36,.08);
    border-radius: 12px;
}

.iskra-sport-detail-page .sport-products-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.iskra-sport-detail-page .sport-products-arrow {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transform: translateY(-50%);
    box-shadow: 0 14px 30px rgba(255,85,0,.22);
    transition: background .2s, transform .2s;
}

.iskra-sport-detail-page .sport-products-arrow:hover {
    background: var(--orange-h);
    transform: translateY(-50%) scale(1.05);
}

.iskra-sport-detail-page .sport-products-arrow-prev {
    left: 0;
}

.iskra-sport-detail-page .sport-products-arrow-next {
    right: 0;
}

.iskra-sport-detail-page .sport-products-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.iskra-sport-detail-page .sport-products-dot {
    width: 9px;
    height: 9px;
    border: none;
    border-radius: 50%;
    background: rgba(8,15,36,.22);
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}

.iskra-sport-detail-page .sport-products-dot.active {
    background: var(--orange);
    transform: scale(1.25);
}

@media (max-width: 991.98px) {
    .iskra-sport-detail-page .sport-products-manual-track .sport-products-carousel-item {
        width: calc((100% - 22px) / 2);
    }
}

@media (max-width: 575.98px) {
    .iskra-sport-detail-page .sport-products-manual-carousel {
        padding: 0 52px 42px;
    }

    .iskra-sport-detail-page .sport-products-manual-track .sport-products-carousel-item {
        width: 100%;
    }
}

@keyframes sport-products-carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.iskra-sport-detail-page .sport-detail-products-lead {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.iskra-sport-detail-page .sport-detail-product-img.dark span {
    color: rgba(255,255,255,.25);
}

.iskra-sport-detail-page .sport-detail-product-body {
    padding: 24px 24px 28px;
}

.iskra-sport-detail-page .sport-detail-product-tier {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.iskra-sport-detail-page .sport-detail-product-tier.orange {
    color: var(--orange);
}

.iskra-sport-detail-page .sport-detail-product-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
}

.iskra-sport-detail-page .sport-detail-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.iskra-sport-detail-page .sport-detail-product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #444;
}

.iskra-sport-detail-page .sport-detail-product-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.iskra-sport-detail-page .sport-detail-product-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}

.iskra-sport-detail-page .sport-detail-product-link:hover {
    gap: 12px;
    color: var(--orange);
}

.iskra-sport-detail-page .sport-detail-cta {
    background: var(--dark);
    padding: 72px 0;
}

.iskra-sport-detail-page .sport-detail-cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 52px);
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
}

.iskra-sport-detail-page .sport-detail-cta-sub {
    font-size: 15px;
    color: rgba(255,255,255,.45);
    margin-top: 12px;
    line-height: 1.7;
}

.sport-form-types {
    padding: 96px 0;
    background: linear-gradient(180deg, #171c28 0%, #101522 100%);
    color: #fff;
}

.sport-form-types .sport-detail-section-title {
    color: #fff;
}

.sport-form-types .section-eyebrow {
    color: var(--orange);
}

.sport-form-types-lead {
    color: rgba(255,255,255,.55);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.design-carousel-lead {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.sport-type-card {
    min-height: 260px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 24px 22px;
    color: var(--text);
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0,0,0,.18);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.sport-type-card::before {
    content: '';
    position: absolute;
    inset: auto -30px -45px auto;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255,85,0,.08);
    transition: transform .3s, opacity .3s;
}

.sport-type-card:hover {
    color: var(--text);
    text-decoration: none;
    border-color: rgba(255,85,0,.35);
    box-shadow: 0 24px 58px rgba(255,85,0,.13), 0 18px 42px rgba(8,15,36,.08);
    transform: translateY(-6px);
}

.sport-type-card:hover::before {
    transform: scale(1.25);
    opacity: .9;
}

.sport-type-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .12em;
    color: var(--orange);
    margin-bottom: 18px;
}

.sport-type-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 21px;
    line-height: 1.02;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.sport-type-desc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

.sport-type-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange);
    position: relative;
    z-index: 1;
    padding-top: 24px;
}

.design-carousel-section {
    padding: 96px 0;
    background: var(--bg);
    overflow: hidden;
}

.design-carousel-wrap {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.design-carousel-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: design-carousel-scroll 42s linear infinite;
}

.design-carousel-track:hover {
    animation-play-state: paused;
}

.design-carousel-item {
    width: 320px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(8,15,36,.07);
}

.design-carousel-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.design-carousel-caption {
    padding: 16px 18px 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

@keyframes design-carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
