/**
 * Strona główna wg makiety dewelopera (aldo-homepage-concept.html).
 * Ładowana wyłącznie na froncie (is_front_page). Font: Montserrat.
 * Sekcja wdrażana etapami – aktualnie: HERO.
 */

body.home {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* Eyebrow wg makiety na całej stronie głównej (żółty, wersaliki) */
body.home .eyebrow {
  color: #f2b705;
  font-weight: 800 !important;
  letter-spacing: .16em;
  text-transform: uppercase !important;
}

/* Nagłówki sekcji na stronie głównej – półgrube jak w makiecie (nie 400) */
body.home h2 {
  font-weight: 700 !important;
}

/* Tokeny makiety (na razie w zasięgu hero) */
.hero {
  --home-green: #f2b705;
  --home-green-dark: #d9a404;
  --home-green-light: #fff3d4;
  --home-ink: #000f26;
  --home-radius: 22px;
}

/* ---- HERO ---------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: end;
  width: min(1540px, calc(100% - 20px));
  min-height: calc(100vh - 132px);
  margin: 10px auto 0;
  overflow: hidden;
  color: #fff;
  background: var(--home-ink);
  border-radius: 18px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, .12);
}

/* neutralizacja stylów hero ze starego motywu */
.hero::before,
.hero::after {
  content: none;
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.02);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .48) 46%, rgba(0, 0, 0, .08) 75%),
    linear-gradient(0deg, rgba(0, 0, 0, .62) 0%, transparent 42%),
    var(--home-hero-image, url("../images/hero-teleoperacja.webp")) center / cover no-repeat;
}

/* ---- HERO: wideo w tle ---------------------------------------------------
   Film jest warstwą pod przyciemnieniem, a nie jedynym tłem sekcji: zdjęcie
   z `poster` widać zanim plik się wczyta, a przy `prefers-reduced-motion`
   wideo znika i zostaje samo zdjęcie. */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero.has-video .hero-bg {
  /* Zdjęcie schodzi z tej warstwy – zostaje samo przyciemnienie nad filmem. */
  z-index: 1;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .48) 46%, rgba(0, 0, 0, .08) 75%),
    linear-gradient(0deg, rgba(0, 0, 0, .62) 0%, transparent 42%);
}

.hero.has-video .hero-content {
  z-index: 2;
}

/* Wysokość dopasowana do kadru filmu, z podłogą na treść i sufitem na wysokie
   ekrany. Poniżej 820 px obowiązuje `min-height` z sekcji responsywnej. */
@media (min-width: 821px) {
  .hero.has-video {
    aspect-ratio: var(--hero-video-ratio, 848 / 480);
    min-height: 640px;
    max-height: calc(100vh - 132px);
  }
}

/* Wideo gra niezależnie od systemowego „ograniczenia animacji” — jest treścią
   sekcji hero, a nie efektem dekoracyjnym. Gdyby jednak trzeba było je w tym
   trybie wyłączyć, wystarczy odkomentować blok poniżej: zdjęcie hero wróci
   wtedy jako pełne tło.

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }

  .hero.has-video .hero-bg {
    z-index: 0;
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .48) 46%, rgba(0, 0, 0, .08) 75%),
      linear-gradient(0deg, rgba(0, 0, 0, .62) 0%, transparent 42%),
      var(--home-hero-image, url("../images/hero-teleoperacja.webp"));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
*/

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 105px clamp(34px, 5vw, 82px) 62px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--home-green);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase !important; /* nadpisuje globalną normalizację typografii */
}

.hero .eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.hero h1 {
  margin: 22px 0 26px;
  max-width: 880px;
  color: #fff;
  font-size: clamp(2.6rem, 5.5vw, 5.7rem);
  font-weight: 800 !important; /* nadpisuje globalną normalizację (h1 -> 400) */
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: none;
}

/* p.hero-lead – wyższa specyficzność niż motywowe `.hero p` (margin-bottom:0) */
.hero p.hero-lead {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.14rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-transform: none;
  white-space: nowrap;
  box-shadow: none;
  transition: .25s ease;
}

.hero .btn-primary {
  background: var(--home-green);
  color: #000f26;
  box-shadow: 0 8px 22px rgba(242, 183, 5, .22);
}

.hero .btn-primary:hover {
  background: var(--home-green-dark);
  color: #000f26;
  transform: translateY(-2px);
}

.hero .btn-light {
  background: #fff;
  color: var(--home-ink);
}

.hero .btn-light:hover {
  background: var(--home-green-light);
  color: var(--home-ink);
}

.hero .arrow {
  font-size: 1.25em;
}

.hero-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 90px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.hero-stat strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
}

.hero-stat span {
  color: rgba(255, 255, 255, .66);
  font-size: .82rem;
}

@media (max-width: 820px) {
  .hero {
    width: calc(100% - 14px);
    min-height: 790px;
    margin-top: 7px;
    border-radius: 14px;
  }

  .hero-content {
    padding: 90px 24px 52px;
  }

  .hero-bottom {
    grid-template-columns: 1fr 1fr;
    margin-top: 55px;
  }
}

@media (max-width: 580px) {
  .hero {
    width: calc(100% - 10px);
    min-height: 760px;
    margin-top: 5px;
    border-radius: 12px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-bottom {
    gap: 18px;
  }
}

/* ---- Quick paths (kafelki pod hero) ---- */
.quick-paths {
  position: relative;
  z-index: 10;
  width: min(1460px, calc(100% - 28px));
  margin: 14px auto 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(0, 15, 38, .12);
  overflow: hidden;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 30px;
  color: var(--aldo-heading);
  border-right: 1px solid var(--aldo-line);
  transition: background .2s ease;
}

.quick-card:last-child {
  border-right: 0;
}

.quick-card:hover {
  background: #fafafa;
}

.quick-icon {
  flex: 0 0 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(242, 183, 5, .18);
  color: #000f26;
  font-size: 1.3rem;
}

.quick-card__text {
  display: flex;
  flex-direction: column;
}

.quick-card strong {
  font-weight: 700;
}

.quick-card small {
  margin-top: 2px;
  color: var(--aldo-muted);
  font-size: .82rem;
}

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

  .quick-card {
    border-right: 0;
    border-bottom: 1px solid var(--aldo-line);
  }

  .quick-card:last-child {
    border-bottom: 0;
  }
}

/* ---- Oferta ALDO (produkty) ---- */
.products {
  background: #fff;
  padding: 100px 0;
}

.products-inner {
  width: min(1460px, calc(100% - 28px));
  margin: 0 auto;
}

.products .section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 45px;
}

.products .section-head .intro {
  max-width: 740px;
}

.products .section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.products .section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--aldo-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
  grid-column: span 4;
  min-height: 390px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  background: #00142f center / cover no-repeat;
}

.product-card.large {
  grid-column: span 8;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 8, 20, .88), rgba(0, 8, 20, .05) 65%);
}

.product-card__hoverable,
.product-card {
  transition: transform .5s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-content {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
}

.product-content h3 {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
}

.product-content p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
}

.product-top {
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--aldo-ink);
}

@media (max-width: 820px) {
  .products {
    padding: 70px 0;
  }

  .product-card,
  .product-card.large {
    grid-column: span 6;
  }

  .products .section-head {
    display: block;
  }
}

@media (max-width: 580px) {
  .product-grid {
    display: block;
  }

  .product-card,
  .product-card.large {
    margin-bottom: 16px;
    min-height: 340px;
  }
}

/* ---- Premium (KÖMMERLING) – ciemna karta 2-kol z badge ---- */
.spotlight {
  padding: 0 0 110px;
}

.spotlight-card {
  width: min(1460px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 690px;
  overflow: hidden;
  border-radius: 20px;
  background: #000f26;
  color: #fff;
}

.spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 7vw, 90px);
}

.spotlight-copy h2 {
  margin: 14px 0 0;
  color: #fff;
  font-weight: 700 !important;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.spotlight-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 1.05rem;
}

.premium-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 32px;
}

.premium-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: .78rem;
}

.spotlight .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  text-transform: none;
  box-shadow: none;
  align-self: flex-start;
}

.spotlight .btn-light {
  background: #fff;
  color: #000f26;
}

.spotlight .btn-light:hover {
  background: #fff3d4;
  color: #000f26;
}

.spotlight-media {
  position: relative;
  min-height: 520px;
  background: #000814 center / cover no-repeat;
}

.spotlight-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 8, 20, .5), transparent 35%);
}

.spotlight-badge {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 50%;
  color: #000f26;
  text-align: center;
  font-weight: 800;
  line-height: 1.15;
  transform: rotate(-6deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

@media (max-width: 820px) {
  .spotlight-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .spotlight-media {
    min-height: 420px;
    order: -1;
  }
}

@media (max-width: 580px) {
  .spotlight-copy {
    padding: 40px 26px;
  }

  .spotlight-badge {
    right: 18px;
    bottom: 18px;
    width: 110px;
    height: 110px;
    font-size: .76rem;
  }
}

/* ---- Stolarka aluminiowa (split: stos zdjęć + cechy) ---- */
.aluminium {
  background: #f4f6f8;
}

.aluminium-inner {
  width: min(1460px, calc(100% - 28px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.image-stack {
  position: relative;
  min-height: 600px;
}

.image-main {
  position: absolute;
  inset: 0 90px 65px 0;
  border-radius: 22px;
  overflow: hidden;
  background: #e7eaee center / cover no-repeat;
}

.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 270px;
  border: 10px solid #f4f6f8;
  border-radius: 22px;
  overflow: hidden;
  background: #d5dae1 center / cover no-repeat;
}

.aluminium-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.aluminium-copy p {
  margin: 18px 0 0;
  color: var(--aldo-muted);
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 700;
}

.feature-list .check {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2b705;
  color: #000f26;
  font-size: .8rem;
}

.aluminium .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  text-transform: none;
  background: #f2b705;
  color: #000f26;
  border: 1px solid #f2b705;
  box-shadow: 0 8px 22px rgba(242, 183, 5, .22);
}

.aluminium .btn-primary:hover {
  background: #d9a404;
  border-color: #d9a404;
  color: #000f26;
}

@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-stack {
    min-height: 510px;
  }
}

@media (max-width: 580px) {
  .image-main {
    inset: 0 35px 50px 0;
  }

  .image-small {
    width: 52%;
    height: 200px;
  }
}

/* ---- Dlaczego Aldo (benefits) – ciemna sekcja z kartami ---- */
.benefits {
  background: #000f26;
  color: #fff;
}

.benefits-inner {
  width: min(1460px, calc(100% - 28px));
  margin: 0 auto;
}

.benefits h2 {
  max-width: 780px;
  margin: 14px 0 45px;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
}

.benefit-card {
  min-height: 265px;
  padding: 35px;
  background: #000f26;
}

.benefit-number {
  color: #f2b705;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.benefit-card h3 {
  margin: 45px 0 12px;
  color: #fff;
  font-size: 1.25rem;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
}

@media (max-width: 1100px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---- Inteligentne rozwiązania (smart) ---- */
.smart-inner {
  width: min(1460px, calc(100% - 28px));
  margin: 0 auto;
}

.smart .section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 45px;
}

.smart .section-head .intro {
  max-width: 740px;
}

.smart .section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.smart .section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--aldo-muted);
}

.smart-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}

.smart-main {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  background: #000814 center / cover no-repeat;
}

.smart-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 8, 20, .9), rgba(0, 8, 20, .1) 65%);
}

.smart-copy {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  max-width: 650px;
  padding: 38px;
}

.smart-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.15;
}

.smart-copy p {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, .72);
}

.smart .btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  text-transform: none;
  background: #fff;
  color: #000f26;
  border: 1px solid #fff;
  box-shadow: none;
}

.smart .btn-light:hover {
  background: #fff3d4;
  color: #000f26;
}

.smart-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 36px;
  border-radius: 22px;
  background: #fff3d4;
  color: #000f26;
}

.info-card.dark {
  background: #000f26;
  color: #fff;
}

.info-card .eyebrow {
  color: var(--aldo-red-dark);
}

.info-card.dark .eyebrow {
  color: #f2b705;
}

.info-card h3 {
  margin: 10px 0 8px;
  font-size: 1.3rem;
}

.info-card p {
  margin: 0;
  color: var(--aldo-muted);
}

.info-card.dark p {
  color: rgba(255, 255, 255, .65);
}

.info-card a {
  color: inherit;
}

.info-card a strong {
  font-weight: 800;
}

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

  .smart-main {
    min-height: 460px;
  }

  .smart-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 580px) {
  .smart .section-head {
    display: block;
  }

  .smart-side {
    grid-template-columns: 1fr;
  }
}

/* ---- Inspiracje ---- */
.inspiration {
  background: #f4f6f8;
}

.inspiration-inner {
  width: min(1460px, calc(100% - 28px));
  margin: 0 auto;
}

.inspiration .section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 45px;
}

.inspiration .section-head .intro {
  max-width: 740px;
}

.inspiration .section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.inspiration .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  text-transform: none;
  white-space: nowrap;
  background: transparent;
  color: var(--aldo-ink);
  border: 1px solid var(--aldo-line);
  box-shadow: none;
}

.inspiration .btn-outline:hover {
  background: #fff;
  border-color: #f2b705;
  color: var(--aldo-ink);
}

.inspiration-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 20px;
}

.inspire-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  background: #ccd3dc center / cover no-repeat;
}

.inspire-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 8, 20, .82), transparent 60%);
}

.inspire-copy {
  position: absolute;
  z-index: 2;
  left: 25px;
  right: 25px;
  bottom: 23px;
}

.inspire-copy small {
  display: block;
  margin-bottom: 6px;
  opacity: .75;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.inspire-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.2;
}

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

  .inspire-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .inspiration .section-head {
    display: block;
  }

  .inspiration-grid {
    grid-template-columns: 1fr;
  }

  .inspire-card:first-child {
    grid-column: auto;
  }

  .inspire-card {
    min-height: 360px;
  }
}

/* ---- Serwis (pasek CTA) ---- */
.service-strip {
  padding: 70px 0;
  background: #fff;
}

.service-strip .service-inner {
  width: min(1460px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  padding: 50px;
  border: 1px solid var(--aldo-line);
  border-radius: 22px;
}

.service-copy h2 {
  margin: 12px 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.service-copy p {
  margin: 0;
  color: var(--aldo-muted);
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 22px;
  color: var(--aldo-muted);
  font-size: .88rem;
}

.service-points span::before {
  content: "\2713";
  margin-right: 8px;
  color: #f2b705;
  font-weight: 900;
}

.service-strip .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  text-transform: none;
  white-space: nowrap;
  background: #f2b705;
  color: #000f26;
  border: 1px solid #f2b705;
  box-shadow: 0 8px 22px rgba(242, 183, 5, .22);
}

.service-strip .btn-primary:hover {
  background: #d9a404;
  border-color: #d9a404;
  color: #000f26;
}

@media (max-width: 580px) {
  .service-strip .service-inner {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

/* ---- Artykuły (najnowsze wpisy) ---- */
.articles {
  padding-top: 70px;
}

.articles-inner {
  width: min(1460px, calc(100% - 28px));
  margin: 0 auto;
}

.articles .section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 45px;
}

.articles .section-head .intro {
  max-width: 740px;
}

.articles .section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.articles .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  text-transform: none;
  white-space: nowrap;
  background: transparent;
  color: var(--aldo-ink);
  border: 1px solid var(--aldo-line);
  box-shadow: none;
}

.articles .btn-outline:hover {
  background: #fff;
  border-color: #f2b705;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.article-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--aldo-line);
  border-radius: 22px;
}

.article-card__media {
  display: block;
}

.article-card__media img {
  display: block;
  width: 100%;
  height: 225px;
  object-fit: cover;
}

.article-card__ph {
  display: block;
  height: 225px;
  background: linear-gradient(135deg, #e7eaee, #d5dae1);
}

.article-body {
  padding: 25px;
}

.article-meta {
  display: block;
  margin-bottom: 10px;
  color: var(--aldo-red-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-body h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.article-body h3 a {
  color: inherit;
}

.article-body p {
  margin: 0 0 16px;
  color: var(--aldo-muted);
  font-size: .95rem;
}

.article-more {
  color: inherit;
}

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

  .article-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .articles .section-head {
    display: block;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-card:last-child {
    grid-column: auto;
  }
}

/* ---- Kontakt ---- */
.contact {
  padding: 110px 0;
  background: #000f26;
  color: #fff;
}

.contact-grid {
  width: min(1460px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}

.contact-info h2 {
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.contact-info > p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.contact-details small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .5);
  font-size: .8rem;
}

.contact-details strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-details strong a {
  color: #fff;
}

.contact-details strong a:hover {
  color: #f2b705;
}

.contact-form {
  padding: 38px;
  color: var(--aldo-ink);
  background: #fff;
  border-radius: 22px;
}

.contact-form h3 {
  margin: 0 0 22px;
  font-size: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--aldo-heading);
  font-size: .78rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--aldo-ink);
  background: #fff;
  border: 1px solid var(--aldo-line);
  border-radius: 12px;
  outline: none;
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  border-color: #f2b705;
  box-shadow: 0 0 0 3px rgba(242, 183, 5, .18);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 20px;
  color: #7a8698;
  font-size: .72rem;
  line-height: 1.5;
}

.contact-form .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  text-transform: none;
  background: #f2b705;
  color: #000f26;
  border: 1px solid #f2b705;
  box-shadow: 0 8px 22px rgba(242, 183, 5, .22);
}

.contact-form .btn-primary:hover {
  background: #d9a404;
  border-color: #d9a404;
  color: #000f26;
}

.contact-notice {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: .9rem;
}

.contact-notice--ok {
  color: #1c7a44;
  background: #eafaf0;
  border: 1px solid #b7e6c8;
}

.contact-notice--err {
  color: #b3261e;
  background: #fdecec;
  border: 1px solid #f3c3c0;
}

.aldo-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 820px) {
  .contact {
    padding: 70px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 580px) {
  .contact-form {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}


/* Sekcja „Badania i rozwój" bez stosu zdjęć — tekst na wyśrodkowanej kolumnie,
   zamiast pustej połowy siatki. */
.aluminium-inner--solo {
  max-width: 860px;
}

.aluminium-inner--solo .aluminium-copy h2 {
  max-width: 18ch;
}
