/* =========================================================
   POMIARY OŚWIETLENIA &#8212; HERO
========================================================= */

.lighting-hero {
  position: relative;
  padding: 14px 0 28px;
  background: #081223;
}

.lighting-hero-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #081223;
  box-shadow: 0 18px 45px rgba(8, 18, 35, 0.22);
}

.lighting-hero-bg {
  position: absolute;
  inset: 0;
  display: block;
}

.lighting-hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lighting-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
    90deg,
    rgba(8, 18, 35, 0.84) 0%,
    rgba(8, 18, 35, 0.68) 36%,
    rgba(8, 18, 35, 0.42) 64%,
    rgba(8, 18, 35, 0.14) 100%
  );
}

.lighting-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(290px, 0.7fr);
  gap: 46px;
  align-items: center;
  min-height: 510px;
  padding: 50px 52px;
}

.lighting-hero-main {
  max-width: 760px;
}

.lighting-hero-kicker {
  display: inline-flex;
  margin-bottom: 13px;
  color: #ffad42;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.lighting-hero-main h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.lighting-hero-main > p {
  max-width: 690px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.7;
}

.lighting-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.lighting-hero-actions .btn {
  justify-content: center;
  margin: 0;
}

.lighting-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.lighting-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  line-height: 1.35;
}

.lighting-hero-info {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 25px 23px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: rgba(8, 18, 35, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px);
}

.lighting-hero-info-title {
  margin-bottom: 11px;
  color: #ffad42;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.lighting-hero-info > div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 16px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.lighting-hero-info > div:last-child {
  border-bottom: 0;
}

.lighting-hero-info strong {
  color: #fff;
  font-size: 0.94rem;
  line-height: 1.45;
}

.lighting-hero-info span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .lighting-hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 30px;
  }

  .lighting-hero-main {
    max-width: 700px;
  }

  .lighting-hero-info {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .lighting-hero {
    padding-bottom: 22px;
  }

  .lighting-hero-card {
    min-height: 0;
    border-radius: 18px;
  }

  .lighting-hero-bg img {
    object-position: 58% top;
  }

  .lighting-hero-overlay {
    background:
      linear-gradient(
      180deg,
      rgba(8, 18, 35, 0.52) 0%,
      rgba(8, 18, 35, 0.64) 36%,
      rgba(8, 18, 35, 0.80) 68%,
      rgba(8, 18, 35, 0.92) 100%
    );
  }

  .lighting-hero-content {
    min-height: 0;
    padding: 34px 18px 24px;
  }

  .lighting-hero-main h1 {
    font-size: clamp(2rem, 9.5vw, 2.7rem);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
  }

  .lighting-hero-main > p {
    font-size: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  }

  .lighting-hero-actions {
    flex-direction: column;
  }

  .lighting-hero-actions .btn {
    width: 100%;
  }

  .lighting-hero-pills {
    flex-direction: column;
  }

  .lighting-hero-pills span {
    justify-content: center;
    text-align: center;
  }

  .lighting-hero-info {
    padding: 20px 17px;
  }

  .lighting-hero-info > div {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
  }
}

/* =========================================================
   POMIARY OŚWIETLENIA &#8212; ZAKRES
========================================================= */

.lighting-scope {
  padding: 14px 0;
}

.lighting-scope-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.lighting-scope-head {
  display: grid;
  grid-template-columns:
    170px
    minmax(300px, 0.9fr)
    minmax(350px, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
}

.lighting-scope-kicker {
  color: #b45309;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.lighting-scope-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  line-height: 1.15;
  text-wrap: balance;
}

.lighting-scope-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lighting-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.lighting-scope-item {
  position: relative;
  min-width: 0;
  padding: 24px 74px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    linear-gradient(
      145deg,
      #fff 0%,
      #f8f9fb 100%
    );
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
}

.lighting-scope-number {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff8a00;
  color: #111;
  font-size: 0.84rem;
  font-weight: 900;
}

.lighting-scope-content {
  min-width: 0;
}

.lighting-scope-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: #b45309;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.lighting-scope-item h3 {
  margin: 0 0 11px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.28;
}

.lighting-scope-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.lighting-scope-list {
  display: grid;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.lighting-scope-list li {
  position: relative;
  padding: 9px 0 9px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
}

.lighting-scope-list li:last-child {
  border-bottom: 0;
}

.lighting-scope-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  color: #b45309;
  font-weight: 900;
  content: "\2713";
}

.lighting-scope-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 19px;
  padding: 20px 22px;
  border-left: 5px solid #ff8a00;
  border-radius: 14px;
  background: rgba(255, 138, 0, 0.07);
}

.lighting-scope-note > div:first-child {
  display: flex;
  max-width: 790px;
  flex-direction: column;
  gap: 5px;
}

.lighting-scope-note span {
  color: var(--muted);
  line-height: 1.55;
}

.lighting-scope-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.lighting-scope-actions .btn {
  justify-content: center;
  margin: 0;
}

@media (hover: hover) {
  .lighting-scope-item {
    transition:
      transform 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .lighting-scope-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 138, 0, 0.42);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.09);
  }
}

@media (max-width: 950px) {
  .lighting-scope-head {
    grid-template-columns: 150px 1fr;
  }

  .lighting-scope-head p {
    grid-column: 1 / -1;
  }

  .lighting-scope-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .lighting-scope-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .lighting-scope-card {
    padding: 24px 18px;
  }

  .lighting-scope-head {
    display: block;
    margin-bottom: 20px;
  }

  .lighting-scope-kicker {
    display: inline-flex;
    margin-bottom: 10px;
  }

  .lighting-scope-head h2 {
    margin-bottom: 12px;
  }

  .lighting-scope-item {
    padding: 22px 66px 20px 18px;
  }

  .lighting-scope-number {
    top: 17px;
    right: 17px;
    width: 38px;
    height: 38px;
  }

  .lighting-scope-note {
    padding: 18px 16px;
  }

  .lighting-scope-actions {
    width: 100%;
    flex-direction: column;
  }

  .lighting-scope-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   POMIARY OŚWIETLENIA &#8212; KIEDY I DOKUMENTACJA
========================================================= */

.lighting-when {
  padding: 14px 0;
}

.lighting-when-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.lighting-when-head {
  display: grid;
  grid-template-columns:
    170px
    minmax(300px, 0.9fr)
    minmax(350px, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
}

.lighting-when-kicker {
  color: #b45309;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.lighting-when-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  line-height: 1.15;
  text-wrap: balance;
}

.lighting-when-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lighting-when-layout {
  display: grid;
  grid-template-columns:
    minmax(310px, 0.76fr)
    minmax(0, 1.24fr);
  gap: 18px;
}

.lighting-documentation {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(255, 138, 0, 0.22),
      transparent 35%
    ),
    #081223;
  color: #fff;
  box-shadow: 0 16px 34px rgba(8, 18, 35, 0.15);
}

.lighting-documentation-label {
  margin-bottom: 12px;
  color: #ffad42;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.lighting-documentation-title {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lighting-documentation > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.lighting-documentation-list {
  display: grid;
  gap: 10px;
  margin-top: 23px;
}

.lighting-documentation-list > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.lighting-documentation-list strong {
  color: #fff;
  line-height: 1.4;
}

.lighting-documentation-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  line-height: 1.5;
}

.lighting-when-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lighting-when-item {
  min-width: 0;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(
      145deg,
      #fff 0%,
      #f8f9fb 100%
    );
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
}

.lighting-when-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #ff8a00;
  color: #111;
  font-size: 0.82rem;
  font-weight: 900;
}

.lighting-when-item h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.4;
}

.lighting-when-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.lighting-when-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
  padding: 20px 22px;
  border-left: 5px solid #ff8a00;
  border-radius: 14px;
  background: rgba(255, 138, 0, 0.07);
}

.lighting-when-note > div:first-child {
  display: flex;
  max-width: 790px;
  flex-direction: column;
  gap: 5px;
}

.lighting-when-note span {
  color: var(--muted);
  line-height: 1.55;
}

.lighting-when-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.lighting-when-actions .btn {
  justify-content: center;
  margin: 0;
}

@media (hover: hover) {
  .lighting-when-item {
    transition:
      transform 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .lighting-when-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 138, 0, 0.42);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.09);
  }
}

@media (max-width: 1000px) {
  .lighting-when-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 950px) {
  .lighting-when-head {
    grid-template-columns: 150px 1fr;
  }

  .lighting-when-head p {
    grid-column: 1 / -1;
  }

  .lighting-when-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .lighting-when-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .lighting-when-card {
    padding: 24px 18px;
  }

  .lighting-when-head {
    display: block;
    margin-bottom: 20px;
  }

  .lighting-when-kicker {
    display: inline-flex;
    margin-bottom: 10px;
  }

  .lighting-when-head h2 {
    margin-bottom: 12px;
  }

  .lighting-documentation {
    padding: 24px 18px;
  }

  .lighting-when-item {
    padding: 20px 18px;
  }

  .lighting-when-note {
    padding: 18px 16px;
  }

  .lighting-when-actions {
    width: 100%;
    flex-direction: column;
  }

  .lighting-when-actions .btn {
    width: 100%;
  }
}
/* =========================================================
   POMIARY OŚWIETLENIA &#8212; PRZEBIEG REALIZACJI
========================================================= */

.lighting-process {
  padding: 14px 0;
}

.lighting-process-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.lighting-process-head {
  display: grid;
  grid-template-columns:
    170px
    minmax(300px, 0.9fr)
    minmax(350px, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
}

.lighting-process-kicker {
  color: #b45309;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.lighting-process-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  line-height: 1.15;
  text-wrap: balance;
}

.lighting-process-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lighting-process-layout {
  display: grid;
  grid-template-columns:
    minmax(310px, 0.76fr)
    minmax(0, 1.24fr);
  gap: 18px;
}

.lighting-process-intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(255, 138, 0, 0.22),
      transparent 35%
    ),
    #081223;
  color: #fff;
  box-shadow: 0 16px 34px rgba(8, 18, 35, 0.15);
}

.lighting-process-intro-label {
  margin-bottom: 12px;
  color: #ffad42;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.lighting-process-intro > strong {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lighting-process-intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.lighting-process-intro-list {
  display: grid;
  gap: 10px;
  margin-top: 23px;
}

.lighting-process-intro-list > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.lighting-process-intro-list strong {
  color: #fff;
  line-height: 1.4;
}

.lighting-process-intro-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  line-height: 1.5;
}

.lighting-process-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lighting-process-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 17px;
  align-items: start;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(
      145deg,
      #fff 0%,
      #f8f9fb 100%
    );
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
}

.lighting-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ff8a00;
  color: #111;
  font-size: 0.82rem;
  font-weight: 900;
}

.lighting-process-step-content {
  min-width: 0;
}

.lighting-process-step h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.4;
}

.lighting-process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.lighting-process-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
  padding: 20px 22px;
  border-left: 5px solid #ff8a00;
  border-radius: 14px;
  background: rgba(255, 138, 0, 0.07);
}

.lighting-process-note > div:first-child {
  display: flex;
  max-width: 790px;
  flex-direction: column;
  gap: 5px;
}

.lighting-process-note span {
  color: var(--muted);
  line-height: 1.55;
}

.lighting-process-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.lighting-process-actions .btn {
  justify-content: center;
  margin: 0;
}

@media (hover: hover) {
  .lighting-process-step {
    transition:
      transform 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .lighting-process-step:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 138, 0, 0.42);
    box-shadow: 0 13px 28px rgba(17, 24, 39, 0.09);
  }
}

@media (max-width: 1000px) {
  .lighting-process-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 950px) {
  .lighting-process-head {
    grid-template-columns: 150px 1fr;
  }

  .lighting-process-head p {
    grid-column: 1 / -1;
  }

  .lighting-process-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .lighting-process-card {
    padding: 24px 18px;
  }

  .lighting-process-head {
    display: block;
    margin-bottom: 20px;
  }

  .lighting-process-kicker {
    display: inline-flex;
    margin-bottom: 10px;
  }

  .lighting-process-head h2 {
    margin-bottom: 12px;
  }

  .lighting-process-intro {
    padding: 24px 18px;
  }

  .lighting-process-step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 15px;
  }

  .lighting-process-number {
    width: 42px;
    height: 42px;
  }

  .lighting-process-note {
    padding: 18px 16px;
  }

  .lighting-process-actions {
    width: 100%;
    flex-direction: column;
  }

  .lighting-process-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   POMIARY OŚWIETLENIA &#8212; OBIEKTY I OBSZAR
========================================================= */

.lighting-objects {
  padding: 14px 0;
}

.lighting-objects-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.lighting-objects-head {
  display: grid;
  grid-template-columns:
    170px
    minmax(300px, 0.9fr)
    minmax(350px, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
}

.lighting-objects-kicker,
.lighting-area-label {
  color: #b45309;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.lighting-objects-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  line-height: 1.15;
  text-wrap: balance;
}

.lighting-objects-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lighting-objects-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(300px, 0.7fr);
  gap: 18px;
}

.lighting-objects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lighting-object-item {
  min-width: 0;
  padding: 21px 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(
      145deg,
      #fff 0%,
      #f8f9fb 100%
    );
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
}

.lighting-object-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #ff8a00;
  color: #111;
  font-size: 0.82rem;
  font-weight: 900;
}

.lighting-object-item h3 {
  margin: 0 0 9px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.lighting-object-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.lighting-area {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(255, 138, 0, 0.22),
      transparent 34%
    ),
    #081223;
  color: #fff;
  box-shadow: 0 16px 34px rgba(8, 18, 35, 0.15);
}

.lighting-area-label {
  margin-bottom: 11px;
  color: #ffad42;
}

.lighting-area-title {
  display: block;
  margin-bottom: 15px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lighting-area > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.lighting-area-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.lighting-area-list > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.lighting-area-list strong {
  color: #fff;
  line-height: 1.4;
}

.lighting-area-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  line-height: 1.5;
}

.lighting-area-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
}

.lighting-area-contact a {
  color: #ffad42;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.lighting-area-contact a:hover {
  color: #fff;
}

.lighting-objects-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
  padding: 20px 22px;
  border-left: 5px solid #ff8a00;
  border-radius: 14px;
  background: rgba(255, 138, 0, 0.07);
}

.lighting-objects-note > div:first-child {
  display: flex;
  max-width: 790px;
  flex-direction: column;
  gap: 5px;
}

.lighting-objects-note span {
  color: var(--muted);
  line-height: 1.55;
}

.lighting-objects-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.lighting-objects-actions .btn {
  justify-content: center;
  margin: 0;
}

@media (hover: hover) {
  .lighting-object-item {
    transition:
      transform 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .lighting-object-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 138, 0, 0.42);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.09);
  }
}

@media (max-width: 1000px) {
  .lighting-objects-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 950px) {
  .lighting-objects-head {
    grid-template-columns: 150px 1fr;
  }

  .lighting-objects-head p {
    grid-column: 1 / -1;
  }

  .lighting-objects-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .lighting-objects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .lighting-objects-card {
    padding: 24px 18px;
  }

  .lighting-objects-head {
    display: block;
    margin-bottom: 20px;
  }

  .lighting-objects-kicker {
    display: inline-flex;
    margin-bottom: 10px;
  }

  .lighting-objects-head h2 {
    margin-bottom: 12px;
  }

  .lighting-object-item {
    padding: 20px 18px;
  }

  .lighting-area {
    padding: 24px 18px;
  }

  .lighting-objects-note {
    padding: 18px 16px;
  }

  .lighting-objects-actions {
    width: 100%;
    flex-direction: column;
  }

  .lighting-objects-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   POMIARY OŚWIETLENIA &#8212; FAQ
========================================================= */

.lighting-faq {
  padding: 14px 0;
}

.lighting-faq-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.lighting-faq-head {
  display: grid;
  grid-template-columns:
    170px
    minmax(300px, 0.9fr)
    minmax(350px, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
}

.lighting-faq-kicker {
  color: #b45309;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.lighting-faq-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  line-height: 1.15;
  text-wrap: balance;
}

.lighting-faq-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lighting-faq-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
  padding: 20px 22px;
  border-left: 5px solid #ff8a00;
  border-radius: 14px;
  background: rgba(255, 138, 0, 0.07);
}

.lighting-faq-note > div:first-child {
  display: flex;
  max-width: 790px;
  flex-direction: column;
  gap: 5px;
}

.lighting-faq-note span {
  color: var(--muted);
  line-height: 1.55;
}

.lighting-faq-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.lighting-faq-actions .btn {
  justify-content: center;
  margin: 0;
}

@media (max-width: 950px) {
  .lighting-faq-head {
    grid-template-columns: 150px 1fr;
  }

  .lighting-faq-head p {
    grid-column: 1 / -1;
  }

  .lighting-faq-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .lighting-faq-card {
    padding: 24px 18px;
  }

  .lighting-faq-head {
    display: block;
    margin-bottom: 20px;
  }

  .lighting-faq-kicker {
    display: inline-flex;
    margin-bottom: 10px;
  }

  .lighting-faq-head h2 {
    margin-bottom: 12px;
  }

  .lighting-faq-note {
    padding: 18px 16px;
  }

  .lighting-faq-actions {
    width: 100%;
    flex-direction: column;
  }

  .lighting-faq-actions .btn {
    width: 100%;
  }
}