/* ═══════════════════════════════════════════════════
   SMART STUDIO — msuite.css
   Mirrors GDC pattern with SMART Studio identity
═══════════════════════════════════════════════════ */

/* ─── HERO ─── */
.ms-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.ms-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0a1628 60%, #0d1f3c 100%);
}

/* Subtle grid overlay */
.ms-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,165,96,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,165,96,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 1;
  pointer-events: none;
}

/* Ambient glow orbs */
.ms-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ms-orb-1 {
  width: 560px; height: 560px;
  right: -120px; top: -80px;
  background: radial-gradient(circle, rgba(196,165,96,0.12) 0%, transparent 70%);
  animation: msOrbFloat 7s ease-in-out infinite;
}
.ms-orb-2 {
  width: 300px; height: 300px;
  left: -60px; bottom: 60px;
  background: radial-gradient(circle, rgba(13,33,69,0.6) 0%, transparent 70%);
  animation: msOrbFloat 9s ease-in-out infinite reverse;
}
@keyframes msOrbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.06); }
}

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

/* LEFT */
.ms-hero-content { flex: 1; min-width: 0; }

.ms-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(--gold-secondary);
  background: rgba(196,165,96,0.1);
  border: 1px solid rgba(196,165,96,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.ms-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: msDotPulse 2s ease-in-out infinite;
}
@keyframes msDotPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.ms-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.ms-title-accent {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ms-hero-tagline {
  font-size: 1rem;
  font-weight: 500;
  color: var(--beige-light);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.ms-hero-desc {
  font-size: 0.95rem;
  color: rgba(240,248,255,0.72);
  line-height: 1.85;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 2rem;
}

.ms-hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.ms-hero-trust {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(196,165,96,0.15);
}
.ms-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(200,184,168,0.65);
  font-weight: 400;
}
.ms-trust-item i { color: var(--gold-dim); font-size: 0.75rem; }

/* RIGHT */
.ms-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.ms-badge-wrapper {
  position: relative;
  width: 200px; height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ms-badge-glow {
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,165,96,0.3) 0%, transparent 70%);
  animation: msBadgePulse 3s ease-in-out infinite;
}
@keyframes msBadgePulse {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.1); }
}

.ms-badge {
  width: 180px; height: 180px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 24px 60px rgba(196,165,96,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
  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;
}
.ms-badge:hover {
  transform: scale(1.06) rotateZ(2deg);
  box-shadow: 0 32px 72px rgba(196,165,96,0.55);
}
.ms-badge::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 50%);
}
.ms-badge-icon {
  font-size: 2rem;
  color: var(--navy-dark);
  opacity: 0.85;
  position: relative; z-index: 1;
}
.ms-badge-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
  position: relative; z-index: 1;
}
.ms-badge-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-dark);
  opacity: 0.7;
  letter-spacing: 1px;
  position: relative; z-index: 1;
}
.ms-badge-ring {
  position: absolute; inset: -12px;
  border-radius: 50%;
  border: 1.5px dashed rgba(196,165,96,0.4);
  animation: msRingOrbit 14s linear infinite;
}
@keyframes msRingOrbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.ms-hero-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ms-stat {
  background: rgba(255,255,255,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;
}
.ms-stat:hover {
  background: rgba(196,165,96,0.1);
  border-color: rgba(196,165,96,0.4);
  transform: translateY(-4px);
}
.ms-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-secondary);
  line-height: 1;
}
.ms-stat-lbl {
  font-size: 0.7rem;
  color: rgba(240,248,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ─── PROBLEM ─── */
.ms-problem {
  padding: 90px 0;
  background: var(--white);
}
.ms-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) { .ms-problem-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .ms-problem-grid { grid-template-columns: 1fr; } }

.ms-problem-card {
  background: var(--white);
  border: 1px solid rgba(196,165,96,0.15);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 3px 18px rgba(10,22,40,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ms-problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(196,165,96,0.12);
  border-color: rgba(196,165,96,0.35);
}
.ms-problem-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(196,165,96,0.08);
  border: 1px solid rgba(196,165,96,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-primary);
  margin: 0 auto 16px;
}
.ms-problem-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.ms-problem-card p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── SOLUTION / FUNNEL ─── */
.ms-solution {
  padding: 90px 0;
  background: var(--beige-very-light);
}
.ms-funnel {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ms-funnel-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(196,165,96,0.12);
}
.ms-funnel-item:last-child { border-bottom: none; }

.ms-funnel-shape {
  display: flex; align-items: center; justify-content: center;
  height: 70px;
  border-radius: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
  transition: transform 0.3s ease;
}
.ms-funnel-item:hover .ms-funnel-shape { transform: scale(1.03); }

.ms-funnel-1 .ms-funnel-shape { background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary)); }
.ms-funnel-2 .ms-funnel-shape { background: linear-gradient(135deg, #a0a0a0, #c0c0c0); }
.ms-funnel-3 .ms-funnel-shape { background: linear-gradient(135deg, #6b7280, #9ca3af); }

.ms-funnel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.ms-funnel-desc p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 10px;
}
.ms-funnel-price {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dim);
  background: rgba(196,165,96,0.1);
  border: 1px solid rgba(196,165,96,0.25);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

@media (max-width: 700px) {
  .ms-funnel-item { grid-template-columns: 1fr; gap: 16px; }
  .ms-funnel-shape { clip-path: none; border-radius: 8px; }
}

/* ─── AI AGENTS ─── */
.ms-agents {
  padding: 90px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.ms-agents::before {
  content: '';
  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: 56px 56px;
  pointer-events: none;
}
.ms-agents .section-title { color: var(--text-light); }
.ms-agents .section-subtitle { color: rgba(200,184,168,0.6); }
.ms-agents .section-label-wrapper { background: rgba(196,165,96,0.1); border-color: rgba(196,165,96,0.2); }

.ms-agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
  position: relative; z-index: 2;
}
/* 5th card centered */
.ms-agent-card:nth-child(4) { grid-column: 1; }
@media (min-width: 901px) {
  /* .ms-agent-card:nth-child(4) { grid-column: 1; margin-left: calc(50% + 11px); } */
  .ms-agent-card:nth-child(5) { margin-left: 0; }
}
@media (max-width: 900px) { .ms-agents-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .ms-agents-grid { grid-template-columns: 1fr; } }

.ms-agent-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,165,96,0.16);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.ms-agent-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ms-agent-card:hover {
  background: rgba(196,165,96,0.07);
  border-color: rgba(196,165,96,0.38);
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(5,11,20,0.5);
}
.ms-agent-card:hover::before { opacity: 1; }

.ms-agent-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-dim);
  background: rgba(196,165,96,0.1);
  border: 1px solid rgba(196,165,96,0.22);
  padding: 3px 8px;
  border-radius: 8px;
  text-transform: uppercase;
}

.ms-agent-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  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.3rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
  transition: background 0.3s ease;
}
.ms-agent-card:hover .ms-agent-icon { background: rgba(196,165,96,0.18); }

.ms-agent-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}
.ms-agent-full {
  font-size: 0.75rem;
  color: var(--gold-dim);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
.ms-agent-desc {
  font-size: 0.82rem;
  color: rgba(200,184,168,0.65);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}
.ms-agent-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ms-agent-list li {
  font-size: 0.78rem;
  color: rgba(240,248,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ms-agent-list li i {
  color: var(--gold-primary);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ─── WHO USES ─── */
.ms-users {
  padding: 90px 0;
  background: var(--white);
}
.ms-users-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 900px) { .ms-users-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .ms-users-grid { grid-template-columns: 1fr; } }

.ms-user-card {
  background: var(--white);
  border: 1px solid rgba(196,165,96,0.13);
  border-radius: 14px;
  padding: 28px 22px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ms-user-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ms-user-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(196,165,96,0.12);
  border-color: rgba(196,165,96,0.35);
}
.ms-user-card:hover::after { opacity: 1; }

.ms-user-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(--gold-primary);
  margin-bottom: 14px;
}
.ms-user-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.ms-user-card p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── MARKET ─── */
.ms-market {
  padding: 90px 0;
  background: var(--beige-very-light);
}
.ms-market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
@media (max-width: 700px) { .ms-market-grid { grid-template-columns: 1fr; } }

.ms-market-card {
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ms-market-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(196,165,96,0.15);
}
.ms-tam {
  background: linear-gradient(135deg, var(--navy-dark), #0d1f3c);
  border: 1px solid rgba(196,165,96,0.3);
}
.ms-sam {
  background: linear-gradient(135deg, #0d2145, #1a2e5a);
  border: 1px solid rgba(196,165,96,0.2);
}
.ms-som {
  background: linear-gradient(135deg, #0a1628, #162240);
  border: 1px solid rgba(196,165,96,0.15);
}

.ms-market-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 8px;
}
.ms-market-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-secondary);
  line-height: 1;
  margin-bottom: 6px;
}
.ms-market-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(240,248,255,0.7);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ms-market-card p {
  font-size: 0.8rem;
  color: rgba(200,184,168,0.55);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── OPERATING MODEL ─── */
.ms-model {
  padding: 90px 0;
  background: var(--white);
}
.ms-model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) { .ms-model-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .ms-model-grid { grid-template-columns: 1fr; } }

.ms-model-card {
  background: var(--beige-very-light);
  border: 1px solid rgba(196,165,96,0.14);
  border-radius: 14px;
  padding: 26px 20px;
  transition: all 0.3s ease;
}
.ms-model-card:hover {
  background: rgba(196,165,96,0.06);
  border-color: rgba(196,165,96,0.35);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(196,165,96,0.1);
}
.ms-model-icon {
  width: 46px; height: 46px;
  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(--gold-primary);
  margin-bottom: 14px;
}
.ms-model-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.ms-model-card p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CTA ─── */
.ms-cta {
  padding: 100px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ms-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;
}
.ms-cta-inner {
  position: relative; z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.ms-cta .section-title { color: var(--text-light); }
.ms-cta .section-subtitle { color: rgba(200,184,168,0.6); }

.ms-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.2);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 32px;
  text-align: left;
}
.ms-cta-quote i {
  color: var(--gold-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ms-cta-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(240,248,255,0.82);
  line-height: 1.6;
  margin: 0;
}

.ms-cta-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 990px) {
  .ms-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .ms-hero-visual { align-self: center; }
}

@media (max-width: 560px) {
  .ms-hero-title { font-size: 2.6rem; }
  .ms-hero-ctas { flex-direction: column; }
  .ms-hero-trust { gap: 1rem; }
}

/* ─── SHARED OVERRIDES for dark sections ─── */
.ms-agents .section-label-wrapper .section-label,
.ms-agents .section-label-wrapper .section-label-icon {
  color: var(--gold-primary);
}
.ms-cta .section-label-wrapper {
  background: rgba(196,165,96,0.1);
  border-color: rgba(196,165,96,0.2);
}
.ms-cta .section-label-wrapper .section-label,
.ms-cta .section-label-wrapper .section-label-icon {
  color: var(--gold-primary);
}
/* ═══════════════════════════════════════════════════
   HERO DIAGRAM IMAGE (PDF page 7)
═══════════════════════════════════════════════════ */
.ms-hero-diagram-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.ms-diagram-glow {
  position: absolute;
  inset: -30px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(196,165,96,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: msGlowPulse 4s ease-in-out infinite;
}
@keyframes msGlowPulse {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}
.ms-hero-diagram-img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  border: 1px solid rgba(196,165,96,0.3);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(196,165,96,0.1);
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ms-hero-diagram-img:hover {
  transform: scale(1.02);
  box-shadow: 0 32px 100px rgba(0,0,0,0.7), 0 0 40px rgba(196,165,96,0.15);
}
.ms-hero-stats-below {
  position: static !important;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════
   PDF IMAGE SHOWCASE SECTION
═══════════════════════════════════════════════════ */
.ms-pdf-showcase {
  padding: 90px 0;
  background: var(--navy-dark, #050b14);
  position: relative;
  overflow: hidden;
}
.ms-pdf-showcase::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: 70px 70px;
  pointer-events: none;
}
.ms-pdf-showcase .section-container { position: relative; z-index: 2; }
.ms-pdf-showcase .section-title { color: var(--text-light, #f0f8ff); }
.ms-pdf-showcase .section-subtitle { color: rgba(210,195,160,0.65); max-width: 620px; margin-bottom: 48px; }

.ms-pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ms-pdf-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(196,165,96,0.2);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: all 0.35s ease;
}
.ms-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);
}
.ms-pdf-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.ms-pdf-card:hover img { transform: scale(1.03); }
.ms-pdf-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;
}
.ms-pdf-label i { color: var(--gold-primary, #c4a560); }

@media (max-width: 768px) {
  .ms-pdf-grid { grid-template-columns: 1fr; }
  .ms-hero-diagram-img { max-width: 100%; }
}
