/* B2B product landing — Superdesign variant 1, scoped so Technics chrome stays intact.
   Technics sets :root font-size 10px; landing uses px to keep the mock scale. */

.pl-landing {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #fff;
  padding-bottom: 96px;
}

.pl-landing iconify-icon {
  display: inline-block;
  vertical-align: middle;
}

.pl-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.2s, opacity 0.2s;
}

.pl-btn--primary {
  background: #157347;
  color: #fff !important;
}

.pl-btn--primary:hover {
  background: #105c38;
  color: #fff !important;
}

.pl-btn--secondary {
  background: #0b946e;
  color: #fff !important;
}

.pl-btn--secondary:hover {
  opacity: 0.9;
  color: #fff !important;
}

.pl-btn--lg {
  padding: 16px 32px;
  font-size: 18px;
}

.pl-btn--md {
  padding: 12px 32px;
  font-size: 16px;
}

.pl-btn--full {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
}

.pl-cart {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Hero */
.pl-hero {
  padding: 40px 0;
}

.pl-hero__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
}

.pl-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 4px;
  background: #f3f4f6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: 16px;
}

.pl-h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #14261c;
  margin: 0 0 16px;
}

.pl-lead {
  font-size: 20px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 560px;
  margin: 0 0 32px;
}

.pl-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 40px;
}

.pl-kpi {
  border-left: 2px solid #157347;
  padding-left: 16px;
}

.pl-kpi__label {
  font-size: 14px;
  color: #6b7280;
}

.pl-kpi__value {
  font-size: 20px;
  font-weight: 700;
}

.pl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.pl-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  font-size: 14px;
  color: #4b5563;
}

.pl-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pl-trust iconify-icon {
  color: #157347;
  font-size: 18px;
}

.pl-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pl-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pl-media__ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #9ca3af;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pl-media__ph iconify-icon {
  font-size: 80px;
  color: #d1d5db;
}

.pl-media__zoom {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

/* TOC */
.pl-toc {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.pl-toc__nav {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
}

.pl-toc__nav a {
  white-space: nowrap;
  color: #1a1a1a;
  text-decoration: none;
}

.pl-toc__nav a:hover {
  color: #157347;
}

/* Sections */
.pl-sec {
  padding: 96px 0;
  scroll-margin-top: 100px;
}

.pl-sec--soft {
  background: #f9fafb;
}

.pl-sec--dark {
  background: #111827;
  color: #fff;
}

.pl-h2 {
  font-size: 30px;
  font-weight: 700;
  color: #14261c;
  margin: 0 0 8px;
}

.pl-sec--dark .pl-h2 {
  color: #fff;
  margin-bottom: 48px;
}

.pl-sub {
  color: #4b5563;
  margin: 0;
}

.pl-center {
  text-align: center;
  max-width: 672px;
  margin: 0 auto 64px;
}

.pl-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 48px;
}

.pl-link {
  color: #157347;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pl-link:hover {
  text-decoration: underline;
}

.pl-grid {
  display: grid;
  gap: 32px;
}

.pl-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pl-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pl-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.pl-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pl-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 32px;
}

.pl-card--tight {
  padding: 24px;
}

.pl-iconbox {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pl-iconbox iconify-icon {
  font-size: 24px;
  color: #157347;
}

.pl-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

.pl-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

.pl-hl__k {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin: 0;
}

.pl-hl__v {
  font-size: 28px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 10px;
}

.pl-grid--metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.pl-hl {
  min-width: 0;
}

.pl-hl--fuel {
  grid-column: span 2;
}

.pl-hl__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.pl-hl__unit {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.3;
  margin-top: 6px;
}

.pl-hl__head .pl-hl__unit {
  margin-top: 0;
  white-space: nowrap;
}

.pl-hl__loads {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pl-hl__load {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.pl-hl__load-k {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.04em;
}

.pl-hl__load-v {
  font-size: 24px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Specs */
.pl-specs {
  max-width: 896px;
  margin: 0 auto;
}

.pl-specs .pl-h2 {
  text-align: center;
  margin-bottom: 48px;
}

.pl-specs__group {
  margin-bottom: 48px;
}

.pl-specs__group:last-child {
  margin-bottom: 0;
}

.pl-specs__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 16px;
}

.pl-specs__title iconify-icon {
  color: #157347;
}

.pl-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.pl-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.pl-table tr:nth-child(even) {
  background: #f9fafb;
}

.pl-table tr:last-child td {
  border-bottom: 0;
}

.pl-table td:first-child {
  color: #4b5563;
}

.pl-table td:last-child {
  font-weight: 600;
  text-align: right;
}

/* Docs */
.pl-doc {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none !important;
  color: inherit;
  background: #fff;
  transition: border-color 0.2s;
}

.pl-doc:hover {
  border-color: #157347;
}

.pl-doc iconify-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.pl-doc__pdf {
  color: #dc2626;
}

.pl-doc__blue {
  color: #2563eb;
}

.pl-doc__green {
  color: #157347;
}

.pl-doc__orange {
  color: #f97316;
}

.pl-doc h4 {
  font-weight: 700;
  margin: 0 0 4px;
}

.pl-doc span {
  font-size: 12px;
  color: #9ca3af;
}

.pl-doc__cta {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #157347;
  opacity: 0;
}

.pl-doc:hover .pl-doc__cta {
  opacity: 1;
}

.pl-docs-icon {
  font-size: 60px;
  color: #f3f4f6;
}

/* Compare */
.pl-cmp {
  border: 1px solid #374151;
  background: rgba(31, 41, 55, 0.5);
  border-radius: 8px;
  padding: 32px;
  color: #fff;
  text-decoration: none !important;
  display: block;
}

a.pl-cmp {
  transition: border-color 0.2s, box-shadow 0.2s;
}

a.pl-cmp:hover {
  border-color: #157347;
}

a.pl-cmp:hover .pl-cmp__foot {
  background: #157347;
  border-color: #157347;
  color: #fff;
}

.pl-cmp--on {
  border-color: #157347;
  background: #1f2937;
  box-shadow: 0 0 0 2px #157347;
  position: relative;
}

.pl-cmp__badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: #157347;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}

.pl-cmp h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.pl-cmp__kw {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
}

.pl-cmp--on .pl-cmp__kw {
  color: #0b946e;
}

.pl-cmp ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  font-size: 14px;
  color: #9ca3af;
}

.pl-cmp li {
  margin-bottom: 12px;
}

.pl-cmp__foot {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #4b5563;
}

.pl-cmp--on .pl-cmp__foot {
  background: #374151;
  border: 0;
  font-weight: 400;
  color: #9ca3af;
}

/* Cases */
.pl-case {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}

.pl-case__ph {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
}

.pl-case__body {
  padding: 24px;
  background: #fff;
}

.pl-case__ind {
  color: #157347;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pl-case h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.pl-case p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 16px;
}

.pl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pl-chip {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

/* Process */
.pl-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pl-step {
  position: relative;
  text-align: center;
  padding: 24px;
}

.pl-step__n {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #157347;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pl-step h5 {
  font-weight: 700;
  margin: 0 0 8px;
}

.pl-step p {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

.pl-step__line {
  display: none;
}

@media (min-width: 992px) {
  .pl-step__line {
    display: block;
    position: absolute;
    top: 40px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: #d1d5db;
  }
}

/* FAQ */
.pl-faq {
  max-width: 768px;
  margin: 0 auto;
}

.pl-faq .pl-h2 {
  text-align: center;
  margin-bottom: 48px;
}

.pl-faq details {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  background: #fff;
}

.pl-faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}

.pl-faq summary::-webkit-details-marker {
  display: none;
}

.pl-faq details[open] summary iconify-icon {
  transform: rotate(180deg);
}

.pl-faq summary iconify-icon {
  transition: transform 0.2s;
}

.pl-faq details > div {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

/* Final CTA */
.pl-final {
  background: #f3f4f6;
}

.pl-final__box {
  background: #14261c;
  color: #fff;
  border-radius: 16px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.pl-final__box h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 24px;
}

.pl-final__box > div > p {
  color: #9ca3af;
  max-width: 448px;
  margin: 0 0 32px;
}

.pl-checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pl-checks div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pl-checks iconify-icon {
  color: #157347;
  font-size: 20px;
}

.pl-form {
  background: #fff;
  color: #111827;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.pl-form h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 24px;
}

.pl-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 4px;
}

.pl-form .pl-field {
  margin-bottom: 16px;
}

.pl-form input,
.pl-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font: inherit;
}

.pl-form input:focus,
.pl-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #157347;
}

.pl-form__note {
  font-size: 10px;
  color: #9ca3af;
  text-align: center;
  margin: 12px 0 0;
}

/* Sticky */
.pl-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform 0.2s ease;
}

.pl-sticky.is-visible {
  transform: translateY(0);
}

.pl-sticky__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pl-sticky__meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pl-sticky__k {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
}

.pl-sticky__v {
  font-weight: 700;
}

.pl-sticky__v--g {
  color: #157347;
}

.pl-sticky__div {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
}

.pl-sticky__price {
  text-align: right;
  margin-right: 16px;
}

.pl-sticky__price strong {
  display: block;
  font-size: 14px;
}

.pl-sticky__price span {
  font-size: 10px;
  text-transform: uppercase;
  color: #9ca3af;
}

@media (max-width: 991px) {
  .pl-hero__grid,
  .pl-grid--3,
  .pl-grid--4,
  .pl-grid--5,
  .pl-grid--metrics,
  .pl-grid--2,
  .pl-steps,
  .pl-final__box,
  .pl-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .pl-hl--fuel {
    grid-column: span 2;
  }

  .pl-h1 {
    font-size: 32px;
  }

  .pl-final__box {
    padding: 32px;
  }

  .pl-sticky__price {
    display: none;
  }
}

@media (max-width: 575px) {
  .pl-wrap {
    padding: 0 16px;
  }

  .pl-hero__grid,
  .pl-grid--3,
  .pl-grid--4,
  .pl-grid--5,
  .pl-grid--metrics,
  .pl-grid--2,
  .pl-steps,
  .pl-final__box,
  .pl-kpis {
    grid-template-columns: 1fr;
  }

  .pl-hl--fuel {
    grid-column: span 1;
  }

  .pl-sec {
    padding: 56px 0;
  }

  .pl-head-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
