/* ============================================
   PROZO HOMEPAGE — Apple-style Redesign
   ============================================ */

/* --- Hero --- */
.prozo-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 60px;
  background: #fff;
  overflow: hidden;
}

.prozo-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ea6425;
  background: rgba(234, 100, 37, 0.08);
  border: 1.5px solid rgba(234, 100, 37, 0.25);
  padding: 12px 32px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: tag-glow 2.5s ease-in-out infinite;
}

.prozo-hero__tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ea6425;
  animation: tag-pulse 1.5s ease-in-out infinite;
}

@keyframes tag-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234, 100, 37, 0); }
  50% { box-shadow: 0 0 20px 4px rgba(234, 100, 37, 0.12); }
}

@keyframes tag-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.prozo-hero__headline {
  font-family: "Poppins", sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: #1d1d1f;
  max-width: 900px;
  margin: 0 auto 24px;
}

.prozo-hero__headline span {
  background: linear-gradient(135deg, #2f55d4 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prozo-hero__sub {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
  color: #86868b;
  max-width: 640px;
  margin: 0 auto 40px;
}

.prozo-hero__cta {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #2f55d4, #4f6ef7);
  padding: 16px 44px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(47, 85, 212, 0.3);
}

.prozo-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(47, 85, 212, 0.4);
  color: #fff;
  text-decoration: none;
}

/* --- Phone Mockups --- */
.phone-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  margin-top: 64px;
  perspective: 1200px;
}

.phone-mockup {
  width: 280px;
  height: 580px;
  background: #1d1d1f;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.4s ease;
}

.phone-mockup--large {
  width: 320px;
  height: 640px;
  z-index: 2;
}

.phone-mockup--left {
  transform: rotateY(8deg) translateY(20px);
}

.phone-mockup--right {
  transform: rotateY(-8deg) translateY(20px);
}

.phone-mockup__notch {
  width: 120px;
  height: 28px;
  background: #1d1d1f;
  border-radius: 0 0 18px 18px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-mockup__screen--oms {
  background: linear-gradient(160deg, #667eea 0%, #764ba2 100%);
}

.phone-mockup__screen--ct {
  background: linear-gradient(160deg, #2f55d4 0%, #0ea5e9 100%);
}

.phone-mockup__screen--wms {
  background: linear-gradient(160deg, #06b6d4 0%, #2f55d4 100%);
}

.phone-mockup__screen--ship {
  background: linear-gradient(160deg, #4f46e5 0%, #7c3aed 100%);
}

.phone-mockup__screen--cmd {
  background: linear-gradient(160deg, #1e3a5f 0%, #2f55d4 100%);
}

.phone-mockup__screen-icon {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.phone-mockup__screen-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.phone-mockup__screen-sublabel {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Faux UI elements inside phone screens */
.phone-mockup__ui-bar {
  width: 80%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  margin: 6px 0;
}

.phone-mockup__ui-bar--short {
  width: 50%;
}

.phone-mockup__ui-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.phone-mockup__ui-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.phone-mockup__ui-dot--active {
  background: rgba(255, 255, 255, 0.9);
}

/* --- Minimal Section Base --- */
.prozo-section {
  padding: 96px 0;
  position: relative;
}

.prozo-section--gray {
  background: #f5f5f7;
}

.prozo-section--dark {
  background: #1d1d1f;
}

.prozo-section--blue {
  background: linear-gradient(135deg, #2f55d4 0%, #1a3a9e 100%);
}

.prozo-section__eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2f55d4;
  margin-bottom: 16px;
}

.prozo-section--dark .prozo-section__eyebrow {
  color: #6b9bff;
}

.prozo-section__title {
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.prozo-section--dark .prozo-section__title,
.prozo-section--blue .prozo-section__title {
  color: #f5f5f7;
}

.prozo-section__desc {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #86868b;
  max-width: 600px;
}

.prozo-section--dark .prozo-section__desc {
  color: #a1a1a6;
}

.prozo-section--blue .prozo-section__desc {
  color: rgba(255, 255, 255, 0.75);
}

.prozo-section__desc--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* --- Three Pillars --- */
.pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.pillar-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e5e5ea;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.prozo-section--gray .pillar-card {
  background: #fff;
}

.pillar-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.pillar-card__icon--warehouse {
  background: linear-gradient(135deg, #2f55d4 0%, #6366f1 100%);
  color: #fff;
}

.pillar-card__icon--logistics {
  background: linear-gradient(135deg, #06b6d4 0%, #2f55d4 100%);
  color: #fff;
}

.pillar-card__icon--tech {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff;
}

.pillar-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.pillar-card__text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #6e6e73;
  margin-bottom: 0;
}

/* --- Infrastructure --- */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.infra-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid #e5e5ea;
  transition: transform 0.3s, box-shadow 0.3s;
}

.infra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.prozo-section--dark .infra-card {
  background: #2c2c2e;
  border-color: #3a3a3c;
}

.prozo-section--dark .infra-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.infra-card__icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.infra-card__name {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.prozo-section--dark .infra-card__name {
  color: #f5f5f7;
}

.infra-card__desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #86868b;
  line-height: 1.5;
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e5e5ea;
}

.prozo-section--dark .stats-bar {
  background: #2c2c2e;
  border-color: #3a3a3c;
}

.stats-bar__item {
  padding: 36px 24px;
  text-align: center;
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #e5e5ea;
}

.prozo-section--dark .stats-bar__item:not(:last-child)::after {
  background: #3a3a3c;
}

.stats-bar__number {
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #2f55d4, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1.1;
}

.stats-bar__label {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #86868b;
}

/* --- Partner Grid (redesigned) --- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.partner-group {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e5e5ea;
  transition: transform 0.3s, box-shadow 0.3s;
}

.partner-group:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.partner-group__header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-group__header--hld {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.partner-group__header--d2c-surface {
  background: linear-gradient(135deg, #2f55d4, #6366f1);
}

.partner-group__header--sdd {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.partner-group__header--d2c-air {
  background: linear-gradient(135deg, #4f46e5, #818cf8);
}

.partner-group__header--heavy {
  background: linear-gradient(135deg, #1e3a5f, #2f55d4);
}

.partner-group__header--ptl {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.partner-group__header--appt {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.partner-group__header--green {
  background: linear-gradient(135deg, #15803d, #22c55e);
}

.partner-group__title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: 0.3px;
}

.partner-group__body {
  padding: 20px 24px;
}

.partner-group__partners {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #6e6e73;
  margin: 0;
}

.partner-group__partners span {
  color: #1d1d1f;
  font-weight: 500;
}

.partner-group__partners span::after {
  content: " \00B7 ";
  color: #c7c7cc;
  font-weight: 700;
  padding: 0 2px;
}

.partner-group__partners span:last-child::after {
  content: "";
}

@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* --- Layer Section --- */
.layer-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.layer-section--reverse {
  direction: rtl;
}

.layer-section--reverse > * {
  direction: ltr;
}

.layer-section__text {
  /* text side */
}

.layer-section__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.layer-tag {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.layer-tag--blue {
  background: rgba(47, 85, 212, 0.1);
  color: #2f55d4;
}

.layer-tag--cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
}

.layer-tag--purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.layer-tag--amber {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
}

.layer-title {
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #1d1d1f;
  margin-bottom: 16px;
}

.prozo-section--dark .layer-title {
  color: #f5f5f7;
}

.layer-desc {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #6e6e73;
  margin-bottom: 24px;
}

.prozo-section--dark .layer-desc {
  color: #a1a1a6;
}

.layer-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.layer-features li {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  background: #f5f5f7;
  padding: 10px 20px;
  border-radius: 100px;
}

.prozo-section--dark .layer-features li {
  background: #2c2c2e;
  color: #f5f5f7;
}

@media (max-width: 1024px) {
  .layer-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .layer-section--reverse {
    direction: ltr;
  }

  .layer-section__visual {
    order: -1;
  }

  .layer-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .layer-title {
    font-size: 28px;
  }
}

/* --- Logistics Pills --- */
.logistics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  justify-content: center;
}

.logistics-pill {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1f;
  background: #fff;
  padding: 16px 28px;
  border-radius: 100px;
  border: 1px solid #e5e5ea;
  transition: all 0.25s;
  white-space: nowrap;
}

.logistics-pill:hover {
  background: #2f55d4;
  color: #fff;
  border-color: #2f55d4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47, 85, 212, 0.2);
}

.logistics-pill--highlight {
  background: linear-gradient(135deg, #2f55d4, #4f6ef7);
  color: #fff;
  border-color: transparent;
  font-weight: 600;
}

.logistics-pill--highlight:hover {
  background: linear-gradient(135deg, #2443ac, #2f55d4);
}

/* --- Flow Diagram --- */
.flow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  flex-wrap: wrap;
}

.flow-node {
  background: #fff;
  border: 2px solid #e5e5ea;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  min-width: 200px;
  max-width: 220px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.flow-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.prozo-section--dark .flow-node {
  background: #2c2c2e;
  border-color: #3a3a3c;
}

.flow-node__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.flow-node__label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.prozo-section--dark .flow-node__label {
  color: #f5f5f7;
}

.flow-node__sub {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #86868b;
}

.flow-arrow {
  font-size: 24px;
  color: #2f55d4;
  padding: 0 12px;
  font-weight: 700;
}

.prozo-section--dark .flow-arrow {
  color: #6b9bff;
}

.flow-arrow--bidirectional {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  gap: 2px;
}

/* --- Tech Section with Phones --- */
.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list__item {
  padding: 24px 0;
  border-bottom: 1px solid #3a3a3c;
}

.tech-list__item:last-child {
  border-bottom: none;
}

.tech-list__name {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #f5f5f7;
  margin-bottom: 6px;
}

.tech-list__desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #a1a1a6;
  line-height: 1.5;
  margin: 0;
}

.tech-phones {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
}

/* --- Omnichannel Bridge --- */
.bridge-grid {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 0;
  align-items: center;
  margin-top: 44px;
}

.bridge-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  border: 1px solid #e5e5ea;
}

.bridge-card__label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #86868b;
  margin-bottom: 12px;
}

.bridge-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.bridge-card__text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.6;
  margin: 0;
}

.bridge-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bridge-center__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #2f55d4, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
  box-shadow: 0 8px 24px rgba(47, 85, 212, 0.3);
}

.bridge-center__label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #2f55d4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .prozo-hero__headline {
    font-size: 52px;
  }

  .prozo-section__title {
    font-size: 40px;
  }

  .tech-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tech-phones {
    order: -1;
  }

  .bridge-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bridge-center {
    transform: rotate(90deg);
    padding: 12px 0;
  }
}

@media (max-width: 768px) {
  .prozo-hero {
    min-height: auto;
    padding: 100px 0 40px;
  }

  .prozo-hero__headline {
    font-size: 38px;
    letter-spacing: -1px;
    line-height: 1.15;
  }

  .prozo-hero__sub {
    font-size: 17px;
  }

  .prozo-section {
    padding: 64px 0;
  }

  .prozo-section__title {
    font-size: 32px;
  }

  .pillars-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .infra-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stats-bar__item:not(:last-child)::after {
    width: 60%;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 20%;
    right: auto;
  }

  .stats-bar__number {
    font-size: 40px;
  }

  .phone-showcase {
    gap: 12px;
    margin-top: 40px;
  }

  .phone-mockup {
    width: 160px;
    height: 330px;
    border-radius: 28px;
    padding: 8px;
  }

  .phone-mockup--large {
    width: 180px;
    height: 370px;
  }

  .phone-mockup__screen {
    border-radius: 22px;
  }

  .phone-mockup__notch {
    width: 70px;
    height: 18px;
    border-radius: 0 0 12px 12px;
    top: 8px;
  }

  .phone-mockup__screen-icon {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .phone-mockup__screen-label {
    font-size: 10px;
  }

  .flow-visual {
    flex-direction: column;
    gap: 0;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

  .flow-node {
    min-width: 180px;
  }

  .logistics-pill {
    font-size: 13px;
    padding: 12px 20px;
  }

  .tech-phones .phone-mockup {
    width: 140px;
    height: 290px;
  }

  .tech-phones .phone-mockup--large {
    width: 160px;
    height: 330px;
  }
}

@media (max-width: 480px) {
  .prozo-hero__headline {
    font-size: 32px;
  }

  .phone-mockup--left,
  .phone-mockup--right {
    display: none;
  }

  .phone-mockup--large {
    width: 240px;
    height: 500px;
  }
}

/* --- Hero SVG Visual --- */
.hero-visual {
  margin-top: 56px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(145deg, #1d1d1f 0%, #2c2c2e 100%);
  border-radius: 24px;
  padding: 32px 24px 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18), 0 12px 32px rgba(0, 0, 0, 0.12);
}

.hero-svg {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-visual {
    margin-top: 36px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    padding: 20px 12px 16px;
  }

  .hero-svg {
    min-width: 600px;
  }
}

/* --- Delivery Speed Cards --- */
.speed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.speed-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #e5e5ea;
  transition: transform 0.3s, box-shadow 0.3s;
}

.speed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.speed-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.speed-card__time {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.2;
}

.speed-card__label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #86868b;
  margin-top: 4px;
}

.speed-card__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e5e5ea;
}

.speed-card__stat span {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #2f55d4;
  letter-spacing: 0.2px;
}

@media (max-width: 1024px) {
  .speed-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .speed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

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

  .speed-card {
    padding: 20px 14px;
  }

  .speed-card__time {
    font-size: 16px;
  }
}

/* --- Partner Badge (shared) --- */
.partner-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 56px;
  padding: 8px 18px;
  background: #f5f5f7;
  border-radius: 10px;
  transition: transform 0.2s;
}

.partner-badge:hover {
  transform: translateY(-2px);
}

.partner-badge__logo {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
}

.partner-badge__text {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  white-space: nowrap;
}

/* --- Courier Showcase (unified logo grid) --- */
.courier-showcase__title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.courier-showcase__desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #86868b;
  margin-bottom: 0;
}

.courier-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.courier-showcase .partner-badge {
  height: 84px;
  padding: 16px 24px;
  border: 1px solid #e5e5ea;
  border-radius: 16px;
  background: #fff;
}

.courier-showcase .partner-badge__logo {
  max-height: 44px;
  max-width: 130px;
}

.courier-showcase .partner-badge__text {
  font-size: 14px;
}

@media (max-width: 768px) {
  .courier-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .courier-showcase__title {
    font-size: 22px;
  }
}

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

/* --- Integration 2-Column Asymmetric Layout --- */
.integration-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
  align-items: stretch;
}

.integration-2col__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.integration-2col__right {
  display: flex;
  flex-direction: column;
}

.integration-block {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e5ea;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.integration-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.integration-block--tall {
  height: 100%;
}

.integration-block__header {
  padding: 28px 28px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.integration-block__header i {
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
}

.integration-block__header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.integration-block__header p {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.integration-block__header--oms {
  background: linear-gradient(135deg, #2f55d4, #6366f1);
}

.integration-block__header--erp {
  background: linear-gradient(135deg, #1e3a5f, #2f55d4);
}

.integration-block__header--logistics {
  background: linear-gradient(135deg, #06b6d4, #2f55d4);
}

.integration-block__body {
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.integration-block__body--wrap {
  align-content: flex-start;
}

.integration-block__sublabel {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #86868b;
  margin: 4px 0 4px;
}

.integration-block__divider {
  width: 100%;
  height: 1px;
  background: #e5e5ea;
  margin: 8px 0;
}

.integration-badge-lg {
  padding: 14px 28px;
  background: #f5f5f7;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  transition: transform 0.2s;
}

.integration-badge-lg:hover {
  transform: translateY(-2px);
}

.integration-badge-lg--sap {
  border-left: 4px solid #0070f2;
}

.integration-badge-lg--oracle {
  border-left: 4px solid #f80000;
}

.integration-badge-lg--msft {
  border-left: 4px solid #00a4ef;
}

/* Larger partner badges inside integration rows */
.integration-row__badges .partner-badge {
  height: 56px;
  padding: 8px 18px;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  background: #fff;
}

.integration-row__badges .partner-badge__logo {
  max-height: 28px;
  max-width: 90px;
}

.layer-tag--green {
  background: rgba(21, 128, 61, 0.1);
  color: #15803d;
}

/* Larger partner badges inside integration blocks */
.integration-block__body .partner-badge {
  height: 64px;
  padding: 10px 20px;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  background: #fff;
}

.integration-block__body .partner-badge__logo {
  max-height: 38px;
  max-width: 110px;
}

@media (max-width: 768px) {
  .integration-2col {
    grid-template-columns: 1fr;
  }
}

/* --- Marketplace Grid --- */
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.marketplace-grid .partner-badge {
  height: 96px;
  padding: 20px 28px;
  border: 1px solid #e5e5ea;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.marketplace-grid .partner-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.marketplace-grid .partner-badge__logo {
  max-height: 48px;
  max-width: 140px;
}

.marketplace-grid .partner-badge__text {
  font-size: 15px;
}

@media (max-width: 768px) {
  .marketplace-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

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

/* --- Governance Grid --- */
.governance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.governance-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid #e5e5ea;
  transition: transform 0.3s, box-shadow 0.3s;
}

.governance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.governance-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.governance-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.governance-card__desc {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #86868b;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .governance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .governance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

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

/* ============================================
   CONTACT MODAL — Redesigned
   ============================================ */
#contact .modal-dialog {
  display: flex;
  align-items: center;
  min-height: 100vh;
  margin: 0 auto;
}

.prozo-modal-redesign {
  border: none !important;
  border-radius: 24px !important;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25), 0 12px 40px rgba(0, 0, 0, 0.15);
  max-height: 90vh;
  overflow-y: auto;
  width: 100%;
}

.prozo-modal-redesign .modal-body {
  border-radius: 24px !important;
}

.prozo-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}

.prozo-modal__close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.prozo-modal__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 580px;
}

/* --- Left Branding Panel --- */
.prozo-modal__brand {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.prozo-modal__brand::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 85, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.prozo-modal__brand::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.prozo-modal__brand-content {
  position: relative;
  z-index: 1;
}

.prozo-modal__logo {
  height: 32px;
  margin-bottom: 32px;
  filter: brightness(0) invert(1);
}

.prozo-modal__tagline {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #f5f5f7;
  margin-bottom: 12px;
}

.prozo-modal__tagline span {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prozo-modal__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 36px;
}

.prozo-modal__stats {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.prozo-modal__stat {
  display: flex;
  flex-direction: column;
}

.prozo-modal__stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.prozo-modal__stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.prozo-modal__capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.prozo-modal__cap-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.prozo-modal__cap-item i {
  font-size: 16px;
  color: #818cf8;
}

.prozo-modal__cap-item span {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Right Form Panel --- */
.prozo-modal__form {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.prozo-modal__form-inner {
  max-width: 480px;
}

.prozo-modal__form-title {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.prozo-modal__form-desc {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #86868b;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* Style HubSpot form inside redesigned modal */
.prozo-modal__form .hs-form-field label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
}

.prozo-modal__form .hs-input {
  border-radius: 12px !important;
  border: 1px solid #e5e5ea !important;
  padding: 12px 16px !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 14px !important;
  transition: border-color 0.2s !important;
}

.prozo-modal__form .hs-input:focus {
  border-color: #2f55d4 !important;
  box-shadow: 0 0 0 3px rgba(47, 85, 212, 0.1) !important;
  outline: none !important;
}

.prozo-modal__form .hs-submit .actions input[type="submit"] {
  font-family: "Poppins", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, #2f55d4, #4f6ef7) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 32px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 16px rgba(47, 85, 212, 0.25) !important;
}

.prozo-modal__form .hs-submit .actions input[type="submit"]:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(47, 85, 212, 0.35) !important;
}

/* --- Modal Responsive --- */
@media (max-width: 992px) {
  .prozo-modal__grid {
    grid-template-columns: 1fr;
  }

  .prozo-modal__brand {
    padding: 36px 32px;
  }

  .prozo-modal__tagline {
    font-size: 26px;
  }

  .prozo-modal__stats {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .prozo-modal__stat-num {
    font-size: 22px;
  }

  .prozo-modal__form {
    padding: 36px 32px;
  }

  .prozo-modal__close {
    background: rgba(0, 0, 0, 0.08);
    color: #1d1d1f;
  }

  .prozo-modal__close:hover {
    background: rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 576px) {
  .prozo-modal__grid {
    min-height: auto;
  }

  .prozo-modal__brand {
    padding: 28px 24px;
  }

  .prozo-modal__tagline {
    font-size: 22px;
  }

  .prozo-modal__stats {
    gap: 16px;
  }

  .prozo-modal__stat-num {
    font-size: 20px;
  }

  .prozo-modal__capabilities {
    flex-wrap: wrap;
    gap: 8px;
  }

  .prozo-modal__form {
    padding: 28px 24px;
  }

  .prozo-modal__form-title {
    font-size: 22px;
  }
}

/* ============================================
   PROZO HEADER — Redesign Override
   ============================================ */

/* --- Top utility bar --- */
.prozo-topbar {
  background: #1d1d1f;
  padding: 6px 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  max-height: 40px;
  overflow: hidden;
}

.prozo-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prozo-topbar__contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.prozo-topbar__contact a {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.prozo-topbar__contact a:hover {
  color: #fff;
}

.prozo-topbar__contact a i {
  font-size: 14px;
}

.prozo-topbar__sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  user-select: none;
}

/* --- Main header bar override --- */
#topnav.prozo-nav {
  padding-top: 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#topnav.prozo-nav .miniHeder {
  display: none !important;
}

#topnav.prozo-nav .logo {
  float: left;
  display: flex;
  align-items: center;
  padding: 0;
}

#topnav.prozo-nav .logo img {
  height: 64px;
  width: auto;
}

/* --- Nav CTA button --- */
.prozo-nav-cta {
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #ea6425, #f07d42) !important;
  border: none !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.3s !important;
  box-shadow: 0 2px 12px rgba(234, 100, 37, 0.2) !important;
  letter-spacing: 0.3px !important;
  line-height: 1.2 !important;
}

.prozo-nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(234, 100, 37, 0.35) !important;
}

.prozo-nav-cta i {
  font-size: 16px;
  transition: transform 0.2s;
}

.prozo-nav-cta:hover i {
  transform: translateX(3px);
}

/* --- Navigation items override --- */
#topnav.prozo-nav .navigation-menu > li {
  margin: 0 10px;
}

#topnav.prozo-nav .navigation-menu > li > a {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3c4858;
  text-transform: none;
  letter-spacing: 0;
  transition: color 0.2s;
  position: relative;
}

#topnav.prozo-nav .navigation-menu > li:hover > a,
#topnav.prozo-nav .navigation-menu > li.active > a {
  color: #ea6425 !important;
}

/* Animated underline on hover */
#topnav.prozo-nav .navigation-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 10px;
  height: 2.5px;
  background: #ea6425;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

#topnav.prozo-nav .navigation-menu > li:hover > a::after,
#topnav.prozo-nav .navigation-menu > li.active > a::after {
  transform: scaleX(1);
}

/* Menu arrow override */
#topnav.prozo-nav .navigation-menu .has-submenu .menu-arrow {
  border-color: #86868b !important;
  border-width: 0 1.5px 1.5px 0;
  padding: 2.5px;
  transition: all 0.3s;
}

#topnav.prozo-nav .navigation-menu > li:hover > .menu-arrow,
#topnav.prozo-nav .navigation-menu > li.active > .menu-arrow {
  border-color: #ea6425 !important;
}

/* --- Hamburger override --- */
#topnav.prozo-nav .navbar-toggle span {
  background-color: #1d1d1f;
  height: 2px;
  border-radius: 2px;
}

#topnav.prozo-nav .navbar-toggle.open span:hover {
  background-color: #2f55d4;
}

/* --- Desktop mega menu & dropdown overrides --- */
@media (min-width: 992px) {
  #topnav.prozo-nav .navigation-menu > li > a {
    padding-top: 19px;
    padding-bottom: 19px;
  }

  #topnav.prozo-nav .navigation-menu > li > a::after {
    bottom: 12px;
  }

  /* Arrow vertical align */
  #topnav.prozo-nav .navigation-menu .has-submenu .menu-arrow {
    top: 23px;
  }

  /* Submenu panels */
  #topnav.prozo-nav .navigation-menu > li .submenu {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 3px solid #ea6425;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
      0 4px 16px rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  #topnav.prozo-nav .navigation-menu > li.has-submenu.active > .submenu {
    transform: translateY(0);
  }

  /* Mega menu panel */
  #topnav.prozo-nav .navigation-menu > li .submenu.mega {
    border-radius: 0 0 20px 20px;
    padding: 0;
    top: 60px !important;
  }

  /* Mega menu columns */
  #topnav.prozo-nav .navigation-menu > li .submenu .column {
    padding: 24px 20px;
    min-width: 250px;
    border-right: 1px solid #f0f0f2;
  }

  #topnav.prozo-nav .navigation-menu > li .submenu .column:last-child {
    border-right: none;
  }

  /* --- Column header with icon (CLICKABLE SUBHEADING) --- */
  #topnav.prozo-nav .mega-col-header {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 10px 12px !important;
    margin: 0 -10px 8px;
    border-bottom: 1px solid #f0f0f2;
    border-radius: 10px 10px 0 0;
    transition: background 0.2s;
    cursor: pointer;
  }

  #topnav.prozo-nav .mega-col-header:hover {
    background: rgba(234, 100, 37, 0.04);
  }

  .mega-col-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(234, 100, 37, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: all 0.2s;
  }

  #topnav.prozo-nav .mega-col-header:hover .mega-col-icon {
    background: #ea6425;
  }

  .mega-col-icon i {
    font-size: 18px;
    color: #ea6425;
    line-height: 1;
    transition: color 0.2s;
  }

  #topnav.prozo-nav .mega-col-header:hover .mega-col-icon i {
    color: #fff;
  }

  .mega-col-info {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  #topnav.prozo-nav .mega-col-info .mheading {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    color: #1a1a2e !important;
    letter-spacing: 0 !important;
    padding: 0 !important;
    line-height: 1.3;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
  }

  /* Arrow indicator on column heading — shows it's clickable */
  #topnav.prozo-nav .mega-col-info .mheading::after {
    content: "\2192";
    font-size: 13px;
    color: #c8c8cc;
    transition: all 0.2s;
    display: inline-block;
  }

  #topnav.prozo-nav .mega-col-header:hover .mega-col-info .mheading {
    color: #ea6425 !important;
  }

  #topnav.prozo-nav .mega-col-header:hover .mega-col-info .mheading::after {
    color: #ea6425;
    transform: translateX(3px);
  }

  .mega-col-desc {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    color: #86868b;
    line-height: 1.4;
    margin-top: 3px;
    font-weight: 400;
  }

  /* --- Submenu link items (clearly clickable) --- */
  #topnav.prozo-nav .navigation-menu > li .submenu li a {
    font-family: "Poppins", sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: #4a4a52;
    padding: 6px 10px 6px 10px;
    margin: 1px -10px;
    display: block;
    transition: all 0.15s;
    letter-spacing: 0;
    border-radius: 8px;
    border-left: 2px solid transparent;
    position: relative;
  }

  #topnav.prozo-nav .navigation-menu > li .submenu li a:hover {
    color: #ea6425 !important;
    background: rgba(234, 100, 37, 0.05);
    border-left-color: #ea6425;
    padding-left: 14px;
  }

  /* Small chevron on each sub-item on hover */
  #topnav.prozo-nav .navigation-menu > li .submenu li:not(.mega-col-header) a::after {
    content: "\203A";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: transparent;
    transition: all 0.15s;
    font-weight: 300;
  }

  #topnav.prozo-nav .navigation-menu > li .submenu li:not(.mega-col-header) a:hover::after {
    color: #ea6425;
  }

  /* isHeading items inside columns (sub-section separators) */
  #topnav.prozo-nav
    .navigation-menu
    > li
    .submenu
    li:not(.mega-col-header)
    .mheading {
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    color: #86868b !important;
    font-weight: 600 !important;
    margin-top: 10px;
    padding-top: 10px !important;
    border-top: 1px solid #f0f0f2;
    border-left: none;
    border-radius: 0;
  }

  #topnav.prozo-nav
    .navigation-menu
    > li
    .submenu
    li:not(.mega-col-header)
    .mheading::after {
    display: none;
  }

  /* --- Simple dropdown (Company, Login, Hyperlocal) --- */
  #topnav.prozo-nav .navigation-menu > li > .submenu:not(.mega) {
    min-width: 230px;
    padding: 10px 12px;
  }

  #topnav.prozo-nav .navigation-menu > li > .submenu:not(.mega) li a {
    padding: 8px 12px;
    margin: 1px 0;
    border-radius: 8px;
    border-left: 2px solid transparent;
  }

  #topnav.prozo-nav .navigation-menu > li > .submenu:not(.mega) li a:hover {
    padding-left: 16px;
    background: rgba(234, 100, 37, 0.05);
    border-left-color: #ea6425;
  }

  /* Last elements right-align dropdown */
  #topnav.prozo-nav .navigation-menu > li.last-elements .submenu {
    border-radius: 0 0 16px 16px;
  }
}

/* --- Sticky state --- */
#topnav.prozo-nav.nav-sticky {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

#topnav.prozo-nav.nav-sticky .prozo-topbar {
  max-height: 0;
  opacity: 0;
  padding: 0;
}

/* --- Responsive — tablet & mobile --- */
@media (max-width: 991px) {
  #topnav.prozo-nav {
    background: #fff !important;
    border-bottom: 1px solid #e5e5ea;
    min-height: 64px;
    padding-top: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  #topnav.prozo-nav .prozo-topbar {
    display: none;
  }

  #topnav.prozo-nav .logo {
    line-height: 64px;
  }

  #topnav.prozo-nav .logo img {
    height: 52px;
  }

  #topnav.prozo-nav .navbar-toggle span {
    background-color: #1d1d1f;
  }

  #topnav.prozo-nav #navigation {
    background: #fff;
    height: calc(100vh - 64px);
    top: 64px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f2;
  }

  #topnav.prozo-nav .navigation-menu {
    background: #fff;
  }

  #topnav.prozo-nav .navigation-menu > li {
    margin: 0;
  }

  #topnav.prozo-nav .navigation-menu > li > a {
    color: #1d1d1f !important;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    padding: 12px 0;
    letter-spacing: 0;
  }

  /* Remove hover underline on mobile */
  #topnav.prozo-nav .navigation-menu > li > a::after {
    display: none;
  }

  #topnav.prozo-nav .navigation-menu .has-submenu .menu-arrow {
    border-color: #86868b !important;
  }

  #topnav.prozo-nav .has-submenu.active a {
    color: #ea6425 !important;
  }

  /* Submenu panel mobile */
  #topnav.prozo-nav .navigation-menu > li .submenu {
    padding-left: 12px;
    background: #f9fafb;
    border-radius: 12px;
    margin: 4px 0 8px;
  }

  #topnav.prozo-nav .navigation-menu > li .submenu li a {
    font-size: 13px;
    color: #6e6e73 !important;
    padding: 7px 12px;
    font-weight: 400;
  }

  #topnav.prozo-nav .navigation-menu > li .submenu li a:hover {
    color: #ea6425 !important;
  }

  #topnav.prozo-nav .navigation-menu > li .submenu .column {
    padding: 8px 0;
    min-width: auto;
    border-bottom: 1px solid #e5e5ea;
    border-right: none;
  }

  #topnav.prozo-nav .navigation-menu > li .submenu .column:last-child {
    border-bottom: none;
  }

  /* Hide icons and descriptions on mobile for compact layout */
  .mega-col-icon {
    display: none;
  }

  .mega-col-desc {
    display: none;
  }

  .mega-col-header {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
  }

  /* Mobile mheading in mega menu */
  #topnav.prozo-nav .navigation-menu > li .submenu .mega-col-info .mheading {
    font-size: 13px !important;
    text-transform: none !important;
    color: #1d1d1f !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    padding: 4px 0 !important;
  }

  /* CTA in mobile */
  #topnav.prozo-nav .buy-button {
    margin-top: 2px;
  }

  .prozo-nav-cta {
    padding: 8px 18px !important;
    font-size: 12px !important;
  }

  .prozo-nav-cta i {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  #topnav.prozo-nav .logo img {
    height: 44px;
  }

  .prozo-nav-cta {
    padding: 7px 14px !important;
    font-size: 11px !important;
    gap: 4px !important;
  }

  .prozo-nav-cta i {
    font-size: 13px;
  }
}
