/* Company about page (demo) + delivery map */
.company-page-title-hidden #pagetitle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.company-page {
  --cp-accent: #1e6e9e;
  --cp-accent-dark: #0c4a6e;
  --cp-navy: #0f2a3d;
  --cp-heading: #152533;
  --cp-text: #3a4a57;
  --cp-muted: #5b6b78;
  --cp-soft: #7a8b98;
  --cp-bg: #f4f7fa;
  --cp-bg-accent: #e8f2f7;
  --cp-line: #d7e3ec;
  --cp-white: #ffffff;
  width: 100%;
  max-width: 100%;
  color: var(--cp-text);
  line-height: 1.6;
  font-size: 15px;
}

.company-page *,
.company-page *::before,
.company-page *::after {
  box-sizing: border-box;
}

.company-page a {
  color: var(--cp-accent);
}

.company-demo-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--cp-muted);
  background: var(--cp-bg);
  border: 1px solid var(--cp-line);
  border-radius: 999px;
}

.company-demo-note::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cp-accent);
  flex-shrink: 0;
}

/* Quick nav */
.company-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.company-nav__link {
  display: inline-flex;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--cp-heading);
  background: var(--cp-white);
  border: 1px solid var(--cp-line);
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.company-nav__link:hover {
  color: var(--cp-accent-dark);
  border-color: rgba(30, 110, 158, 0.35);
  background: var(--cp-bg-accent);
}

/* Hero */
.company-hero {
  margin: 0 0 44px;
  padding: 26px 26px 20px;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 16px 40px rgba(15, 42, 61, 0.18);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(90, 170, 210, 0.3), transparent 55%),
    linear-gradient(145deg, #0f2a3d 0%, #163a52 48%, #1a5070 100%);
}

.company-hero__eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.company-hero__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.22;
  font-weight: 700;
  color: #fff;
}

.company-hero__lead {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.9);
}

.company-hero__lead--secondary {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.company-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.company-stats__item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}

.company-stats__item + .company-stats__item {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.company-stats__value {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.company-stats__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
}

/* Sections */
.company-page__section {
  margin-bottom: 52px;
  scroll-margin-top: 20px;
}

.company-page__section-title {
  position: relative;
  margin: 0 0 10px;
  padding-bottom: 12px;
  font-size: 26px;
  line-height: 1.25;
  color: var(--cp-heading);
}

.company-page__section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--cp-accent);
}

.company-page__section-intro {
  margin: 0 0 24px;
  color: var(--cp-muted);
  font-size: 15px;
}

.company-page__section-title + .company-geo,
.company-page__section-title + .company-products {
  margin-top: 16px;
}

/* Advantages */
.company-adv{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.company-adv__item{
    display:grid;
    grid-template-columns:70px 280px 1fr;
    gap:26px;

    align-items:start;

    padding:28px 32px;

    background:#fff;
    border:1px solid var(--cp-line);
    border-radius:16px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.company-adv__item:hover{
    border-color:rgba(30,110,158,.35);
    box-shadow:0 14px 34px rgba(15,42,61,.08);
    transform:translateY(-2px);
}

.company-adv__num{
    margin:0;
    padding-top:2px;

    font-size:38px;
    line-height:1;
    font-weight:700;

    color:var(--cp-accent);
}

.company-adv__title{
    margin:0;

    font-size:22px;
    line-height:1.35;
    font-weight:700;

    color:var(--cp-heading);
}

.company-adv__text{
    margin:0;

    font-size:15px;
    line-height:1.75;

    color:var(--cp-text);
}

/* Certificates */
.company-certs {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(160deg, #eef6fa 0%, #f8fbfd 55%, #fff 100%);
  border: 1px solid var(--cp-line);
  box-shadow: 0 8px 32px rgba(15, 42, 61, 0.06);
}

.company-certs__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-certs__title {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--cp-heading);
}

.company-certs__text {
  margin: 0 0 18px;
  color: var(--cp-text);
  line-height: 1.58;
}

.company-certs__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  padding: 0 18px;
  font-weight: 600;
  font-size: 14px !important;
  line-height: 1.4 !important;
  text-decoration: none;
  text-indent: 0 !important;
  color: #fff !important;
  background: var(--cp-accent);
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.company-certs__more:hover {
  background: var(--cp-accent-dark);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.company-certs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.company-certs__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--cp-line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.company-certs__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(30, 110, 158, 0.14);
}

.company-certs__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 300px;
  padding: 16px;
  background: linear-gradient(180deg, #f6f9fb 0%, #fff 100%);
  border-bottom: 1px solid var(--cp-line);
}

.company-certs__thumb {
  display: block;
  width: 100%;
  max-height: 270px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.company-certs__caption {
  display: block;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--cp-heading);
  font-weight: 600;
  text-align: center;
}

/* Products */
.company-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.company-products__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--cp-white);
  border: 1px solid var(--cp-line);
  border-radius: 12px;
  text-decoration: none !important;
  color: inherit !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.company-products__item:hover {
  border-color: rgba(30, 110, 158, 0.4);
  box-shadow: 0 10px 24px rgba(15, 42, 61, 0.08);
  transform: translateY(-2px);
}

.company-products__item.is-nolink {
  cursor: default;
  opacity: 0.88;
}

.company-products__item.is-nolink:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--cp-line);
}

.company-products__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--cp-heading);
  line-height: 1.35;
}

.company-products__item:hover .company-products__name {
  color: var(--cp-accent-dark);
}

.company-products__note {
  color: var(--cp-soft);
  font-size: 12px;
  line-height: 1.4;
}

/* Geography - jsVectorMap */
.company-geo-section {
  margin-bottom: 52px;
}

.company-geo {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--cp-line);
  border-radius: 18px;
  background: var(--cp-white);
  box-shadow: 0 10px 32px rgba(15, 42, 61, 0.06);
}

.company-geo__map {
  width: 100%;
  height: 460px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--cp-line);
  background: #ffffff;
}

.company-geo__map .jvm-container {
  width: 100%;
  height: 100%;
  background: #ffffff !important;
}

.company-geo__map svg {
  background: #ffffff;
}

.company-geo__map text,
.company-geo__map .jvm-marker-label {
  display: none !important;
}

.company-geo__map .jvm-zoom-btn {
  background: #fff;
  border: 1px solid var(--cp-line);
  color: var(--cp-heading);
  box-shadow: 0 2px 8px rgba(15, 42, 61, 0.08);
}

.company-geo__footer {
  width: 100%;
}

.company-geo__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.company-geo__legend-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cp-heading);
  background: var(--cp-bg);
  border: 1px solid var(--cp-line);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.company-geo__legend-btn:hover,
.company-geo__legend-btn:focus {
  border-color: rgba(30, 110, 158, 0.35);
  background: #fff;
  outline: none;
}

.company-geo__legend-btn.is-active {
  border-color: #0f4e9a;
  background: #eaf2fa;
  color: #0f4e9a;
  box-shadow: 0 6px 16px rgba(15, 42, 61, 0.08);
  outline: none;
}

.company-geo__legend-flag {
  display: inline-block;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 42, 61, 0.12);
}

.company-geo .jvm-tooltip {
  /* Allmatic-style map: compact tooltip with country name on hover. */
  display: block !important;
  background: rgba(255, 255, 255, 0.97) !important;
  border: 1px solid rgba(15, 78, 154, 0.15) !important;
  border-radius: 6px !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12) !important;
  color: #0f4e9a !important;
  font-family: inherit !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  padding: 6px 10px !important;
  font-weight: 600 !important;
}

/* Final CTA */
.company-cta {
  margin-bottom: 24px;
}

.company-cta__inner {
  padding: 28px 28px 26px;
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(90, 170, 210, 0.22), transparent 55%),
    linear-gradient(145deg, #0f2a3d 0%, #163a52 48%, #1a5070 100%);
  color: #fff;
  box-shadow: 0 14px 36px rgba(15, 42, 61, 0.16);
}

.company-cta__title {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}

.company-cta__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.company-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.company-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.3 !important;
  text-decoration: none !important;
  text-indent: 0 !important;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.company-cta__btn--primary {
  color: #0f2a3d !important;
  background: #fff;
  border: 1px solid #fff;
}

.company-cta__btn--primary:hover {
  background: #e8f2f7;
  color: #0f2a3d !important;
  transform: translateY(-1px);
}

.company-cta__btn--secondary {
  color: #fff !important;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.company-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .company-adv {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .company-certs {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .company-hero {
    padding: 20px 16px 18px;
    border-radius: 14px;
    margin-bottom: 36px;
  }

  .company-hero__title {
    font-size: 21px;
  }

  .company-stats {
    gap: 10px 0;
  }

  .company-stats__item + .company-stats__item {
    padding-left: 0;
    border-left: 0;
  }

  .company-stats__item {
    width: 100%;
  }

  .company-adv,
  .company-products,
  .company-certs__grid {
    grid-template-columns: 1fr;
  }

  .company-page__section-title {
    font-size: 21px;
  }

  .company-certs__frame {
    min-height: 240px;
  }

  .company-geo__map {
    height: 320px;
  }

  .company-nav {
    gap: 6px;
  }

  .company-nav__link {
    font-size: 12px;
    padding: 6px 10px;
  }

  .company-cta__inner {
    padding: 22px 16px 20px;
  }
}
