/* ============================================================
   PREMIER BUILD 3D — MAIN STYLES v2
   Navy + gold palette. Light theme with navy hero/CTA panels.
   Clean geometric sans throughout.
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Palette — sampled from the brand */
  --navy:         #0a1f3d;
  --navy-2:       #13294b;
  --navy-3:       #1f3557;
  --navy-tint:    #22364f;

  --gold:         #c9a961;
  --gold-2:       #b59246;
  --gold-3:       #e6c98a;
  --gold-soft:    rgba(201, 169, 97, 0.12);

  --paper:        #f8fafc;
  --paper-2:      #f1f4f9;
  --white:        #ffffff;
  --rule:         #e2e8f0;
  --rule-dark:    rgba(255,255,255,0.10);

  --ink:          #0a1f3d;
  --ink-2:        #334155;
  --ink-3:        #64748b;
  --bone:         #f1f5f9;
  --bone-2:       #cbd5e1;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;

  --max-w: 1280px;
  --gutter: clamp(1rem, 4vw, 3rem);

  --shadow-sm: 0 1px 2px rgba(10, 31, 61, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(10, 31, 61, 0.08), 0 2px 4px -2px rgba(10, 31, 61, 0.04);
  --shadow-lg: 0 10px 20px -3px rgba(10, 31, 61, 0.10), 0 4px 8px -4px rgba(10, 31, 61, 0.05);
  --shadow-xl: 0 20px 40px -10px rgba(10, 31, 61, 0.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 var(--s-4); }
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

::selection { background: var(--gold); color: var(--navy); }

.pb3d-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
  position: relative;
}

main { position: relative; }

/* ---------- SITE HEADER ---------- */
.pb3d-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid var(--rule);
}
.pb3d-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  padding-block: var(--s-3);
  min-height: 72px;
}
.pb3d-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
}
.pb3d-brand img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
}
.pb3d-brand-text {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1;
}
.pb3d-brand-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}

.pb3d-nav-list {
  display: flex;
  gap: var(--s-8);
  align-items: center;
}
.pb3d-nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 160ms ease;
  position: relative;
}
.pb3d-nav-list a:hover { color: var(--navy); }
.pb3d-nav-list a.is-active { color: var(--gold-2); font-weight: 600; }

.pb3d-header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  transition: all 200ms ease;
  border: 1px solid var(--navy);
}
.pb3d-header-cta:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.pb3d-nav-toggle {
  display: none;
  font-size: 0.9rem;
  color: var(--navy);
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

@media (max-width: 900px) {
  .pb3d-nav-toggle { display: inline-block; }
  .pb3d-header-cta { display: none; }
  .pb3d-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-lg);
    padding: var(--s-6) var(--gutter);
    display: none;
  }
  .pb3d-nav.is-open { display: block; }
  .pb3d-nav-list { flex-direction: column; align-items: flex-start; gap: var(--s-5); }
}

/* ---------- BUTTONS ---------- */
.pb3d-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-6);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all 200ms ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.pb3d-btn .arrow { transition: transform 200ms ease; }
.pb3d-btn:hover .arrow { transform: translateX(3px); }

.pb3d-btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.pb3d-btn--primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(201, 169, 97, 0.5);
}
.pb3d-btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.pb3d-btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
}
.pb3d-btn--ghost-on-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.pb3d-btn--ghost-on-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ---------- HERO ---------- */
.pb3d-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--bone);
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(5rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
}
.pb3d-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 85% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 15% 80%, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.pb3d-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at right, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at right, black 10%, transparent 75%);
  pointer-events: none;
}
.pb3d-hero > .pb3d-container { position: relative; z-index: 1; }

.pb3d-hero-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
@media (max-width: 960px) {
  .pb3d-hero-layout { grid-template-columns: 1fr; gap: var(--s-12); }
}

.pb3d-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.3);
  color: var(--gold-3);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  margin-bottom: var(--s-6);
}
.pb3d-pill::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}

.pb3d-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--s-6);
}
.pb3d-hero h1 span {
  display: block;
  color: var(--gold);
  font-weight: 800;
}
.pb3d-hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--bone-2);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: var(--s-8);
}
.pb3d-hero-actions {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.pb3d-hero-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.pb3d-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 300ms ease;
}
.pb3d-hero-card:nth-child(1) { transform: translateX(0); }
.pb3d-hero-card:nth-child(2) { transform: translateX(40px); }
.pb3d-hero-card:nth-child(3) { transform: translateX(-20px); }
.pb3d-hero-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201, 169, 97, 0.4);
  transform: translateX(0) translateY(-4px);
}
.pb3d-hero-card .icon {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--s-3);
}
.pb3d-hero-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--s-1);
}
.pb3d-hero-card p {
  color: var(--bone-2);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 960px) {
  .pb3d-hero-card:nth-child(n) { transform: none; }
}

/* Stats strip */
.pb3d-stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-10) 0;
}
.pb3d-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.pb3d-stats-grid > div {
  text-align: center;
  padding: 0 var(--s-4);
  border-right: 1px solid var(--rule);
}
.pb3d-stats-grid > div:last-child { border-right: 0; }
.pb3d-stats-grid .num {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pb3d-stats-grid .label {
  display: block;
  margin-top: var(--s-2);
  font-size: 0.85rem;
  color: var(--ink-3);
  font-weight: 500;
}
@media (max-width: 720px) {
  .pb3d-stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-8); }
  .pb3d-stats-grid > div { border-right: 0; }
}

/* ---------- SECTIONS ---------- */
.pb3d-section {
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: var(--paper);
}
.pb3d-section--alt { background: var(--paper-2); }
.pb3d-section--dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--bone);
  position: relative;
}
.pb3d-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.pb3d-section--dark > .pb3d-container { position: relative; z-index: 1; }
.pb3d-section--dark h2,
.pb3d-section--dark h3,
.pb3d-section--dark h4 { color: var(--white); }
.pb3d-section--dark p { color: var(--bone-2); }

.pb3d-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--s-16);
}
.pb3d-section-header--left {
  text-align: left;
  margin-inline: 0;
}
.pb3d-section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: var(--s-4);
}
.pb3d-section--dark .pb3d-section-eyebrow { color: var(--gold-3); }
.pb3d-section-header h2 {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-4);
}
.pb3d-section-header h2 span { color: var(--gold-2); }
.pb3d-section--dark .pb3d-section-header h2 span { color: var(--gold); }
.pb3d-section-header p {
  font-size: 1.1rem;
  color: var(--ink-3);
  max-width: 60ch;
  margin: 0 auto;
}
.pb3d-section-header--left p { margin-inline: 0; }
.pb3d-section--dark .pb3d-section-header p { color: var(--bone-2); }

/* ---------- SERVICES GRID ---------- */
.pb3d-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 960px) { .pb3d-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pb3d-services { grid-template-columns: 1fr; } }

.pb3d-service {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  transition: all 280ms ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pb3d-service::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}
.pb3d-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-soft);
}
.pb3d-service:hover::after { transform: scaleX(1); }

.pb3d-service-icon {
  width: 52px; height: 52px;
  background: var(--gold-soft);
  color: var(--gold-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.pb3d-service h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
  color: var(--navy);
  line-height: 1.25;
}
.pb3d-service p {
  color: var(--ink-3);
  font-size: 0.97rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--s-5);
}
.pb3d-service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pb3d-service-features li {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.88rem;
  color: var(--ink-2);
  padding: var(--s-1) 0;
}
.pb3d-service-features li::before {
  content: "";
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c9a961' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='6.5'/%3E%3Cpath d='M5 8l2 2 4-4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---------- APPROACH ---------- */
.pb3d-approach {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-16);
  align-items: start;
}
@media (max-width: 900px) {
  .pb3d-approach { grid-template-columns: 1fr; gap: var(--s-10); }
}
.pb3d-approach-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.pb3d-approach-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-5);
  padding: var(--s-5);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  transition: all 220ms ease;
}
.pb3d-approach-list li:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-md);
}
.pb3d-approach-list .step {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.pb3d-approach-list .body strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--s-1);
  color: var(--navy);
}
.pb3d-approach-list .body span {
  color: var(--ink-3);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ---------- CTA (dark) ---------- */
.pb3d-cta {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.pb3d-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 97, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.pb3d-cta > .pb3d-container { position: relative; z-index: 1; }
.pb3d-cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.pb3d-cta h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--s-5);
}
.pb3d-cta h2 span { color: var(--gold); }
.pb3d-cta p {
  color: var(--bone-2);
  font-size: 1.1rem;
  max-width: 56ch;
  margin: 0 auto var(--s-8);
}
.pb3d-cta-actions {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.pb3d-footer {
  background: var(--navy);
  color: var(--bone-2);
  padding-block: var(--s-16) var(--s-6);
}
.pb3d-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-10);
  padding-bottom: var(--s-10);
  border-bottom: 1px solid var(--rule-dark);
}
@media (max-width: 800px) {
  .pb3d-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
.pb3d-footer-brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.pb3d-footer-brand img {
  height: 44px;
  width: auto;
}
.pb3d-footer-brand strong {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
}
.pb3d-footer-tag {
  color: var(--bone-2);
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.6;
}
.pb3d-footer-grid h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-4);
}
.pb3d-footer-grid ul li { padding: var(--s-1) 0; font-size: 0.95rem; }
.pb3d-footer-grid a { color: var(--bone-2); transition: color 160ms; }
.pb3d-footer-grid a:hover { color: var(--gold); }
.pb3d-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-5);
  font-size: 0.85rem;
  color: var(--bone-2);
  flex-wrap: wrap;
  gap: var(--s-3);
}
.pb3d-footer-bottom .part107 {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--gold-3);
  font-weight: 500;
}
.pb3d-footer-bottom .part107::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

/* ---------- GENERIC CONTENT ---------- */
.pb3d-article {
  padding-block: var(--s-16);
  max-width: 72ch;
  margin: 0 auto;
}
.pb3d-article h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: var(--s-6);
}
.pb3d-article h2 {
  font-size: 1.5rem;
  margin-top: var(--s-10);
  margin-bottom: var(--s-3);
}
.pb3d-article h3 {
  font-size: 1.15rem;
  margin-top: var(--s-6);
  margin-bottom: var(--s-2);
  color: var(--gold-2);
}
.pb3d-article p { color: var(--ink-2); line-height: 1.75; }
.pb3d-article a { color: var(--gold-2); border-bottom: 1px solid transparent; transition: border-color 160ms; }
.pb3d-article a:hover { border-bottom-color: var(--gold-2); }
.pb3d-article blockquote {
  border-left: 3px solid var(--gold);
  padding-left: var(--s-5);
  margin: var(--s-6) 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
}

/* ---------- MOTION ---------- */
@media (prefers-reduced-motion: no-preference) {
  .pb3d-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
  }
  .pb3d-reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------- SERVICE CARD LINK ---------- */
.pb3d-service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-5);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-2);
  transition: color 180ms ease;
  align-self: flex-start;
}
.pb3d-service-link:hover { color: var(--navy); }
.pb3d-service-link .arrow { transition: transform 180ms ease; display: inline-block; }
.pb3d-service-link:hover .arrow { transform: translateX(3px); }

/* Service card as a CTA (inside services grid) */
.pb3d-service--cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-color: var(--navy);
  color: var(--bone);
}
.pb3d-service--cta::after { background: var(--gold); transform: scaleX(1); }
.pb3d-service--cta .pb3d-service-icon {
  background: var(--gold);
  color: var(--navy);
}
.pb3d-service--cta h3 { color: var(--white); }
.pb3d-service--cta p { color: var(--bone-2); }
.pb3d-service--cta:hover { border-color: var(--gold); }

/* ---------- WHY US GRID ---------- */
.pb3d-whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 960px) { .pb3d-whyus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pb3d-whyus-grid { grid-template-columns: 1fr; } }

.pb3d-whyus-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  transition: all 240ms ease;
  position: relative;
}
.pb3d-whyus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.pb3d-whyus-icon {
  font-size: 1.75rem;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-4);
  font-weight: 700;
}
.pb3d-whyus-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--s-2);
  color: var(--navy);
}
.pb3d-whyus-card p {
  color: var(--ink-3);
  font-size: 0.93rem;
  line-height: 1.55;
  margin: 0;
}
