
    /* =========================================================
       01. GLOBALNE USTAWIENIA — kolory, kontener, bazowy styl
       ========================================================= */


       :root {

  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

}
    :root {
      --red: #ed1c24;
      --red-dark: #c80e16;
      --black: #090b0f;
      --ink: #111827;
      --muted: #667085;
      --line: rgba(17, 24, 39, .10);
      --soft: #f7f7f8;
      --radius: 10px;
      --container: 1240px;
      --header-h: 86px;
    }

    * { box-sizing: border-box; }

    html { scroll-padding-top: calc(var(--header-h) + 24px); }

    body {
      margin: 0;
     font-family: var(--font-body);
      color: var(--ink);
      background: #fff;
      overflow-x: hidden;
    }

    body.menu-open { overflow: hidden; }

    .page-container {
      width: min(calc(100% - 48px), var(--container));
      margin-inline: auto;
    }  

    .section-title-kicker {
      color: var(--red);
      font-size: 15px;
      line-height: 1;
      letter-spacing: .02em;
      font-weight: 600;
      text-transform: uppercase;
   
    }

      .section-title-kicker-grey {
      color: #464646;
      font-size: 15px;
      line-height: 1;
      letter-spacing: .02em;
      font-weight: 600;
      text-transform: uppercase;
   
    }

    .section-title-kicker-red {
      color: rgb(206, 2, 2) !important;
      font-size: 15px;
      line-height: 1;
      letter-spacing: .02em;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 20px;
   
    }

    .section-heading {
      color: var(--ink);
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.12;
      font-weight: 700;
      letter-spacing: -.035em;
      
    }



    .section-copy {
      color: #4b5563;
      font-size: 16px;
      line-height: 1.85;
    }

    .red { color: var(--red); }

    .btn-primary,
    .btn-outline,
    .btn-dark,
    .btn-white, .btn-redtwo {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 4px;
      padding: 0 24px;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .02em;
      transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--red);
      color: #fff;
      border: 1px solid var(--red);
      box-shadow: 0 14px 30px rgba(237, 28, 36, .25);
    }
    .btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }

    .btn-outline {
      color: #fff;
      border: 1px solid rgba(255,255,255,.40);
      background: rgba(0,0,0,.18);
    }
    .btn-outline:hover { color: var(--black); background: #fff; border-color: #fff; transform: translateY(-2px); }

    .btn-dark {
      color: #fff;
      background: #101217;
      border: 1px solid #101217;
    }
    .btn-dark:hover { background: #000; transform: translateY(-2px); }

    .btn-white {
      color: #111827;
      background: #fff;
      border: 1px solid var(--line);
    }
    .btn-white:hover { color: var(--red); border-color: rgba(237, 28, 36, .35); transform: translateY(-2px); }

 .btn-redtwo {
      color: #111827;
      background: #fff;
      border: 1px solid rgba(237, 28, 36, .35);
    }
    .btn-redtwo:hover { border-color: #d61f26; transform: translateY(-2px); }



.trust-signature {
  margin-top: 48px;
  padding: 34px 38px;
  background:
    linear-gradient(135deg, rgba(237,28,36,.055), rgba(255,255,255,0) 42%),
    #ffffff;
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 14px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
  position: relative;
  overflow: hidden;
  transform: translateY(14px);
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease, box-shadow .28s ease;
}

.trust-signature.visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-signature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 4px;
  background: #ed1c24;
  border-radius: 0 99px 99px 0;
}

.trust-signature::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(237,28,36,.14), transparent 68%);
  transition: transform .45s ease;
}

.trust-signature:hover {
  box-shadow: 0 30px 76px rgba(15, 23, 42, .11);
}

.trust-signature:hover::after {
  transform: scale(1.18);
}

.trust-signature__label {
  display: block;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #ed1c24;
}

.trust-signature p {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 980px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 1.65vw, 20px);
  line-height: 1.42;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #111827;
}

@media (max-width: 720px) {
  .trust-signature {
    padding: 28px 24px;
    margin-top: 34px;
  }

  .trust-signature p {
    font-size: 18px;
    line-height: 1.5;
  }
}


    

.mt-2 {margin-bottom: 20px;}
    .arrow-red { color: var(--red); font-size: 20px; line-height: 0; }
    .arrow-white { color: #ffffff; font-size: 20px; line-height: 0; }

    .soft-card {
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 6px;
      box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .soft-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 55px rgba(15, 23, 42, .10);
      border-color: rgba(237, 28, 36, .30);
    }

    .icon-red svg {
      width: 33px;
      height: 33px;
      stroke: var(--red);
      stroke-width: 1.85;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .tiny-icon svg {
      width: 25px;
      height: 25px;
      stroke: var(--red);
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .image-cover { width: 100%; height: 100%; object-fit: cover; display: block; }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      height: var(--header-h);
      font-size: 14px;
      font-weight: 600;
      color: #111827;
      text-transform: uppercase;
      letter-spacing: .02em;
      transition: color .18s ease;
    }
    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 23px;
      width: 0;
      height: 2px;
      background: var(--red);
      transition: width .22s ease;
    }
    .nav-link:hover { color: var(--red); }
    .nav-link:hover::after { width: 100%; }

    .header-shadow { box-shadow: 0 10px 30px rgba(15, 23, 42, .08); }

    /* =========================================================
       02. HEADER — biały jak na wizualizacji
       ========================================================= */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      height: var(--header-h);
      background: #fff;
      border-bottom: 1px solid rgba(15, 23, 42, .06);
    }

    .logo-img { width: 300px; max-width: 100%; height: auto; display: block; }

    .phone-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 900;
      color: #111827;
      white-space: nowrap;
      transition: color .18s ease;
    }
    .phone-link:hover { color: var(--red); }
    .phone-link svg { width: 18px; height: 18px; stroke: var(--red); stroke-width: 2; fill: none; }

    .hamburger {
      width: 46px;
      height: 46px;
      border: 1px solid rgba(15, 23, 42, .11);
      border-radius: 8px;
      display: none;
      align-items: center;
      justify-content: center;
      background: #fff;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #111827;
      margin: 4px 0;
      border-radius: 99px;
      transition: transform .26s ease, opacity .26s ease;
    }
    body.menu-open .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
    body.menu-open .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* =========================================================
       03. MENU MOBILNE — pełnoekranowy panel z linkami do podstron
       ========================================================= */
    .mobile-backdrop {
      position: fixed;
      inset: 0;
      z-index: 80;
      background: rgba(3, 7, 18, .62);
      opacity: 0;
      pointer-events: none;
      transition: opacity .28s ease;
    }
    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 90;
      width: min(92vw, 440px);
      height: 100dvh;
      background: #fff;
      transform: translateX(105%);
      transition: transform .42s cubic-bezier(.16, 1, .3, 1);
      box-shadow: -28px 0 80px rgba(15, 23, 42, .24);
      display: grid;
      grid-template-rows: auto 1fr auto;
    }
    body.menu-open .mobile-backdrop { opacity: 1; pointer-events: auto; }
    body.menu-open .mobile-menu { transform: translateX(0); }
    .mobile-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 17px 2px;
      font-size: 22px;
      font-weight: 600;
      color: #111827;
      border-bottom: 1px solid rgba(15, 23, 42, .08);
      text-transform: uppercase;
      letter-spacing: -.02em;
      font-family: 'inter', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    }
    .mobile-link span { color: var(--red); font-weight: 900; }

.scope-small-title {
  margin: 38px 0 18px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #bebebe;
}








    @media (max-width: 768px) {

  .about-stats {
    display: none !important;
  }

}

    /* =========================================================
       04. HERO — ciemny lewy gradient, biały header nad nim
       ========================================================= */
    .hero {
      position: relative;
      min-height: 660px;
      isolation: isolate;
      color: #fff;
      background: #050608;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.88) 34%, rgba(0,0,0,.38) 63%, rgba(0,0,0,.12) 100%),
        url('http://integradomy.pl/assets/img/deb36bdf-b4bd-4bea-a8b7-1733ff1a86df.png');
      background-size: cover;
      background-position: center right;
      transform: scale(1.01);
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0; 
      height: 185px;
      z-index: -1;
      background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.92) 78%);
      pointer-events: none;
    }
    .hero-content {
      min-height: 660px;
      display: grid;
      grid-template-columns: minmax(0, 560px) 1fr;
      align-items: center;
      padding-block: 64px 112px;
    }
    .hero h1 {
      font-size: clamp(42px, 5vw, 66px);
      line-height: 1.12;
      font-weight: 600;
      letter-spacing: -.055em;
      max-width: 610px;  
    }
    .hero-copy {
      margin-top: 25px;
      max-width: 500px;
      color: rgba(255,255,255,.83);
      font-size: 16px;
      line-height: 1.8;
    }
    .hero-actions { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-stats {
      position: absolute;
      left: 50%;
      bottom: 34px;
      transform: translateX(-50%);
      width: min(calc(100% - 48px), var(--container));
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 26px;
      align-items: center;
    }
    .hero-stat {
      display: grid;
      grid-template-columns: 38px 1fr;
      align-items: center;
      gap: 13px;
      min-width: 0;
    }
    .hero-stat svg { width: 36px; height: 36px; stroke: var(--red); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
    .hero-stat strong { display: block; font-size: 15px; line-height: 1; font-weight: 550; letter-spacing: -.02em; color: #fff; }
    .hero-stat span { display: block; margin-top: 5px; font-size: 11px; line-height: 1.35; color: rgba(255,255,255,.75); font-weight: 700; }
    .slider-dots { position: absolute; right: max(24px, calc((100vw - var(--container)) / 2)); bottom: 24px; display: flex; gap: 7px; }
    .slider-dots i { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.45); }
    .slider-dots i:first-child { background: var(--red); width: 18px; }
    .hero-p2 {font-size: 12px; color: #777;}
    .hero-pd {font-size: 15px; color: #000; font-weight: 600;}

    /* =========================================================
       05. O NAS
       ========================================================= */
    .about-section { padding: 54px 0 28px; background: #fff; }
    .about-grid { display: grid; grid-template-columns: minmax(0, 1.38fr) minmax(0, 0.75fr); gap: 68px; align-items: center; }
    .about-stats { margin-top: 40px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); /*gap: 25px; */}
    .about-stat strong { display: block; margin-top: 13px; font-size: 22px; line-height: 1; font-weight: 950; color: #111827; }
    .about-stat span { display: block; margin-top: 6px; color: #4b5563; font-size: 12px; font-weight: 700; line-height: 1.35; }
    .about-image { height: 420px; border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(15, 23, 42, .10); }

    /* =========================================================
       06. OFERTA / CO ROBIMY
       ========================================================= */
    .offer-section { padding: 26px 0 62px; background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%); }
    .cards-6 { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
    .offer-card { min-height: 262px; overflow: hidden; display: flex; flex-direction: column; }
    .offer-card .thumb { height: 118px; overflow: hidden; background: #e5e7eb; }
    .offer-card .body { padding: 22px 20px 20px; display: flex; flex-direction: column; flex: 1; }
    .offer-card h3 { margin-top: 14px; font-size: 16px; line-height: 1.22; font-weight: 950; color: #111827; letter-spacing: -.02em; }
    .offer-card p { margin-top: 13px; color: #4b5563; font-size: 13px; line-height: 1.55; flex: 1; }
    .card-plus { margin-top: 15px; color: var(--red); font-weight: 950; font-size: 20px; line-height: 1; }

    /* =========================================================
       07. MODUŁ ZAZNACZONY NA SCREENIE — realizacje specjalistyczne
       ========================================================= */
    .special-section { padding: 0px 0 44px; background: #fff; }
    .special-shell { position: relative; }
    .special-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; align-items: start; }
    .special-card { display: block; text-align: center; color: inherit; }
    .special-card .thumb { height: 142px; border-radius: 4px; overflow: hidden; background: #e5e7eb; box-shadow: 0 12px 24px rgba(15, 23, 42, .07); }
    .special-icon {
      width: 52px;
      height: 52px;
      margin: -25px auto 11px;
      position: relative;
      z-index: 2;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, .12);
      display: grid;
      place-items: center;
      box-shadow: 0 7px 18px rgba(15, 23, 42, .09);
    }
    .special-icon svg { width: 24px; height: 24px; stroke: var(--red); stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; }
    .special-card h3 { font-size: 15px; line-height: 1.22; font-weight: 950; color: #111827; letter-spacing: -.02em; }
    .special-card:hover h3 { color: var(--red); }

    /* =========================================================
       08. REALIZACJE
       ========================================================= */
    .portfolio-section { padding: 46px 0 56px; background: #fff; }
    .portfolio-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 25px; }
    .portfolio-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
    .portfolio-card { height: 215px; position: relative; display: block; overflow: hidden; border-radius: 4px; background: #e5e7eb; }
    .portfolio-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.58) 100%); opacity: 0; transition: opacity .2s ease; }
    .portfolio-card img { transition: transform .45s ease; }
    .portfolio-card:hover img { transform: scale(1.06); }
    .portfolio-card:hover::after { opacity: 1; }
    .portfolio-card span { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; color: #fff; font-size: 14px; font-weight: 900; opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
    .portfolio-card:hover span { opacity: 1; transform: translateY(0); }
    .portfolio-dots { margin-top: 20px; display: flex; justify-content: center; gap: 8px; }
    .portfolio-dots i { width: 8px; height: 8px; border-radius: 999px; background: #d1d5db; }
    .portfolio-dots i:first-child { background: var(--red); width: 18px; }

    /* =========================================================
       09. PROCES WSPÓŁPRACY
       ========================================================= */
    .process-section { padding: 52px 0 26px; background: #fff; }
    .process-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 42px; position: relative; }
    .process-item { display: grid; grid-template-columns: 76px 1fr; gap: 20px; align-items: start; position: relative; }
    .process-item:not(:last-child)::after {
      content: "";
      position: absolute;
      left: calc(100% + 2px);
      top: 38px;
      width: 38px;
      border-top: 1px dashed rgba(237, 28, 36, .55);
    }
    .process-circle { width: 76px; height: 76px; border-radius: 999px; border: 1px solid rgba(237, 28, 36, .28); display: grid; place-items: center; background: #fff; }
    .process-circle svg { width: 34px; height: 34px; stroke: var(--red); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
    .process-item small { display: block; color: var(--red); font-size: 18px; font-weight: 950; line-height: 1; margin-bottom: 8px; }
    .process-item h3 { font-size: 15px; font-weight: 950; color: #111827; line-height: 1.25; }
    .process-item p { margin-top: 8px; color: #4b5563; font-size: 13px; line-height: 1.55; }

    /* =========================================================
       10. CTA / FORMULARZ
       ========================================================= */
    .contact-section { padding: 0 0 0; background: #fff; }
    .contact-box { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); overflow: hidden; border-radius: 4px; box-shadow: 0 24px 70px rgba(15, 23, 42, .12); }
    .contact-left { position: relative; min-height: 360px; color: #fff; background: #080a0e; overflow: hidden; display: flex; align-items: center; padding: 48px; }
    .contact-left::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.38)), url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1400&q=85'); background-size: cover; background-position: center right; opacity: .95; }
    .contact-left > div { position: relative; max-width: 470px; }
    .contact-left h2 { font-size: clamp(34px, 4vw, 48px); line-height: 1.18; font-weight: 950; letter-spacing: -.045em; }
    .contact-features { margin-top: 34px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
    .contact-feature { color: #fff; font-size: 12px; font-weight: 850; line-height: 1.3; }
    .contact-feature svg { width: 32px; height: 32px; stroke: var(--red); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 10px; }
    .contact-form { background: var(--red); padding: 42px 38px; }
    .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .contact-form input, .contact-form textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,.45);
      background: rgba(255,255,255,.04);
      color: #fff;
      border-radius: 4px;
      padding: 15px 16px;
      outline: none;
      font-size: 14px;
    }
    .contact-form textarea { min-height: 118px; resize: vertical; grid-column: 1 / -1; }
    .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.80); }
    .contact-form input:focus, .contact-form textarea:focus { border-color: #fff; background: rgba(255,255,255,.09); }
    .consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0 18px; color: rgba(255,255,255,.92); font-size: 11px; line-height: 1.45; }
    .consent input { width: 15px; height: 15px; min-width: 15px; margin-top: 2px; accent-color: #111827; padding: 0; }
    .consent a { color: #fff; font-weight: 900; text-decoration: underline; text-underline-offset: 2px; }
    .submit-btn { width: 100%; min-height: 50px; border-radius: 4px; background: #090b0f; color: #fff; font-size: 12px; font-weight: 950; text-transform: uppercase; transition: background .18s ease, transform .18s ease; }
    .submit-btn:hover { background: #000; transform: translateY(-1px); }

    /* =========================================================
       11. FOOTER
       ========================================================= */
    .footer { margin-top: 0; background: #080a0e; color: #fff; padding: 55px 0 24px; }
    .footer-grid { display: grid; grid-template-columns: 1.45fr .7fr .86fr .95fr .78fr; gap: 48px; }
    .footer-logo { width: 210px; height: auto; display: block; filter: brightness(0) invert(1); }
    .footer p, .footer a, .footer li { color: rgba(255,255,255,.67); font-size: 13px; line-height: 1.75; }
    .footer a:hover { color: #fff; }
    .footer h3 { font-size: 12px; text-transform: uppercase; font-weight: 950; letter-spacing: .03em; margin-bottom: 19px; }
    .socials { display: flex; gap: 10px; margin-top: 22px; }
    .socials a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); color: #fff; }
    .socials svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 1.8; fill: none; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 38px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
    .footer-bottom a, .footer-bottom span { font-size: 12px; color: rgba(255,255,255,.60); }

    /* =========================================================
       12. ANIMACJE I RESPONSYWNOŚĆ
       ========================================================= */
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity .58s ease, transform .58s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 1180px) {
      :root { --container: 1060px; }
      .logo-img { width: 200px; }
      .desktop-nav { gap: 22px !important; }
      .phone-link { display: none; }
      .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); bottom: 24px; }
      .cards-6, .special-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .process-item:not(:last-child)::after { display: none; }
      .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    }

    @media (max-width: 940px) {
      :root { --header-h: 76px; }
      .page-container { width: min(calc(100% - 32px), var(--container)); }
      .desktop-nav, .header-actions { display: none !important; }
      .hamburger { display: flex; }
      .logo-img { width: 185px; }
      .hero { min-height: 720px; }https://integradomy.pl/assets/img/deb36bdf-b4bd-4bea-a8b7-1733ff1a86df.png
      .hero::before { background-image: linear-gradient(180deg, rgba(0,0,0,.91) 0%, rgba(0,0,0,.77) 47%, rgba(0,0,0,.70) 100%), url(''); background-position: center; }
      .hero-content { min-height: 720px; grid-template-columns: 1fr; padding-block: 55px 230px; }
      .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
      .slider-dots { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 34px; }
      .about-image { height: 330px; }
      .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .cards-6, .special-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .contact-box { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      .page-container { width: min(calc(100% - 24px), var(--container)); }
      .logo-img { width: 250px; }
      .hero { min-height: 760px; }
      .hero-content { min-height: 760px; padding-block: 44px 285px; }
      .hero h1 { font-size: 40px; }
      .hero-copy { font-size: 15px; }
      .hero-actions { flex-direction: column; }
      .btn-primary, .btn-outline, .btn-dark, .btn-white { width: 100%; }
      .hero-stats {  gap: 19px; bottom: 70px; } /*grid-template-columns: 1fr;*/
      .hero-stat { grid-template-columns: 32px 1fr; }
      .hero-stat svg { width: 30px; height: 30px; }
      .hero-stat strong { font-size: 15px; }
      .about-section, .offer-section, .special-section, .portfolio-section, .process-section {  }
      .about-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
      .cards-6 { grid-template-columns: 1fr; }
      .special-grid { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 16px; margin-inline: -4px; }
      .special-card { flex: 0 0 70%; scroll-snap-align: start; }
      .portfolio-head { align-items: stretch; flex-direction: column; }
      .portfolio-grid { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; }
      .portfolio-card { flex: 0 0 82%; scroll-snap-align: start; height: 210px; }
      .process-grid { grid-template-columns: 1fr; gap: 24px; }
      .process-item { grid-template-columns: 64px 1fr; }
      .process-circle { width: 64px; height: 64px; }
      .contact-left { padding: 36px 24px; min-height: 380px; }
      .contact-features { grid-template-columns: 1fr; gap: 16px; }
      .contact-form { padding: 28px 18px; }
      .form-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 34px; }
      .footer-bottom { flex-direction: column; }
      .mobile-menu { width: 100vw; }


.hamburger {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(15, 23, 42, .11);
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111827;
  margin: 4px 0;
  border-radius: 99px;
  transition: transform .26s ease, opacity .26s ease;
}

body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 940px) {
  .hamburger {
    display: flex;
  }




  :root {
  --bg: #f5f5f5;
  --text: #111111;
  --muted: #6e6e6e;
  --line: #e2e2e2;
  --accent: #d61f26;
  --icon: #555555;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

.investment-features {
  width: 100%;
 
  padding: 32px 0;
}

.investment-features__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  padding: 0 28px;
  min-height: 260px;
  position: relative;
}

.feature-card:not(:last-child) {
  border-right: 1px solid var(--line);
}

.feature-card__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.feature-card__icon svg {
  width: 54px;
  height: 54px;
  display: block;
}

.feature-card__title {
  margin: 0 0 14px;
  font-size: 27px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.feature-card__text {
  margin: 0;
  font-size: 22px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 280px;
}

.stroke-dark {
  stroke: var(--icon);
}

.stroke-red {
  stroke: var(--accent);
}

@media (max-width: 1200px) {
  .investment-features__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    padding: 24px 24px 30px;
    min-height: auto;
  }

  .feature-card:nth-child(2) {
    border-right: none;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-card__title {
    font-size: 23px;
  }

  .feature-card__text {
    font-size: 19px;
  }
}

@media (max-width: 700px) {
  .investment-features {
    padding: 18px 0;
  }

  .investment-features__inner {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:nth-child(2) {
    border-right: none;
  }

  .feature-card:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    padding-bottom: 8px;
  }

  .feature-card__icon {
    margin-bottom: 16px;
  }

  .feature-card__title {
    font-size: 20px;
  }

  .feature-card__text {
    font-size: 16px;
    line-height: 1.6;
  }
}
