/* ═══════════════════════════════════════════════════
   M-SUITE (PayInvoice) — m_suite.css
   Theme: Gold (#c4a560) + Navy (#0a1628) — matching index.html
═══════════════════════════════════════════════════ */

:root {
  --pi-green: #c4a560;
  --pi-green-light: #d4b570;
  --pi-green-dim: #a88d4a;
  --pi-green-glow: rgba(196, 165, 96, 0.18);
  --pi-green-border: rgba(196, 165, 96, 0.25);
  --pi-dark: #0d1b2a;
  --pi-darker: #050b14;
  --pi-navy: #0a1628;
  --pi-card-bg: rgba(196, 165, 96, 0.06);
}

/* ── HERO ── */
.pi-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  background: linear-gradient(135deg, var(--pi-darker) 0%, #0b1a2e 55%, #0d2040 100%);
}
.pi-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,165,96,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,165,96,0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}
.pi-orb-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -150px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.1) 0%,
    transparent 70%
  );
  animation: piOrbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.pi-orb-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  left: -80px;
  bottom: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.07) 0%,
    transparent 70%
  );
  animation: piOrbFloat 11s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes piOrbFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-22px) scale(1.05);
  }
}

.pi-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 2;
  padding: 3rem 0 5rem;
}

.pi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pi-green);
  background: rgba(196, 165, 96, 0.1);
  border: 1px solid var(--pi-green-border);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pi-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pi-green);
  animation: piDotPulse 2s ease-in-out infinite;
}
@keyframes piDotPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.pi-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.06;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.pi-title-accent {
  background: linear-gradient(135deg, var(--pi-green), var(--pi-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pi-hero-tagline {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(232, 218, 188, 0.85);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.pi-hero-desc {
  font-size: 0.95rem;
  color: rgba(220, 210, 185, 0.65);
  line-height: 1.85;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 2rem;
}
.pi-hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.pi-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--pi-green), var(--pi-green-light));
  color: #050b14;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(196, 165, 96, 0.35);
}
.pi-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 165, 96, 0.5);
}
.pi-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-light);
  padding: 0.9rem 2rem;
  border: 1px solid rgba(196, 165, 96, 0.35);
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pi-btn-secondary:hover {
  border-color: var(--pi-green-border);
  color: var(--pi-green);
  background: rgba(196, 165, 96, 0.06);
}
.pi-hero-trust {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(196, 165, 96, 0.15);
}
.pi-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(210, 195, 160, 0.65);
}
.pi-trust-item i {
  color: var(--pi-green-dim);
  font-size: 0.75rem;
}

/* RIGHT visual */
.pi-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
.pi-badge-wrapper {
  position: relative;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pi-badge-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.3) 0%,
    transparent 70%
  );
  animation: piBadgePulse 3s ease-in-out infinite;
}
@keyframes piBadgePulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}
.pi-badge {
  width: 185px;
  height: 185px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0a1628 0%, #0d2145 100%);
  border: 2px solid rgba(196, 165, 96, 0.4);
  box-shadow:
    0 24px 60px rgba(196, 165, 96, 0.25),
    inset 0 1px 0 rgba(196, 165, 96, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.pi-badge:hover {
  transform: scale(1.06) rotateZ(2deg);
  box-shadow: 0 32px 72px rgba(196, 165, 96, 0.4);
}
.pi-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 165, 96, 0.1), transparent 50%);
}
.pi-badge-icon {
  font-size: 2rem;
  color: var(--pi-green);
  opacity: 0.9;
  position: relative;
  z-index: 1;
}
.pi-badge-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--pi-green);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.pi-badge-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(196, 165, 96, 0.75);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.pi-badge-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1.5px dashed rgba(196, 165, 96, 0.4);
  animation: piRingOrbit 14s linear infinite;
}
@keyframes piRingOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.pi-hero-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.pi-stat {
  background: rgba(196, 165, 96, 0.05);
  border: 1px solid rgba(196, 165, 96, 0.18);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 80px;
}
.pi-stat:hover {
  background: rgba(196, 165, 96, 0.1);
  border-color: rgba(196, 165, 96, 0.4);
  transform: translateY(-4px);
}
.pi-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pi-green);
  line-height: 1;
}
.pi-stat-lbl {
  font-size: 0.65rem;
  color: rgba(210, 195, 160, 0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── PDF IMAGE SHOWCASE ── */
.pi-pdf-showcase {
  padding: 80px 0;
  background: var(--pi-navy);
  position: relative;
  overflow: hidden;
}
.pi-pdf-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 165, 96, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 165, 96, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.pi-pdf-showcase-inner {
  position: relative;
  z-index: 2;
}
.pi-pdf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.pi-pdf-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(196, 165, 96, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}
.pi-pdf-card:hover {
  border-color: rgba(196, 165, 96, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(196, 165, 96, 0.15);
}
.pi-pdf-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pi-pdf-card:hover img {
  transform: scale(1.03);
}
.pi-pdf-card-label {
  padding: 12px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(196, 165, 96, 0.8);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pi-pdf-card-label i {
  color: var(--pi-green);
}
@media (max-width: 768px) {
  .pi-pdf-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ISO BADGE STRIP ── */
.pi-iso-strip {
  background: linear-gradient(135deg, #0a1628 0%, #0d2145 100%);
  border-top: 1px solid rgba(196, 165, 96, 0.2);
  border-bottom: 1px solid rgba(196, 165, 96, 0.2);
  padding: 16px 0;
  text-align: center;
}
.pi-iso-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pi-iso-strip i {
  color: var(--pi-green);
  font-size: 1.1rem;
}
.pi-iso-strip span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(232, 218, 188, 0.85);
  letter-spacing: 0.5px;
}

/* ── SHARED SECTION STYLES ── */
.pi-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pi-green);
  background: rgba(196, 165, 96, 0.08);
  border: 1px solid rgba(196, 165, 96, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.pi-section-label i {
  font-size: 0.75rem;
}
.pi-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.pi-section-title.light {
  color: var(--text-light);
}
.pi-section-sub {
  font-size: 0.93rem;
  color: #666;
  font-weight: 300;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 48px;
}
.pi-section-sub.light {
  color: rgba(210, 195, 160, 0.65);
}

/* ── METRICS SECTION ── */
.pi-metrics {
  padding: 80px 0;
  background: var(--pi-darker);
  position: relative;
  overflow: hidden;
}
.pi-metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 165, 96, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 165, 96, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.pi-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.pi-metric-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 165, 96, 0.18);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pi-metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pi-green), var(--pi-green-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.pi-metric-card:hover {
  background: rgba(196, 165, 96, 0.08);
  border-color: rgba(196, 165, 96, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}
.pi-metric-card:hover::before {
  opacity: 1;
}
.pi-metric-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--pi-green);
  line-height: 1;
  margin-bottom: 4px;
}
.pi-metric-val {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(210, 195, 160, 0.75);
  margin-bottom: 8px;
}
.pi-metric-lbl {
  font-size: 0.78rem;
  color: rgba(210, 195, 160, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.pi-metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(196, 165, 96, 0.12);
  border: 1px solid rgba(196, 165, 96, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--pi-green);
  margin: 0 auto 14px;
}
@media (max-width: 900px) {
  .pi-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .pi-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PRODUCTS SECTION ── */
.pi-products {
  padding: 90px 0;
  background: #f5f2ed;
}
.pi-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.pi-products-grid-row2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pi-product-card {
  background: #fff;
  border: 1px solid rgba(196, 165, 96, 0.14);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(10, 22, 40, 0.05);
}
.pi-product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pi-green), var(--pi-green-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.pi-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(196, 165, 96, 0.12);
  border-color: rgba(196, 165, 96, 0.35);
}
.pi-product-card:hover::after {
  opacity: 1;
}
.pi-product-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(196, 165, 96, 0.08);
  border: 1px solid rgba(196, 165, 96, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--pi-green);
  margin: 0 auto 14px;
  transition: background 0.3s;
}
.pi-product-card:hover .pi-product-icon {
  background: rgba(196, 165, 96, 0.16);
}
.pi-product-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pi-product-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pi-green-dim);
  margin-bottom: 10px;
  display: block;
}
.pi-product-card p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
}
@media (max-width: 900px) {
  .pi-products-grid,
  .pi-products-grid-row2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .pi-products-grid,
  .pi-products-grid-row2 {
    grid-template-columns: 1fr;
  }
}

/* ── PLATFORM ECOSYSTEM ── */
.pi-platform {
  padding: 90px 0;
  background: #fff;
}
.pi-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.pi-platform-col {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.07);
  border: 1px solid rgba(196, 165, 96, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.pi-platform-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(196, 165, 96, 0.12);
}
.pi-platform-col-header {
  padding: 18px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}
.pi-platform-col.tip .pi-platform-col-header {
  background: linear-gradient(135deg, var(--pi-green), var(--pi-green-light));
  color: #050b14;
}
.pi-platform-col.app .pi-platform-col-header {
  background: linear-gradient(135deg, #0a1628, #0d2145);
}
.pi-platform-col.ce .pi-platform-col-header {
  background: linear-gradient(135deg, #1a3a5c, #0d2145);
}
.pi-platform-items {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pi-platform-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 400;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.pi-platform-item:hover {
  background: rgba(196, 165, 96, 0.07);
}
.pi-platform-item i {
  color: var(--pi-green);
  font-size: 0.72rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .pi-platform-grid {
    grid-template-columns: 1fr;
  }
}

/* ── HOW IT WORKS ── */
.pi-flow {
  padding: 90px 0;
  background: var(--pi-darker);
  position: relative;
  overflow: hidden;
}
.pi-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 165, 96, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 165, 96, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.pi-flow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
  margin-top: 48px;
}
.pi-flow-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 165, 96, 0.16);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.pi-flow-step:hover {
  background: rgba(196, 165, 96, 0.1);
  border-color: rgba(196, 165, 96, 0.4);
  transform: translateY(-5px);
}
.pi-flow-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pi-green), var(--pi-green-light));
  color: #050b14;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.pi-flow-step i {
  font-size: 1.4rem;
  color: var(--pi-green);
  display: block;
  margin-bottom: 10px;
}
.pi-flow-step h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}
.pi-flow-step p {
  font-size: 0.73rem;
  color: rgba(210, 195, 160, 0.55);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .pi-flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .pi-flow-steps {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ── COMPETITIVE ADVANTAGE ── */
.pi-advantage {
  padding: 90px 0;
  background: #f5f2ed;
}
.pi-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.pi-adv-card {
  background: #fff;
  border: 1px solid rgba(196, 165, 96, 0.15);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.pi-adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pi-green), var(--pi-green-light));
  opacity: 0;
  transition: opacity 0.35s;
}
.pi-adv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(196, 165, 96, 0.12);
  border-color: rgba(196, 165, 96, 0.35);
}
.pi-adv-card:hover::before {
  opacity: 1;
}
.pi-adv-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pi-green), var(--pi-green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #050b14;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(196, 165, 96, 0.3);
}
.pi-adv-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.pi-adv-card p {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.75;
  font-weight: 300;
}
@media (max-width: 900px) {
  .pi-advantage-grid {
    grid-template-columns: 1fr;
  }
}

/* ── WHY CHOOSE US ── */
.pi-why {
  padding: 90px 0;
  background: #fff;
}
.pi-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.pi-why-card {
  background: #f5f2ed;
  border: 1px solid rgba(196, 165, 96, 0.14);
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  transition: all 0.3s ease;
}
.pi-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(196, 165, 96, 0.12);
  border-color: rgba(196, 165, 96, 0.35);
  background: #fff;
}
.pi-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(196, 165, 96, 0.08);
  border: 1px solid rgba(196, 165, 96, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--pi-green);
  margin: 0 auto 14px;
}
.pi-why-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pi-why-card p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.65;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .pi-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .pi-why-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ── VALUES ── */
.pi-values {
  padding: 90px 0;
  background: var(--pi-darker);
  position: relative;
  overflow: hidden;
}
.pi-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 165, 96, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 165, 96, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.pi-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
.pi-value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 165, 96, 0.16);
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  transition: all 0.3s ease;
}
.pi-value-card:hover {
  background: rgba(196, 165, 96, 0.08);
  border-color: rgba(196, 165, 96, 0.4);
  transform: translateY(-5px);
}
.pi-value-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pi-green);
  margin-bottom: 10px;
  display: block;
}
.pi-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(196, 165, 96, 0.1);
  border: 1px solid rgba(196, 165, 96, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--pi-green);
  margin: 0 auto 12px;
}
.pi-value-card p {
  font-size: 0.78rem;
  color: rgba(210, 195, 160, 0.6);
  line-height: 1.65;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .pi-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .pi-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── SECURITY ── */
.pi-security {
  padding: 90px 0;
  background: #fff;
}
.pi-security-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.pi-security-card {
  background: #f5f2ed;
  border: 1px solid rgba(196, 165, 96, 0.14);
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  transition: all 0.3s ease;
}
.pi-security-card:hover {
  border-color: rgba(196, 165, 96, 0.4);
  box-shadow: 0 12px 32px rgba(196, 165, 96, 0.1);
  transform: translateY(-4px);
  background: #fff;
}
.pi-security-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pi-green);
  margin-bottom: 10px;
  display: block;
}
.pi-security-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pi-security-card p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.65;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .pi-security-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .pi-security-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ── CLIENTS ── */
.pi-clients {
  padding: 80px 0;
  background: #f5f2ed;
}
.pi-clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
  align-items: center;
}
.pi-client-logo {
  background: #fff;
  border: 1px solid rgba(196, 165, 96, 0.12);
  border-radius: 10px;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  min-height: 60px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.pi-client-logo:hover {
  border-color: rgba(196, 165, 96, 0.35);
  box-shadow: 0 6px 18px rgba(196, 165, 96, 0.1);
  transform: translateY(-3px);
  color: var(--pi-green);
}
@media (max-width: 900px) {
  .pi-clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 540px) {
  .pi-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── IMAGE BANNER ── */
.pi-banner {
  height: 340px;
  position: relative;
  overflow: hidden;
}
.pi-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.6);
}
.pi-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 11, 20, 0.75) 0%,
    rgba(13, 33, 69, 0.5) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.pi-banner-text {
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
}
.pi-banner-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.2;
}
.pi-banner-text h3 span {
  background: linear-gradient(135deg, var(--pi-green), var(--pi-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pi-banner-text p {
  font-size: 0.93rem;
  color: rgba(232, 218, 188, 0.7);
  font-weight: 300;
}

/* ── CTA ── */
.pi-cta {
  padding: 100px 0;
  background: var(--pi-darker);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pi-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(196, 165, 96, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.pi-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.pi-cta-quote {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(196, 165, 96, 0.08);
  border: 1px solid rgba(196, 165, 96, 0.22);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 32px;
  text-align: left;
}
.pi-cta-quote i {
  color: var(--pi-green);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pi-cta-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(232, 218, 188, 0.82);
  line-height: 1.6;
  margin: 0;
}
.pi-cta-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── RESPONSIVE HERO ── */
@media (max-width: 990px) {
  .pi-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .pi-hero-visual {
    align-self: center;
  }
}
@media (max-width: 560px) {
  .pi-hero-title {
    font-size: 2.4rem;
  }
  .pi-hero-ctas {
    flex-direction: column;
  }
}

/* ── DARK SECTION LABEL OVERRIDES ── */
.pi-flow .pi-section-label,
.pi-values .pi-section-label,
.pi-metrics .pi-section-label,
.pi-cta .pi-section-label {
  background: rgba(196, 165, 96, 0.1);
  border-color: rgba(196, 165, 96, 0.22);
}

.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
