:root {
  --navy: #06152d;
  --navy-deep: #020915;
  --navy-card: #081a33;
  --orange: #ff7a00;
  --orange-soft: #ff9a2e;
  --cyan: #21c7ff;
  --blue: #1088d6;
  --white: #ffffff;
  --text: #eff6ff;
  --muted: #aebed2;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.22);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --radius-lg: 34px;
  --radius-md: 22px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, Helvetica, sans-serif;
  background: var(--navy-deep);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 8%, rgba(33, 199, 255, 0.12), transparent 28%),
    radial-gradient(circle at 80% 14%, rgba(255, 122, 0, 0.09), transparent 28%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 34px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 9, 21, 0.98);
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text span {
  font-size: 1.48rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: var(--orange);
  letter-spacing: 0.34em;
  font-size: 0.68rem;
  font-weight: 850;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 21px;
  font-size: 0.92rem;
  font-weight: 760;
}

.nav-links a {
  color: rgba(239, 246, 255, 0.84);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  color: var(--white) !important;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  box-shadow: 0 14px 36px rgba(255, 122, 0, 0.28);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: 0.2s ease;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 58px 0 96px;
  overflow: hidden;
  text-align: center;
  background-image: url("assets/pmpec-hero.jpeg");
  background-size: cover;
  background-position: center 58%;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-heading-block {
  width: 100%;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  margin-bottom: 14px;
}

.hero-title {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-title span {
  display: block;
  font-weight: 950;
  text-shadow:
    0 4px 10px rgba(0, 0, 0, 0.72),
    0 12px 30px rgba(0, 0, 0, 0.42);
}

.hero-title-main {
  color: var(--white);
  font-size: clamp(3.6rem, 6.6vw, 7rem);
  white-space: nowrap;
}

.hero-title-accent {
  color: var(--orange);
  font-size: clamp(3.2rem, 6.2vw, 6.5rem);
  white-space: nowrap;
  margin-top: 8px;
}

.hero-lower {
  width: 100%;
  margin-top: clamp(230px, 28vh, 320px);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 23px;
  border-radius: 999px;
  font-weight: 860;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: var(--white);
  box-shadow: 0 17px 42px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(255, 122, 0, 0.38);
}

.btn-secondary {
  border: 1px solid rgba(33, 199, 255, 0.55);
  color: var(--white);
  background: rgba(2, 9, 21, 0.72);
}

.btn-secondary:hover {
  background: rgba(33, 199, 255, 0.16);
  transform: translateY(-3px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px auto 0;
  width: min(100%, 860px);
}

.hero-proof div {
  background: rgba(2, 9, 21, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 16px 18px;
}

.hero-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 5px;
}

.hero-proof strong {
  color: var(--cyan);
  font-size: 1rem;
}

/* SHARED */
.section {
  position: relative;
  padding: 96px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading h2,
.intro-copy h2,
.split-grid h2,
.vm-card h2,
.contact-content h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-heading p,
.intro-copy p,
.split-grid p,
.vm-card p,
.contact-content p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.04rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CATALOGUES */
.catalogue-section {
  padding-top: 86px;
  background:
    radial-gradient(circle at 20% 5%, rgba(255, 122, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #020915 0%, #07172f 100%);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(310px, auto)) minmax(360px, auto);
  gap: 22px;
}

.catalogue-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 310px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--navy-card);
  cursor: zoom-in;
}

.catalogue-card-large {
  grid-row: span 2;
  min-height: 642px;
}

.catalogue-card-wide {
  grid-column: 1 / -1;
  min-height: 360px;
}

.catalogue-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.catalogue-card:hover img {
  transform: scale(1.04);
}

.catalogue-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 21, 0.78), rgba(2, 9, 21, 0.12)),
    linear-gradient(180deg, transparent 25%, rgba(2, 9, 21, 0.78));
}

.catalogue-content {
  position: absolute;
  inset: auto 28px 28px 28px;
  z-index: 3;
  max-width: 620px;
}

.catalogue-content span {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 900;
}

.catalogue-content h3 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 2.7vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.catalogue-content p {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 850;
}

.catalogue-content p::after {
  content: "↗";
  margin-left: 8px;
}

/* TRUST */
.trust-strip {
  background: linear-gradient(180deg, rgba(7, 23, 47, 0.92), rgba(2, 9, 21, 0.98));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 19px;
  min-height: 172px;
}

.trust-item img,
.product-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  border: 0 !important;
}

.trust-item h3 {
  margin-top: 16px;
  font-size: 1rem;
}

.trust-item p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 7px;
}

/* PRODUCTS */
.products-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 122, 0, 0.08), transparent 30%),
    #06152d;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card,
.service-card,
.vm-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.042));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.product-card:hover,
.service-card:hover,
.vm-card:hover {
  transform: translateY(-5px);
  border-color: rgba(33, 199, 255, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.052));
}

.product-card h3,
.service-card h3 {
  margin-top: 19px;
  font-size: 1.12rem;
}

.product-card p,
.service-card p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 0.94rem;
}

/* INTRO */
.intro-section {
  background:
    radial-gradient(circle at 15% 12%, rgba(33, 199, 255, 0.1), transparent 32%),
    var(--navy-deep);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 46px;
  align-items: center;
}

.process-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-step:last-child {
  border-bottom: 0;
}

.process-step span,
.service-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--orange);
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.22);
  font-weight: 950;
}

.process-step h3 {
  font-size: 1.15rem;
}

.process-step p {
  color: var(--muted);
  margin-top: 4px;
}

/* BRANDS */
.brand-section {
  padding: 38px 0;
  background: #07172f;
}

.brand-panel {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.13), rgba(33, 199, 255, 0.1));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.brand-panel p {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: 20px;
}

.brand-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-badges span {
  background: rgba(255, 255, 255, 0.94);
  color: #06152d;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 920;
}

/* SPECIALISATION */
.specialisation {
  background:
    radial-gradient(circle at 10% 10%, rgba(33, 199, 255, 0.12), transparent 32%),
    var(--navy-deep);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.split-grid .btn {
  margin-top: 28px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div,
.why-grid div {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  color: var(--text);
  font-weight: 720;
}

.feature-list span {
  color: var(--orange);
  font-weight: 950;
}

/* SERVICES */
.services-section {
  background: #06152d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card span {
  margin-bottom: 18px;
}

/* VISION */
.vision-mission {
  background:
    radial-gradient(circle at 80% 10%, rgba(33, 199, 255, 0.09), transparent 30%),
    #07172f;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.vm-card {
  padding: 34px;
}

/* WHY */
.why-section {
  background: var(--navy-deep);
}

.why-grid {
  display: grid;
  gap: 14px;
}

.why-grid div::before {
  content: "";
  display: block;
  min-width: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.12);
}

/* CONTACT */
.contact-section {
  background:
    radial-gradient(circle at top right, rgba(33, 199, 255, 0.14), transparent 34%),
    #07172f;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: start;
}

.contact-cards {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.contact-card {
  display: grid;
  gap: 3px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.contact-card:hover {
  transform: translateX(5px);
  border-color: rgba(255, 122, 0, 0.52);
}

.contact-card span {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 900;
}

.contact-card strong {
  color: var(--text);
  overflow-wrap: anywhere;
}

.quote-form {
  background: rgba(255, 255, 255, 0.965);
  color: #06152d;
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.quote-form h3 {
  font-size: 1.9rem;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
  margin-bottom: 16px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d6dfeb;
  border-radius: 14px;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(16, 136, 214, 0.14);
}

.form-btn {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  color: #526176;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 12px;
}

/* FOOTER */
.site-footer {
  background: #020915;
  border-top: 1px solid var(--line);
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.footer-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  margin-bottom: 16px;
}

.site-footer h2 {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.site-footer h3 {
  margin-bottom: 12px;
}

.site-footer p,
.site-footer a {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

.footer-small {
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 18px;
  color: var(--muted);
}

/* IMAGE MODAL */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.image-modal.active {
  display: flex;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 21, 0.9);
}

.image-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  max-height: 92vh;
  overflow: hidden;
  background: #06152d;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.55);
}

.image-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 58px 18px 22px;
  border-bottom: 1px solid var(--line);
}

.image-modal-header span {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 900;
}

.image-modal-header h3 {
  margin-top: 4px;
  font-size: 1.25rem;
}

.image-modal-header a {
  color: var(--cyan);
  font-weight: 850;
  white-space: nowrap;
}

.image-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.image-modal-dialog img {
  width: 100%;
  max-height: calc(92vh - 82px);
  object-fit: contain;
  background: #020915;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
    font-size: 0.86rem;
  }

  .catalogue-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .catalogue-card-large,
  .catalogue-card-wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 440px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-title-main,
  .hero-title-accent {
    white-space: normal;
  }

  .hero-lower {
    margin-top: clamp(180px, 24vh, 260px);
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(2, 9, 21, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding: 64px 0 70px;
    background-position: center 52%;
  }

  .hero-title-main,
  .hero-title-accent {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-lower {
    margin-top: clamp(160px, 22vh, 230px);
  }

  .hero-proof,
  .trust-grid,
  .product-grid,
  .services-grid,
  .vm-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-card,
  .catalogue-card-large,
  .catalogue-card-wide {
    min-height: 360px;
  }

  .section {
    padding: 78px 0;
  }

  .quote-form {
    padding: 24px;
  }

  .image-modal {
    padding: 14px;
  }

  .image-modal-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 54px 18px 18px;
  }

  .image-modal-header a {
    white-space: normal;
  }

  .image-modal-dialog {
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-text span {
    font-size: 1.15rem;
  }

  .brand-text small {
    letter-spacing: 0.22em;
    font-size: 0.58rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .hero-title-main,
  .hero-title-accent {
    font-size: 2.65rem;
    letter-spacing: -0.055em;
  }

  .hero-lower {
    margin-top: 145px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .catalogue-card,
  .catalogue-card-large,
  .catalogue-card-wide {
    min-height: 320px;
  }

  .catalogue-content {
    inset: auto 18px 20px 18px;
  }

  .catalogue-content h3 {
    font-size: 1.45rem;
  }

  .product-card,
  .service-card,
  .vm-card {
    padding: 20px;
  }
}