/* ============================================================
   PRR — HOMEPAGE CSS
   Compiled via: npx tailwindcss -i resources/css/app.css -o public/css/app.css --watch
   ============================================================ */

/* ── Google Fonts are loaded in app.blade.php <head> ── */

:root {
  --navy-950: #020C1B;
  --navy-900: #0A1628;
  --navy-800: #0F2040;
  --navy-750: #142850;
  --navy-700: #1A3060;
  --blue-700: #1E3A8A;
  --blue-600: #2563EB;
  --blue-500: #3B82F6;
  --blue-400: #60A5FA;
  --blue-300: #93C5FD;
  --blue-200: #BFDBFE;
  --blue-100: #DBEAFE;
  --blue-50: #EFF6FF;
  --surface-page: #F7F9FF;
  --surface-white: #FFFFFF;
  --surface-subtle: #EEF2FF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-white: #FFFFFF;
  --text-white-dim: rgba(255, 255, 255, 0.72);
  --text-white-muted: rgba(255, 255, 255, 0.38);
  --border-default: #E2E8F0;
  --border-subtle: #F1F5F9;
  --border-navy: rgba(255, 255, 255, 0.07);
  --border-navy-blue: rgba(59, 130, 246, 0.25);
  --green: #16A34A;
  --green-bg: #F0FDF4;
  --green-bdr: #BBF7D0;
  --amber: #D97706;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--surface-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--navy-900);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-700);
  border-radius: 5px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 70px;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: none;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--blue-300);
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-white-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white-dim);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blue-400);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav-ghost {
  padding: 8px 18px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white-dim);
  transition: all 0.2s;
}

.btn-nav-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--text-white);
}

.btn-nav-primary {
  padding: 9px 20px;
  background: var(--blue-600);
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-nav-primary:hover {
  background: var(--blue-500);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-white-dim);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 499;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(24px);
  padding: 20px 28px 28px;
  border-bottom: 1px solid var(--border-navy);
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  padding: 13px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white-dim);
  border-bottom: 1px solid var(--border-navy);
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--text-white);
}

/* ── Core animation keyframes ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes hbFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hbDrift1 {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes hbDrift2 {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

@keyframes hbDrift3 {

  0%,
  100% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(8px);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.d1 {
  transition-delay: 0s;
}

.d2 {
  transition-delay: 0.1s;
}

.d3 {
  transition-delay: 0.2s;
}

.d4 {
  transition-delay: 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy-900);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 52px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(59, 130, 246, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 40%, black 0%, transparent 75%);
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.13) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(10, 22, 40, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  opacity: 0;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hb1 {
  top: 26%;
  left: 1.5%;
  animation: hbFade 0.6s ease 0.9s forwards, hbDrift1 7s ease-in-out 1.5s infinite;
}

.hb2 {
  top: 20%;
  right: 1.5%;
  animation: hbFade 0.6s ease 1.1s forwards, hbDrift2 8s ease-in-out 1.8s infinite;
}

.hb3 {
  top: 48%;
  left: 1%;
  animation: hbFade 0.6s ease 1.3s forwards, hbDrift3 6.5s ease-in-out 1.9s infinite;
}

.hb4 {
  top: 44%;
  right: 1%;
  animation: hbFade 0.6s ease 1.0s forwards, hbDrift1 7.5s ease-in-out 1.6s infinite;
}

.hb5 {
  bottom: 28%;
  left: 1.5%;
  animation: hbFade 0.6s ease 1.4s forwards, hbDrift2 9s ease-in-out 2s infinite;
}

.hb6 {
  bottom: 30%;
  right: 1.5%;
  animation: hbFade 0.6s ease 1.2s forwards, hbDrift3 7s ease-in-out 1.7s infinite;
}

.hero-search-wrap {
  width: 100%;
  max-width: 640px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-search-box {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(59, 130, 246, 0.45);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(12px);
}

.hero-search-box:focus-within {
  border-color: rgba(59, 130, 246, 0.7);
  background: rgba(10, 22, 40, 0.7);
}

.hero-search-icon {
  color: var(--blue-400);
  flex-shrink: 0;
  margin-left: 16px;
}

.hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 14px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  min-width: 0;
}

.hero-search-input::placeholder {
  color: var(--text-white-muted);
}

.hero-search-btn {
  background: var(--blue-600);
  padding: 16px 28px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0 8px 8px 0;
}

.hero-search-btn:hover {
  background: var(--blue-500);
}

.hero-search-hints {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

.hero-hint-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-white-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.hero-hint-pill {
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: var(--text-white-dim);
  transition: all 0.15s;
  cursor: pointer;
}

.hero-hint-pill:hover {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(59, 130, 246, 0.35);
  color: var(--blue-300);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 18px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 100px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
}

.hero-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--blue-400);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-400);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.2vw, 96px);
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.25s forwards;
}

.hero-title-line1 {
  display: block;
  color: var(--text-white);
}

.hero-title-line2 {
  display: block;
  color: var(--blue-400);
  font-style: italic;
}

.hero-title-line3 {
  display: block;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
  color: transparent;
  margin-top: 6px;
}

.hero-subtitle {
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--text-white-dim);
  max-width: 540px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.52s forwards;
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  background: var(--blue-600);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  transition: all 0.2s;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
}

.btn-hero-primary:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
}

.btn-hero-primary svg {
  transition: transform 0.2s;
}

.btn-hero-primary:hover svg {
  transform: translateX(3px);
}

.btn-hero-ghost {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white-dim);
  transition: all 0.2s;
}

.btn-hero-ghost:hover {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--navy-750);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  overflow: hidden;
  height: 46px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  animation: ticker 60s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  white-space: nowrap;
}

.ticker-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-white-muted);
}

.ticker-value {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
}

.ticker-badge {
  padding: 2px 8px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker-badge-new {
  background: rgba(37, 99, 235, 0.25);
  color: var(--blue-300);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.ticker-badge-hot {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.ticker-badge-updated {
  background: rgba(22, 163, 74, 0.2);
  color: #86efac;
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.ticker-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ============================================================
   FEATURED REPORTS
   ============================================================ */
.featured {
  background: var(--surface-subtle);
  border-bottom: 1px solid var(--border-default);
  padding: 80px 48px;
}

.featured-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

.feat-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}

.feat-eyebrow-line {
  width: 30px;
  height: 1.5px;
  background: var(--blue-500);
}

.feat-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--blue-600);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.feat-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.12;
}

.feat-section-title em {
  font-style: italic;
  color: var(--blue-600);
}

.feat-view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--blue-700);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--blue-200);
  border-radius: 6px;
  padding: 9px 18px;
  background: rgba(37, 99, 235, 0.04);
  transition: all 0.2s;
  white-space: nowrap;
}

.feat-view-all:hover {
  color: var(--blue-600);
  border-color: var(--blue-500);
  background: rgba(37, 99, 235, 0.08);
}

.feat-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ============================================================
   REPORT CARDS (shared light + dark variants)
   ============================================================ */
.report-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.report-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

.report-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
  z-index: 2;
}

.report-card:hover .report-card-bar {
  transform: scaleX(1);
}

.rc-cover {
  height: 160px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-750) 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.rc-cover-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.rc-cover-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.rc-cover-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
  text-align: center;
}

.rc-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rc-region {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 11px;
}

.rc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-500);
}

.rc-region-text {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rc-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.15s;
  flex: 1;
}

.report-card:hover .rc-title {
  color: var(--blue-700);
}

.rc-excerpt {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.rc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.rc-tag {
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-100);
}

.rc-link {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
  background: none;
}

.report-card:hover .rc-link {
  color: var(--blue-600);
}

/* Photo cover variant */
.rc-cover-photo {
  padding: 0;
}

.rc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55) saturate(0.7);
  transition: transform 0.5s var(--ease-out), filter 0.3s;
}

.report-card:hover .rc-photo {
  transform: scale(1.05);
  filter: brightness(0.68) saturate(0.85);
}

.rc-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.88) 100%);
}

.rc-cover-photo .rc-cover-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  z-index: 2;
}

.rc-cover-top-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.rc-cover-tag-pill {
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.82);
  color: #fff;
  backdrop-filter: blur(6px);
}

.rc-tag-featured {
  background: rgba(22, 163, 74, 0.82);
}

/* ============================================================
   REPORTS SECTION
   ============================================================ */
.reports-section {
  background: var(--surface-page);
  padding: 88px 48px;
}

.reports-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}

.section-eyebrow-line {
  width: 30px;
  height: 1.5px;
  background: var(--blue-600);
}

.section-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--blue-600);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.12;
}

.section-title em {
  font-style: italic;
  color: var(--blue-600);
}

.section-view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--blue-700);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--blue-200);
  border-radius: 6px;
  padding: 9px 18px;
  background: rgba(37, 99, 235, 0.04);
  transition: all 0.2s;
  white-space: nowrap;
}

.section-view-all:hover {
  color: var(--blue-600);
  border-color: var(--blue-500);
  background: rgba(37, 99, 235, 0.08);
}

.section-view-all svg {
  transition: transform 0.2s;
}

.section-view-all:hover svg {
  transform: translateX(3px);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reports-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================================
   PRESS RELEASES
   ============================================================ */
.press-section {
  background: var(--surface-white);
  padding: 88px 48px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.press-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.press-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
}

.press-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

.press-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
  z-index: 2;
}

.press-card:hover .press-card-bar {
  transform: scaleX(1);
}

.press-card-cover {
  height: 160px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.press-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65) saturate(0.7);
  transition: transform 0.5s var(--ease-out), filter 0.3s;
}

.press-card:hover .press-card-cover img {
  transform: scale(1.05);
  filter: brightness(0.75) saturate(0.85);
}

.press-card-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.08) 0%, rgba(10, 22, 40, 0.75) 100%);
}

.press-card-cover-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.82);
  color: #fff;
  backdrop-filter: blur(6px);
}

.press-card-cover-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

.press-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.press-date {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.press-date-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue-400);
}

.press-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.28;
  color: var(--text-primary);
  margin-bottom: 10px;
  transition: color 0.15s;
  flex: 1;
}

.press-card:hover .press-title {
  color: var(--blue-700);
}

.press-excerpt {
  font-size: 13px;
  line-height: 1.68;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.press-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.press-wire {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-muted);
}

.press-wire-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.press-read {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
}

.press-card:hover .press-read {
  color: var(--blue-600);
}

/* ============================================================
   WHY PRR
   ============================================================ */
.why-section {
  background: var(--navy-900);
  padding: 96px 52px;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--blue-400);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-400);
}

.why-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.12;
  margin-bottom: 14px;
}

.why-title em {
  font-style: italic;
  color: var(--blue-300);
}

.why-subtitle {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-white-dim);
  max-width: 520px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.why-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 20px;
}

.why-grid-bottom>.why-card {
  min-height: 280px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.2s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(59, 130, 246, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(2, 12, 27, 0.5);
}

.why-card-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  letter-spacing: -0.03em;
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.25;
}

.why-card-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-white-dim);
}

/* why-card-featured — the image background card (card 05) */
.why-card-featured,
.why-featured-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.why-card-featured:hover,
.why-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(2, 12, 27, 0.4);
}

.why-card-featured::after,
.why-featured-card::after {
  display: none;
}

.why-feat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.4);
}

.why-feat-content {
  position: relative;
  z-index: 1;
  padding: 36px 32px 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.why-feat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.why-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.why-feat-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.25;
}

.why-feat-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-white-muted);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.howitworks-section {
  background: var(--surface-subtle);
  padding: 96px 52px;
}

.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.howitworks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.howitworks-visual {
  position: relative;
}

.howitworks-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-default);
  box-shadow: 0 20px 60px rgba(15, 32, 64, 0.12);
}

.howitworks-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.howitworks-img-wrap:hover img {
  transform: scale(1.03);
}

.howitworks-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy-900);
  border: 1px solid var(--border-navy-blue);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(2, 12, 27, 0.4);
}

.howitworks-badge-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-300);
  line-height: 1;
}

.howitworks-badge-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-white-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
}

.howitworks-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--blue-600);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.howitworks-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-500);
}

.howitworks-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.12;
  margin-bottom: 16px;
}

.howitworks-title em {
  font-style: italic;
  color: var(--blue-600);
}

.howitworks-desc {
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.howitworks-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.howitworks-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.howitworks-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.2s;
}

.howitworks-point:hover .howitworks-point-icon {
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.howitworks-point-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.howitworks-point-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section {
  background: var(--surface-page);
  padding: 72px 52px;
}

.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}

.industry-pill {
  padding: 10px 20px;
  border-radius: 40px;
  background: var(--surface-white);
  border: 1.5px solid var(--border-default);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 8px;
}

.industry-pill:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
  color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.industry-icon {
  font-size: 16px;
}

/* ============================================================
   TRUST — Infinite Logo Marquee
   ============================================================ */
.trust-section {
  background: var(--surface-white);
  padding: 44px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}

.trust-marquee-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.trust-marquee {
  display: flex;
  align-items: center;
  animation: logoScroll 36s linear infinite;
  width: max-content;
}

.trust-marquee:hover {
  animation-play-state: paused;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  flex-shrink: 0;
  opacity: 0.35;
  transition: opacity 0.2s;
  cursor: default;
}

.trust-logo-item:hover {
  opacity: 0.55;
}

.trust-logo-sep {
  width: 1px;
  height: 20px;
  background: var(--border-default);
  flex-shrink: 0;
  opacity: 0.5;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   WHAT'S INSIDE
   ============================================================ */
.whats-inside-section {
  background: var(--navy-900);
  padding: 96px 52px;
  position: relative;
  overflow: hidden;
}

.whats-inside-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
}

.whats-inside-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.whats-inside-header {
  text-align: center;
  margin-bottom: 56px;
}

.whats-inside-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--blue-400);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wi-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-400);
}

.whats-inside-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.12;
  margin-bottom: 14px;
}

.whats-inside-title em {
  font-style: italic;
  color: var(--blue-300);
}

.whats-inside-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-white-dim);
  max-width: 520px;
  margin: 0 auto;
}

.wi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.wi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.2s var(--ease-out);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.wi-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(59, 130, 246, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(2, 12, 27, 0.5);
}

.wi-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.wi-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.25;
}

.wi-card-desc {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-white-muted);
}

.wi-card-tag {
  display: inline-flex;
  margin-top: 16px;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  background: rgba(37, 99, 235, 0.2);
  color: var(--blue-300);
  letter-spacing: 0.08em;
}

/* ============================================================
   REVIEWS / TESTIMONIALS CAROUSEL
   ============================================================ */
.reviews-section {
  background: var(--surface-page);
  padding: 96px 52px;
  position: relative;
  overflow: hidden;
}

.reviews-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.reviews-header {
  margin-bottom: 52px;
}

.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--blue-600);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.reviews-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-600);
  display: inline-block;
}

.reviews-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.12;
  margin-bottom: 14px;
}

.reviews-title em {
  font-style: italic;
  color: var(--blue-600);
}

.reviews-subtitle {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

/* Carousel */
.review-carousel {
  position: relative;
  margin-bottom: 52px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}

.rc-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
}

.rc-track:active {
  cursor: grabbing;
}

.rc-track .tc-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  user-select: none;
}

.rc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.rc-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface-white);
  border: 1.5px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 32, 64, 0.08);
}

.rc-btn:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.rc-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.rc-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-default);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  padding: 0;
}

.rc-dot.active {
  background: var(--blue-600);
  width: 22px;
  border-radius: 100px;
}

.rc-dot:hover {
  background: var(--blue-300);
}

.rc-progress {
  height: 2px;
  background: var(--border-default);
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
}

.rc-progress-bar {
  height: 100%;
  background: var(--blue-600);
  border-radius: 2px;
  width: 0%;
  transition: width linear;
}

/* Review cards */
.tc-card {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.06);
}

.tc-card:hover {
  background: #fff;
  border-color: var(--blue-200);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.1);
}

.tc-card-featured {
  background: rgba(37, 99, 235, 0.04);
  border-color: rgba(37, 99, 235, 0.18);
}

.tc-card-featured:hover {
  background: rgba(37, 99, 235, 0.07);
}

.tc-qm {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 0.7;
  color: var(--blue-200);
  margin-bottom: 18px;
  display: block;
  font-weight: 700;
}

.tc-body {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 22px;
}

.tc-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.tc-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-300);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.tc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.tc-role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.tc-meta {
  flex: 1;
}

.tc-stars {
  margin-left: auto;
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* Stats bar */
.reviews-statsbar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  border: none;
  border-radius: 16px;
  padding: 48px 0;
  flex-wrap: wrap;
  box-shadow: 0 8px 48px rgba(10, 22, 40, 0.14);
  margin-top: 52px;
}

.rsb-stat {
  text-align: center;
  padding: 0 52px;
}

.rsb-num {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  color: var(--blue-300);
  line-height: 1;
  letter-spacing: -0.02em;
}

.rsb-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 10px;
}

.rsb-div {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ============================================================
   METHODOLOGY
   ============================================================ */
.method-section {
  background: var(--surface-subtle);
  padding: 96px 52px;
  border-top: 1px solid var(--border-default);
}

.method-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.method-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.2s var(--ease-out);
  overflow: hidden;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.method-card:hover::before {
  transform: scaleX(1);
}

.method-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

.method-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: rgba(37, 99, 235, 0.1);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.method-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.method-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ============================================================
   CTA / NEWSLETTER
   ============================================================ */
.cta-section {
  background: var(--navy-800);
  padding: 96px 52px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--blue-400);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--blue-400);
  opacity: 0.4;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.cta-title em {
  font-style: italic;
  color: var(--blue-300);
}

.cta-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-white-dim);
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  background: rgba(255, 255, 255, 0.06);
  max-width: 480px;
  margin: 0 auto;
  transition: border-color 0.2s;
}

.newsletter-form:focus-within {
  border-color: rgba(59, 130, 246, 0.6);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.newsletter-input::placeholder {
  color: var(--text-white-muted);
}

.newsletter-btn {
  background: var(--blue-600);
  padding: 14px 24px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-left: 1.5px solid rgba(59, 130, 246, 0.3);
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: var(--blue-500);
}

.cta-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-white-muted);
  letter-spacing: 0.1em;
  margin-top: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-950);
  padding: 64px 52px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-300);
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-white-muted);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-white-dim);
  transition: all 0.2s;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.4);
  color: var(--blue-300);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-white-muted);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue-300);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-white-muted);
  letter-spacing: 0.08em;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-white-muted);
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--blue-300);
}

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */
@media(max-width:900px) {

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .navbar {
    padding: 0 20px;
  }
}

@media(max-width:1024px) {
  .hero {
    padding: 110px 40px 80px;
  }

  .hero-badge {
    display: none;
  }

  .featured {
    padding: 64px 28px;
  }

  .feat-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reports-section {
    padding: 64px 28px;
  }

  .reports-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-section {
    padding: 64px 28px;
  }

  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .howitworks-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .howitworks-badge {
    right: 20px;
    bottom: 20px;
  }

  .wi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-section,
  .howitworks-section,
  .whats-inside-section {
    padding: 72px 28px;
  }

  .reviews-section {
    padding: 72px 28px;
  }

  .rsb-stat {
    padding: 0 24px;
  }

  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-section {
    padding: 72px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer {
    padding: 52px 28px 28px;
  }

  .rc-track .tc-card {
    flex: 0 0 calc(50% - 10px);
  }
}

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

  .hero-title {
    font-size: clamp(40px, 10vw, 64px);
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-search-wrap {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
  }

  .why-grid,
  .why-grid-bottom {
    grid-template-columns: 1fr;
  }

  .wi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-section,
  .howitworks-section,
  .whats-inside-section {
    padding: 56px 16px;
  }

  .howitworks-grid {
    gap: 32px;
  }

  .howitworks-badge {
    display: none;
  }

  .reviews-section {
    padding: 60px 20px;
  }

  .rsb-stat {
    padding: 16px 20px;
  }

  .rsb-div {
    display: none;
  }

  .reviews-statsbar {
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
    border: none;
    background: none;
    gap: 10px;
  }

  .newsletter-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 14px 18px;
    text-align: center;
  }

  .newsletter-btn {
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 12px;
  }

  .cta-section {
    padding: 72px 24px;
  }

  .ticker-item {
    gap: 14px;
    padding: 0 20px;
    font-size: 9px;
  }
}

@media(max-width:640px) {
  .featured {
    padding: 52px 16px;
  }

  .feat-cards-grid {
    grid-template-columns: 1fr;
  }

  .reports-section {
    padding: 52px 16px;
  }

  .reports-grid-4 {
    grid-template-columns: 1fr;
  }

  .feat-section-title,
  .section-title {
    font-size: clamp(22px, 7vw, 32px);
  }

  .featured-header,
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .press-section {
    padding: 52px 16px;
  }

  .press-grid {
    grid-template-columns: 1fr;
  }

  .industries-section {
    padding: 48px 16px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-section {
    padding: 56px 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 44px 16px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cta-section {
    padding: 60px 16px;
  }
}

@media(max-width:580px) {
  .rc-track .tc-card {
    flex: 0 0 100%;
  }

  .review-carousel {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media(max-width:480px) {
  .hero {
    padding: 88px 16px 64px;
  }

  .hero-title {
    font-size: clamp(34px, 11vw, 52px);
  }

  .hero-title-line3 {
    -webkit-text-stroke-width: 1px;
  }

  .hero-search-hints {
    gap: 6px;
  }

  .hero-hint-pill {
    font-size: 9px;
    padding: 3px 10px;
  }

  .wi-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    gap: 8px;
  }
}

@media(max-width:400px) {
  .industries-grid {
    justify-content: flex-start;
  }
}

/* ============================================================
   PRR — Reports Listing Page Styles
   resources/css/reports.css
   Imported via @import in resources/css/app.css
   ============================================================ */

/* ══ HERO ══ */
.reports-hero {
  background: var(--navy-900);
  padding: 126px 52px 52px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.reports-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.rh-glow {
  position: absolute;
  top: -80px;
  right: 8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.13) 0%, transparent 68%);
  pointer-events: none;
}

.rh-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.rh-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.rh-eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: var(--blue-400);
}

.rh-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.rh-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 14px;
}

.rh-title em {
  font-style: italic;
  color: var(--blue-300);
}

.rh-sub {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-white-dim);
  max-width: 500px;
}

.rh-stats {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
  align-items: center;
}

.rh-stat {
  text-align: center;
}

.rh-stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--blue-300);
  line-height: 1;
  letter-spacing: -0.02em;
}

.rh-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-white-muted);
  margin-top: 5px;
}

.rh-stat-div {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  height: 40px;
}

/* ══ FILTER BAR ══ */
.filter-bar {
  position: sticky;
  top: 70px;
  z-index: 400;
  background: var(--surface-white);
  border-bottom: 1px solid var(--border-default);
  box-shadow: 0 2px 12px rgba(15, 32, 64, 0.07);
}

.filter-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0 0 52px;
  display: flex;
  align-items: center;
  height: 58px;
}

/* Dropdown shell */
.fb-drop {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fb-drop-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  border-right: 1px solid var(--border-default);
}

.fb-drop-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.fb-drop-val {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fb-drop-badge {
  background: var(--blue-600);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  padding: 1px 7px;
  display: none;
}

.fb-drop-badge.on {
  display: inline-block;
}

.fb-drop-arrow {
  color: var(--text-muted);
  display: flex;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.fb-drop.open .fb-drop-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.fb-drop-panel {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(15, 32, 64, 0.12);
  padding: 16px;
  min-width: 480px;
  display: none;
  z-index: 700;
}

.fb-drop.open .fb-drop-panel {
  display: block;
}

.fb-panel-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.fb-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fb-chip-grid-sm {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fb-chip {
  padding: 7px 14px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--surface-subtle);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.13s;
  white-space: nowrap;
}

.fb-chip:hover {
  background: var(--blue-50);
  color: var(--blue-700);
  border-color: var(--blue-100);
}

.fb-chip.active {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}

.fb-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.fb-panel-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.fb-panel-clear {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: none;
  border: none;
  cursor: pointer;
}

/* Sort */
.fb-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 100%;
  flex-shrink: 0;
  border-right: 1px solid var(--border-default);
}

.fb-sort-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.fb-sort-sel {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  letter-spacing: 0.04em;
}

/* Search */
.fb-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 52px 0 18px;
  height: 100%;
  border-left: 1px solid var(--border-default);
  transition: background 0.15s;
}

.fb-search:focus-within {
  background: var(--blue-50);
}

.fb-search-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.fb-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  width: 100%;
}

.fb-search-input::placeholder {
  color: var(--text-muted);
  font-size: 14px;
}

.fb-search-x {
  background: none;
  border: none;
  color: var(--text-muted);
  display: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
  flex-shrink: 0;
}

.fb-search-x.on {
  display: block;
}

/* Active tags */
.atags-bar {
  background: var(--surface-subtle);
  border-bottom: 1px solid var(--border-default);
  padding: 7px 52px;
  display: none;
}

.atags-bar.on {
  display: flex;
}

.atags-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.atag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px 3px 11px;
  border-radius: 5px;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.atag-x {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.14s;
}

.atag-x:hover {
  background: rgba(255, 255, 255, 0.32);
}

.atag-clear {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 4px;
}

/* ══ MAIN ══ */
.reports-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 52px 80px;
}

.rsl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.rsl-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rsl-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
}

.rsl-title em {
  font-style: italic;
  color: var(--blue-600);
}

.rsl-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--surface-subtle);
  padding: 3px 10px;
  border-radius: 4px;
}

.view-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.view-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: transparent;
  border: 1.5px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.14s;
  color: var(--text-muted);
}

.view-btn.active,
.view-btn:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}

/* ══ GRID VIEW — 4 col ══ */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.report-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.report-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.10);
  transform: translateY(-3px);
}

.rc-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
  z-index: 2;
}

.report-card:hover .rc-bar {
  transform: scaleX(1);
}

/* Cover */
.rc-cover {
  height: 150px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-750));
}

.rc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) saturate(0.7);
  transition: transform 0.5s var(--ease-out), filter 0.3s;
}

.report-card:hover .rc-photo {
  transform: scale(1.05);
  filter: brightness(0.66) saturate(0.85);
}

.rc-cov-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.rc-cov-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.22) 0%, transparent 70%);
}

.rc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.05) 0%, rgba(10, 22, 40, 0.82) 100%);
}

.rc-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
  z-index: 2;
}

.rc-pill {
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.82);
  color: #fff;
  backdrop-filter: blur(6px);
}

.rc-pill-hot {
  background: rgba(217, 119, 6, 0.88);
}

.rc-pill-feat {
  background: rgba(22, 163, 74, 0.82);
}

.rc-cov-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.3;
}

.rc-no-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
  text-align: center;
  z-index: 2;
}

/* Card body — grid mode */
.rc-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rc-body-l {
  display: contents;
}

.rc-region {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.rc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-500);
  flex-shrink: 0;
}

.rc-region-text {
  font-family: var(--font-mono);
  font-size: 8.5px;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rc-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 7px;
  transition: color 0.15s;
  flex: 1;
}

.report-card:hover .rc-title {
  color: var(--blue-700);
}

.rc-excerpt {
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.rc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.rc-tag {
  padding: 2px 9px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-100);
}

.rc-link {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
  background: none;
  text-decoration: none;
}

.report-card:hover .rc-link {
  color: var(--blue-600);
}

.rc-body-r {
  display: none;
}

/* ══ LIST VIEW ══ */
.reports-grid.list-view {
  grid-template-columns: 1fr;
  gap: 10px;
}

.reports-grid.list-view .report-card {
  flex-direction: row;
  min-height: 130px;
  transform: none !important;
}

.reports-grid.list-view .report-card:hover {
  transform: none !important;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.reports-grid.list-view .rc-cover {
  width: 200px;
  min-height: 130px;
  height: auto;
  flex-shrink: 0;
  border-radius: 0;
}

.reports-grid.list-view .rc-body {
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  gap: 0;
}

/* In list mode, override rc-body-l from display:contents back to flex */
.reports-grid.list-view .rc-body-l {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 16px 22px;
}

.reports-grid.list-view .rc-body-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  width: 180px;
  padding: 16px 20px;
  border-left: 1px solid var(--border-subtle);
}

.reports-grid.list-view .rc-footer {
  display: none;
}

.reports-grid.list-view .rc-title {
  font-size: 15.5px;
  flex: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}

.reports-grid.list-view .rc-excerpt {
  margin-bottom: 0;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reports-grid.list-view .rc-region {
  margin-bottom: 5px;
}

/* ══ NO RESULTS ══ */
.no-results {
  text-align: center;
  padding: 80px 20px;
  display: none;
}

.no-results.on {
  display: block;
}

.no-results-icon {
  font-size: 42px;
  margin-bottom: 16px;
  opacity: 0.32;
}

.no-results-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 9px;
}

.no-results-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.no-results-btn {
  padding: 10px 24px;
  border-radius: 7px;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ══ PAGINATION ══ */
.pg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 52px;
  gap: 3px;
  flex-wrap: wrap;
}

.pg-info {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-right: 14px;
  white-space: nowrap;
}

.pg-nav {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-white);
  border: 1.5px solid var(--border-default);
  cursor: pointer;
  transition: all 0.14s;
  color: var(--text-secondary);
}

.pg-nav:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}

.pg-nav.off {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.pg-num {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface-white);
  border: 1.5px solid var(--border-default);
  cursor: pointer;
  transition: all 0.14s;
}

.pg-num:hover {
  background: var(--surface-subtle);
  border-color: var(--blue-200);
  color: var(--blue-600);
}

.pg-num.active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}

.pg-dots {
  width: 28px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.pg-per {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pg-per-sel {
  border: 1.5px solid var(--border-default);
  border-radius: 6px;
  padding: 5px 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-primary);
  background: var(--surface-white);
  outline: none;
  cursor: pointer;
}

/* ══ REVEAL ══ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.48s var(--ease-out), transform 0.48s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0s;
}

.d2 {
  transition-delay: 0.05s;
}

.d3 {
  transition-delay: 0.10s;
}

.d4 {
  transition-delay: 0.15s;
}

.d5 {
  transition-delay: 0.20s;
}

.d6 {
  transition-delay: 0.25s;
}

.d7 {
  transition-delay: 0.30s;
}

.d8 {
  transition-delay: 0.35s;
}

/* ══ RESPONSIVE ══ */
@media(max-width:1200px) {
  .reports-grid:not(.list-view) {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:900px) {
  .reports-grid:not(.list-view) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {
  .reports-hero {
    padding: 106px 24px 44px;
  }

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

  .rh-stats {
    display: none;
  }

  .filter-bar-inner {
    padding: 0 16px;
    overflow-x: auto;
  }

  .fb-search {
    padding-right: 16px;
  }

  .atags-bar {
    padding: 7px 16px;
  }

  .reports-main {
    padding: 28px 24px 60px;
  }

  .reports-grid:not(.list-view) {
    grid-template-columns: repeat(2, 1fr);
  }

  .reports-grid.list-view .rc-cover {
    width: 130px;
  }

  .pg-info {
    display: none;
  }
}

@media(max-width:480px) {
  .reports-grid:not(.list-view) {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════
   REPORT DETAIL PAGE — report-detail.css
   ═══════════════════════════════════════════ */

/* ── HERO ── */
.rd-hero {
  background: var(--navy-900);
  padding: 110px 52px 0;
  position: relative;
  overflow: hidden;
}

.rd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.rd-hero-glow {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.rd-hero-glow2 {
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(96, 165, 250, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.rd-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.rd-hero-content {
  max-width: 780px;
}

/* Breadcrumb */
.rd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.rd-bc-item {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-white-muted);
}

.rd-bc-item a {
  color: var(--text-white-muted);
  transition: color 0.15s;
}

.rd-bc-item a:hover {
  color: var(--blue-300);
}

.rd-bc-sep {
  color: var(--text-white-muted);
  font-size: 10px;
  opacity: 0.4;
}

.rd-bc-item.current {
  color: var(--blue-300);
}

/* Tags */
.rd-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.rd-tag {
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rd-tag-ind {
  background: rgba(37, 99, 235, 0.22);
  color: var(--blue-300);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.rd-tag-reg {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-white-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rd-tag-new {
  background: rgba(22, 163, 74, 0.2);
  color: #4ade80;
  border: 1px solid rgba(22, 163, 74, 0.3);
}

/* Title */
.rd-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 18px;
}

.rd-title em {
  font-style: italic;
  color: var(--blue-300);
}

.rd-excerpt {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-white-dim);
  max-width: 640px;
  margin-bottom: 28px;
}

/* Stats strip */
.rd-stats-row {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}

.rd-stat {
  padding: 14px 24px;
  text-align: center;
}

.rd-stat+.rd-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.rd-stat-val {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-300);
  letter-spacing: 0.04em;
}

.rd-stat-lbl {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-white-muted);
  margin-top: 3px;
}

/* Action buttons */
.rd-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.rd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--blue-600);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.18s;
  border: none;
}

.rd-btn-primary:hover {
  background: var(--blue-500);
}

.rd-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white-dim);
  transition: all 0.18s;
}

.rd-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-white);
}

.rd-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  border: 1.5px solid rgba(37, 99, 235, 0.4);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-300);
  transition: all 0.18s;
}

.rd-btn-outline:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.6);
}

/* ── TAB STRIP — sticky on scroll ── */
.rd-tab-strip {
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: sticky;
  top: 70px;
  z-index: 400;
  transition: box-shadow 0.2s;
}

.rd-tab-strip.is-stuck {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.rd-tabs {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
}

.rd-tab {
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white-muted);
  border-bottom: 2px solid transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  transition: all 0.18s;
  background: transparent;
  white-space: nowrap;
}

.rd-tab:hover {
  color: rgba(255, 255, 255, 0.6);
}

.rd-tab.active {
  color: var(--blue-300);
  border-bottom-color: var(--blue-400);
}

/* ── BODY ── */
.rd-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 52px 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: stretch;
}

.rd-content {
  align-self: start;
}

.rd-sidebar {
  align-self: stretch;
  display: block;
}

/* Section */
.rd-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.rd-section-line {
  width: 24px;
  height: 1.5px;
  background: var(--blue-400);
  flex-shrink: 0;
}

.rd-section-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.rd-section {
  margin-bottom: 52px;
}

.rd-section:last-child {
  margin-bottom: 0;
}

/* Key Highlights */
.rd-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rd-hl {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  padding: 18px 20px;
  border-left: 3px solid var(--blue-600);
}

.rd-hl-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.rd-hl-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.rd-hl-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Report content (TipTap output) */
.rd-report-content {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-primary);
}

.rd-report-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 36px 0 14px;
  line-height: 1.2;
}

.rd-report-content h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 28px 0 10px;
}

.rd-report-content p {
  margin-bottom: 18px;
  color: var(--text-primary);
}

.rd-report-content ul,
.rd-report-content ol {
  margin: 0 0 18px 24px;
}

.rd-report-content li {
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.75;
}

.rd-report-content strong {
  color: var(--text-primary);
  font-weight: 700;
}

.rd-report-content em {
  font-style: italic;
}

.rd-report-content blockquote {
  border-left: 3px solid var(--blue-400);
  padding: 16px 22px;
  margin: 28px 0;
  background: var(--blue-50);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.rd-report-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.rd-report-content th {
  background: var(--navy-900);
  color: var(--text-white);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rd-report-content td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-default);
  color: var(--text-secondary);
}

.rd-report-content tr:last-child td {
  border-bottom: none;
}

.rd-report-content tr:nth-child(even) td {
  background: var(--surface-subtle);
}

/* Scope grid */
.rd-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rd-scope-item {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  padding: 18px 20px;
}

.rd-scope-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.rd-scope-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

/* TOC */
.rd-toc {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  overflow: hidden;
}

.rd-toc-head {
  background: var(--navy-900);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rd-toc-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-white);
}

.rd-toc-count {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-white-muted);
}

.rd-toc-list {
  padding: 8px 0;
}

.rd-toc-item {
  padding: 10px 20px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.13s;
}

.rd-toc-item:last-child {
  border-bottom: none;
}

.rd-toc-item:hover {
  background: var(--surface-subtle);
}

.rd-toc-num {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 22px;
}

.rd-toc-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.rd-toc-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ── SIDEBAR ── */
.rd-sticky-group {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

/* Price card */
.rd-price-card-sidebar {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 20px 22px 22px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.rd-price-card-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.rd-price-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.rd-price-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 7px;
  border: 1.5px solid var(--border-default);
  transition: all 0.14s;
  cursor: pointer;
}

.rd-price-tier:hover,
.rd-price-tier.selected {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.rd-price-tier-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rd-price-tier-name {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.rd-price-tier-desc {
  font-size: 10.5px;
  color: var(--text-muted);
}

.rd-price-tier-amt {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.rd-price-tier.selected .rd-price-tier-amt {
  color: var(--blue-600);
}

.rd-price-cta {
  width: 100%;
  padding: 13px;
  background: var(--navy-900);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  display: block;
  transition: background 0.16s;
  border: none;
  cursor: pointer;
}

.rd-price-cta:hover {
  background: var(--navy-800);
}

.rd-price-note {
  text-align: center;
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* CTA card */
.rd-cta-card {
  background: var(--navy-900);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.rd-cta-card-head {
  background: var(--navy-800);
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.rd-cta-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 6px;
}

.rd-cta-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.25;
}

.rd-cta-body {
  padding: 16px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.rd-cta-btn {
  display: block;
  width: 100%;
  padding: 11px 16px;
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.16s;
  border: none;
  cursor: pointer;
}

.rd-cta-btn-primary {
  background: var(--blue-600);
  color: #fff;
}

.rd-cta-btn-primary:hover {
  background: var(--blue-500);
}

.rd-cta-btn-ghost {
  background: transparent;
  color: var(--text-white-dim);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
}

.rd-cta-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--text-white);
}

/* Report Details card */
.rd-meta-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  overflow: hidden;
}

.rd-meta-card-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-default);
  background: var(--surface-subtle);
}

.rd-meta-card-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.rd-meta-list {
  padding: 4px 0;
}

.rd-meta-row2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  border-bottom: 1px solid var(--border-subtle);
  gap: 12px;
}

.rd-meta-row2:last-child {
  border-bottom: none;
}

.rd-meta-key {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.rd-meta-value {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

/* ── RELATED ── */
.rd-related {
  background: var(--surface-subtle);
  padding: 60px 52px 80px;
  border-top: 1px solid var(--border-default);
}

.rd-related-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.rd-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.rd-related-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
}

.rd-related-title em {
  font-style: italic;
  color: var(--blue-600);
}

.rd-related-link {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rd-mini-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
  display: block;
}

.rd-mini-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.09);
  transform: translateY(-2px);
}

.rd-mini-cover {
  height: 120px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-750));
  position: relative;
  overflow: hidden;
}

.rd-mini-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.rd-mini-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.8);
  color: #fff;
  z-index: 1;
}

.rd-mini-body {
  padding: 16px 18px;
}

.rd-mini-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.rd-mini-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 10px;
}

.rd-mini-link {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ═══ TABLET ═══ */
@media(max-width:1023px) {
  .rd-hero {
    padding: 90px 28px 0;
  }

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

  .rd-excerpt {
    font-size: 15px;
  }

  .rd-stats-row {
    width: 100%;
  }

  .rd-stat {
    padding: 12px 16px;
    flex: 1;
  }

  .rd-tab-strip {
    top: 62px;
  }

  .rd-tabs {
    padding: 0 28px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .rd-tabs::-webkit-scrollbar {
    display: none;
  }

  .rd-tab {
    padding: 14px 18px;
    font-size: 10.5px;
  }

  .rd-body {
    grid-template-columns: 1fr;
    padding: 36px 28px 60px;
    gap: 36px;
    align-items: start;
  }

  .rd-content {
    align-self: auto;
  }

  .rd-sidebar {
    align-self: auto;
  }

  .rd-sticky-group {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 0;
  }

  .rd-price-card-sidebar {
    margin-bottom: 0;
  }

  .rd-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .rd-scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rd-related {
    padding: 44px 28px 60px;
  }

  .rd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══ MOBILE ═══ */
@media(max-width:767px) {
  .rd-hero {
    padding: 76px 20px 0;
  }

  .rd-breadcrumb {
    margin-bottom: 20px;
    gap: 6px;
  }

  .rd-bc-item {
    font-size: 9px;
  }

  .rd-title {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .rd-excerpt {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .rd-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 24px;
  }

  .rd-stat {
    padding: 12px 14px;
  }

  .rd-stat+.rd-stat {
    border-left: none;
  }

  .rd-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .rd-stat:nth-child(3),
  .rd-stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .rd-stat-val {
    font-size: 12px;
  }

  .rd-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-bottom: 32px;
  }

  .rd-btn-primary,
  .rd-btn-ghost,
  .rd-btn-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 11px;
  }

  .rd-tab-strip {
    top: 58px;
  }

  .rd-tabs {
    padding: 0 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .rd-tabs::-webkit-scrollbar {
    display: none;
  }

  .rd-tab {
    padding: 13px 16px;
    font-size: 10px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .rd-body {
    grid-template-columns: 1fr;
    padding: 28px 20px 52px;
    gap: 28px;
    align-items: start;
  }

  .rd-content {
    align-self: auto;
  }

  .rd-sidebar {
    align-self: auto;
    order: 999;
  }

  .rd-sticky-group {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 0;
  }

  .rd-price-card-sidebar {
    padding: 18px 18px 20px;
  }

  .rd-price-tier {
    padding: 10px 10px;
  }

  .rd-price-tier-amt {
    font-size: 17px;
  }

  .rd-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rd-hl-val {
    font-size: 20px;
  }

  .rd-report-content {
    font-size: 15px;
    line-height: 1.8;
  }

  .rd-report-content h2 {
    font-size: 21px;
    margin: 28px 0 12px;
  }

  .rd-report-content h3 {
    font-size: 17px;
  }

  .rd-report-content blockquote {
    padding: 12px 16px;
    font-size: 14px;
  }

  .rd-scope-grid {
    grid-template-columns: 1fr;
  }

  .rd-toc-item {
    padding: 10px 16px;
    gap: 10px;
  }

  .rd-toc-text {
    font-size: 13px;
  }

  .rd-section {
    margin-bottom: 40px;
  }

  .rd-cta-card-title {
    font-size: 15px;
  }

  .rd-cta-body {
    padding: 14px 18px 18px;
    gap: 8px;
  }

  .rd-cta-btn {
    padding: 11px 14px;
    font-size: 9.5px;
  }

  .rd-related {
    padding: 36px 20px 52px;
  }

  .rd-related-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  .rd-related-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rd-mini-cover {
    height: 100px;
  }
}


/* ═══════════════════════════════════════════
   PRESS RELEASES — press.css
   @import this at the bottom of app.css
   ═══════════════════════════════════════════ */

/* ════════════════════════════
   PRESS LISTING — /press
   ════════════════════════════ */

/* ── Hero ── */
.pr-hero {
  background: var(--navy-900);
  padding: 110px 52px 52px;
  position: relative;
  overflow: hidden;
}

.pr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.pr-hero-glow {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.pr-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.pr-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pr-hero-line {
  width: 24px;
  height: 1.5px;
  background: var(--blue-400);
  flex-shrink: 0;
}

.pr-hero-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.pr-hero-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 16px;
  max-width: 700px;
}

.pr-hero-title em {
  font-style: italic;
  color: var(--blue-300);
}

.pr-hero-sub {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-white-dim);
  max-width: 580px;
  margin-bottom: 28px;
}

.pr-hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 20px;
}

.pr-hero-stat {
  padding: 14px 28px;
  text-align: center;
}

.pr-hero-stat+.pr-hero-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.pr-hero-stat-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-300);
}

.pr-hero-stat-lbl {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-white-muted);
  margin-top: 3px;
}

/* ── Hero search — full width below stats ── */
.pr-hero-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.pr-hero-search svg {
  position: absolute;
  left: 18px;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  flex-shrink: 0;
}

.pr-search-inp {
  width: 100%;
  padding: 15px 48px 15px 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.07);
  transition: border-color 0.15s, background 0.15s;
  outline: none;
  box-sizing: border-box;
}

.pr-search-inp::placeholder {
  color: var(--text-white-muted);
}

.pr-search-inp:focus {
  border-color: var(--blue-400);
  background: rgba(255, 255, 255, 0.11);
}

.pr-search-x {
  position: absolute;
  right: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  padding: 2px;
  line-height: 1;
}

.pr-search-x:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Body ── */
.pr-body {
  background: var(--surface-page);
  padding: 40px 0 80px;
}

.pr-body-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
}

/* ── Toolbar: count + sort ── */
.pr-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-default);
  gap: 16px;
}

.pr-results-count {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.pr-sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pr-sort-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pr-sort-sel {
  padding: 8px 14px;
  border: 1.5px solid var(--border-default);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--surface-white);
  cursor: pointer;
  outline: none;
  transition: border-color 0.14s;
  appearance: auto;
}

.pr-sort-sel:hover {
  border-color: var(--blue-600);
}

.pr-sort-sel:focus {
  border-color: var(--blue-600);
}

/* ── Grid ── */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* ── Press card ── */
.pr-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  overflow: hidden;
  display: block;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.pr-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.09);
  transform: translateY(-3px);
}

.pr-card-cover {
  height: 120px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-750));
  position: relative;
  overflow: hidden;
}

.pr-card-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.pr-card-cover-inner {
  position: absolute;
  inset: 0;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 1;
}

.pr-card-pill {
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.75);
  color: #fff;
}

.pr-card-wire {
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.pr-card-body {
  padding: 20px 22px 22px;
}

.pr-card-meta {
  margin-bottom: 8px;
}

.pr-card-date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.pr-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 10px;
}

.pr-card-excerpt {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.pr-card-link {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pr-empty,
.pr-no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 15px;
  grid-column: 1/-1;
}

/* ── Pagination (Laravel default styled) ── */

/* ════════════════════════════
   PRESS DETAIL — /press/{slug}
   ════════════════════════════ */

/* ── Hero ── */
.prd-hero {
  background: var(--navy-900);
  padding: 110px 52px 52px;
  position: relative;
  overflow: hidden;
}

.prd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.prd-hero-glow {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.prd-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.prd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.prd-bc-item {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white-muted);
}

.prd-bc-item a {
  color: var(--text-white-muted);
  transition: color 0.15s;
}

.prd-bc-item a:hover {
  color: var(--blue-300);
}

.prd-bc-sep {
  color: var(--text-white-muted);
  opacity: 0.4;
  font-size: 10px;
}

.prd-bc-item.current {
  color: var(--blue-300);
}

.prd-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.prd-tag {
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prd-tag-cat {
  background: rgba(37, 99, 235, 0.22);
  color: var(--blue-300);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.prd-tag-wire {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-white-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.prd-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 16px;
  max-width: 820px;
}

.prd-excerpt {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-white-dim);
  max-width: 680px;
  margin-bottom: 24px;
}

.prd-meta-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.prd-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-white-muted);
  letter-spacing: 0.06em;
}

.prd-meta-item svg {
  flex-shrink: 0;
  color: var(--blue-400);
}

/* ── Body grid ── */
.prd-body {
  background: var(--surface-page);
  padding: 52px 0 80px;
}

.prd-body-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: stretch;
}

.prd-content-col {
  align-self: start;
}

.prd-sidebar-col {
  align-self: stretch;
  display: block;
}

/* ── Article content ── */
.prd-article-content {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-primary);
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 36px 40px;
  margin-bottom: 28px;
}

.prd-article-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 12px;
  line-height: 1.2;
}

.prd-article-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 24px 0 10px;
}

.prd-article-content p {
  margin-bottom: 16px;
  color: var(--text-primary);
}

.prd-article-content ul,
.prd-article-content ol {
  margin: 0 0 16px 24px;
}

.prd-article-content li {
  margin-bottom: 7px;
  line-height: 1.7;
}

.prd-article-content strong {
  font-weight: 700;
}

.prd-article-content a {
  color: var(--blue-600);
  text-decoration: underline;
}

.prd-article-content blockquote {
  border-left: 3px solid var(--blue-400);
  padding: 14px 20px;
  margin: 24px 0;
  background: var(--blue-50);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-secondary);
}

.prd-back-row {
  margin-top: 8px;
}

.prd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  transition: gap 0.15s;
}

.prd-back-link:hover {
  gap: 10px;
}

/* ── Sidebar ── */
.prd-sidebar-sticky {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prd-cta-card {
  background: var(--navy-900);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.prd-cta-head {
  background: var(--navy-800);
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.prd-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 6px;
}

.prd-cta-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.25;
}

.prd-cta-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.prd-cta-btn {
  display: block;
  width: 100%;
  padding: 11px 16px;
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.16s;
  border: none;
  cursor: pointer;
}

.prd-cta-btn-primary {
  background: var(--blue-600);
  color: #fff;
}

.prd-cta-btn-primary:hover {
  background: var(--blue-500);
}

.prd-cta-btn-ghost {
  background: transparent;
  color: var(--text-white-dim);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
}

.prd-cta-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--text-white);
}

.prd-meta-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  overflow: hidden;
}

.prd-meta-card-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-default);
  background: var(--surface-subtle);
}

.prd-meta-card-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.prd-meta-list {
  padding: 4px 0;
}

.prd-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border-subtle);
  gap: 10px;
}

.prd-meta-row:last-child {
  border-bottom: none;
}

.prd-meta-key {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.prd-meta-val {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

/* ── Related ── */
.prd-related {
  background: var(--surface-subtle);
  padding: 52px 52px 72px;
  border-top: 1px solid var(--border-default);
}

.prd-related-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.prd-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.prd-related-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
}

.prd-related-title em {
  font-style: italic;
  color: var(--blue-600);
}

.prd-related-link {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  gap: 5px;
}

.prd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.prd-mini-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  overflow: hidden;
  display: block;
  transition: all 0.2s;
}

.prd-mini-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.prd-mini-cover {
  height: 80px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-750));
  position: relative;
  overflow: hidden;
}

.prd-mini-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px);
  background-size: 20px 20px;
}

.prd-mini-pill {
  position: absolute;
  bottom: 8px;
  left: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.8);
  color: #fff;
}

.prd-mini-body {
  padding: 14px 16px;
}

.prd-mini-date {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.prd-mini-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 8px;
}

.prd-mini-link {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════════ */
@media(max-width:1023px) {
  .pr-hero {
    padding: 90px 28px 40px;
  }

  .pr-hero-title {
    font-size: 34px;
  }

  .pr-body-inner {
    padding: 0 28px;
  }

  .pr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prd-hero {
    padding: 90px 28px 40px;
  }

  .prd-title {
    font-size: 30px;
  }

  .prd-body-inner {
    padding: 0 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .prd-content-col,
  .prd-sidebar-col {
    align-self: auto;
  }

  .prd-sidebar-sticky {
    position: static;
  }

  .prd-related {
    padding: 40px 28px 60px;
  }

  .prd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════════ */
@media(max-width:767px) {
  .pr-hero {
    padding: 76px 20px 36px;
  }

  .pr-hero-title {
    font-size: 26px;
  }

  .pr-hero-sub {
    font-size: 14.5px;
  }

  .pr-hero-stats {
    width: 100%;
  }

  .pr-hero-stat {
    flex: 1;
    padding: 12px 10px;
  }

  .pr-body-inner {
    padding: 0 20px;
  }

  .pr-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .pr-grid {
    grid-template-columns: 1fr;
  }

  .prd-hero {
    padding: 76px 20px 32px;
  }

  .prd-title {
    font-size: 24px;
  }

  .prd-body-inner {
    padding: 0 20px;
    grid-template-columns: 1fr;
  }

  .prd-article-content {
    padding: 24px 20px;
  }

  .prd-related {
    padding: 36px 20px 52px;
  }

  .prd-related-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .prd-related-grid {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════
   PRESS DETAIL — /press/{slug}
   ════════════════════════ */
/* ════════════════════
   HERO
   ════════════════════ */
.prd-hero {
  background: var(--navy-900);
  padding: 110px 52px 52px;
  position: relative;
  overflow: hidden;
}

.prd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.prd-hero-glow {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.prd-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* Breadcrumb */
.prd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.prd-bc-item {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white-muted);
}

.prd-bc-item a {
  color: var(--text-white-muted);
  transition: color 0.15s;
}

.prd-bc-item a:hover {
  color: var(--blue-300);
}

.prd-bc-sep {
  color: var(--text-white-muted);
  opacity: 0.4;
  font-size: 10px;
}

.prd-bc-item.current {
  color: var(--blue-300);
}

/* Tags */
.prd-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.prd-tag {
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prd-tag-cat {
  background: rgba(37, 99, 235, 0.22);
  color: var(--blue-300);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.prd-tag-wire {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-white-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.prd-tag-new {
  background: rgba(22, 163, 74, 0.2);
  color: #4ade80;
  border: 1px solid rgba(22, 163, 74, 0.3);
}

/* Title */
.prd-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 18px;
  max-width: 860px;
}

.prd-excerpt {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-white-dim);
  max-width: 700px;
  margin-bottom: 28px;
}

/* Meta strip */
.prd-meta-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  width: fit-content;
  flex-wrap: wrap;
}

.prd-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-white-dim);
  letter-spacing: 0.06em;
}

.prd-meta-item svg {
  flex-shrink: 0;
  color: var(--blue-400);
}

.prd-meta-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

/* ════════════════════
   BODY — 2-col grid
   ════════════════════ */
.prd-body {
  background: var(--surface-page);
  padding: 52px 0 80px;
}

.prd-body-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: stretch;
}

.prd-content-col {
  align-self: start;
}

.prd-sidebar-col {
  align-self: stretch;
  display: block;
}

/* ── Article content ── */
.prd-article-content {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 40px 44px;
  margin-bottom: 24px;
}

/* PRN header block */
.prd-prn-header {
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-default);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.prd-prn-logo {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.prd-prn-dateline {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Article typography */
.prd-article-content p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.prd-article-content p:last-child {
  margin-bottom: 0;
}

.prd-article-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 14px;
  line-height: 1.2;
}

.prd-article-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 24px 0 10px;
}

.prd-article-content ul,
.prd-article-content ol {
  margin: 0 0 18px 24px;
}

.prd-article-content li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.prd-article-content strong {
  font-weight: 700;
  color: var(--text-primary);
}

.prd-article-content a {
  color: var(--blue-600);
  text-decoration: underline;
}

.prd-article-content blockquote {
  border-left: 3px solid var(--blue-400);
  padding: 16px 22px;
  margin: 28px 0;
  background: var(--blue-50);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Key stat callout */
.prd-stat-callout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.prd-stat-box {
  background: var(--surface-subtle);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  padding: 18px 20px;
  border-top: 3px solid var(--blue-600);
  text-align: center;
}

.prd-stat-box-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.prd-stat-box-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Boilerplate */
.prd-boilerplate {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-default);
}

.prd-boilerplate-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.prd-boilerplate p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Contact block */
.prd-contact-block {
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--surface-subtle);
  border-radius: 10px;
  border: 1px solid var(--border-default);
}

.prd-contact-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.prd-contact-block p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.prd-contact-block a {
  color: var(--blue-600);
}

/* Back link */
.prd-back-row {
  margin-top: 6px;
}

.prd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  transition: gap 0.15s;
}

.prd-back-link:hover {
  gap: 10px;
}

/* ════════════════════
   SIDEBAR
   ════════════════════ */
.prd-sidebar-sticky {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* CTA card */
.prd-cta-card {
  background: var(--navy-900);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.prd-cta-head {
  background: var(--navy-800);
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.prd-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 6px;
}

.prd-cta-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.25;
}

.prd-cta-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.prd-cta-btn {
  display: block;
  width: 100%;
  padding: 11px 16px;
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.16s;
  border: none;
  cursor: pointer;
}

.prd-cta-btn-primary {
  background: var(--blue-600);
  color: #fff;
}

.prd-cta-btn-primary:hover {
  background: var(--blue-500);
}

.prd-cta-btn-ghost {
  background: transparent;
  color: var(--text-white-dim);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
}

.prd-cta-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--text-white);
}

/* Press Details card */
.prd-meta-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  overflow: hidden;
}

.prd-meta-card-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-default);
  background: var(--surface-subtle);
}

.prd-meta-card-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.prd-meta-list {
  padding: 4px 0;
}

.prd-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border-subtle);
  gap: 10px;
}

.prd-meta-row:last-child {
  border-bottom: none;
}

.prd-meta-key {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.prd-meta-val {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

/* Share card */
.prd-share-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 18px 20px;
}

.prd-share-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.prd-share-btns {
  display: flex;
  gap: 8px;
}

.prd-share-btn {
  flex: 1;
  padding: 9px 8px;
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border: 1.5px solid var(--border-default);
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: all 0.14s;
}

.prd-share-btn:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

/* ════════════════════
   RELATED
   ════════════════════ */
.prd-related {
  background: var(--surface-subtle);
  padding: 52px 52px 72px;
  border-top: 1px solid var(--border-default);
}

.prd-related-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.prd-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.prd-related-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
}

.prd-related-title em {
  font-style: italic;
  color: var(--blue-600);
}

.prd-related-link {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  gap: 5px;
}

.prd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.prd-mini-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  overflow: hidden;
  display: block;
  transition: all 0.2s;
}

.prd-mini-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.prd-mini-cover {
  height: 80px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-750));
  position: relative;
  overflow: hidden;
}

.prd-mini-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px);
  background-size: 20px 20px;
}

.prd-mini-pill {
  position: absolute;
  bottom: 8px;
  left: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.8);
  color: #fff;
}

.prd-mini-body {
  padding: 14px 16px;
}

.prd-mini-date {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.prd-mini-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 8px;
}

.prd-mini-link {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* FOOTER */

/* ════════════════════
   RESPONSIVE
   ════════════════════ */
@media(max-width:1023px) {
  .prd-body-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 28px;
  }

  .prd-sidebar-col {
    align-self: auto;
  }

  .prd-sidebar-sticky {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .prd-related {
    padding: 40px 28px 60px;
  }

  .prd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prd-hero {
    padding: 90px 28px 40px;
  }

  .prd-title {
    font-size: 30px;
  }
}

@media(max-width:767px) {
  .prd-hero {
    padding: 76px 20px 32px;
  }

  .prd-title {
    font-size: 24px;
  }

  .prd-body-inner {
    padding: 0 20px;
  }

  .prd-article-content {
    padding: 24px 20px;
  }

  .prd-stat-callout {
    grid-template-columns: 1fr 1fr;
  }

  .prd-sidebar-sticky {
    position: static;
    display: flex;
    flex-direction: column;
  }

  .prd-related {
    padding: 36px 20px 52px;
  }

  .prd-related-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .prd-related-grid {
    grid-template-columns: 1fr;
  }

  .prd-meta-strip {
    gap: 16px;
  }
}

/* ════ ABOUT US PAGE ════ */
.about-hero {
  background: var(--navy-900);
  padding: 120px 52px 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.about-hero-glow {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.about-eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: var(--blue-400);
}

.about-eyebrow-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-white);
  max-width: 760px;
  margin-bottom: 24px;
}

.about-hero-title em {
  font-style: italic;
  color: var(--blue-300);
}

.about-hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-white-dim);
  max-width: 620px;
  margin-bottom: 52px;
}

/* Stats row */
.about-stats {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}

.about-stat {
  padding: 20px 36px;
  text-align: center;
}

.about-stat+.about-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.about-stat-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-300);
  line-height: 1;
}

.about-stat-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-white-muted);
  margin-top: 5px;
}

/* ══════════════════════════════════
   MISSION SECTION
   ══════════════════════════════════ */
.about-mission {
  background: var(--surface-white);
  padding: 80px 52px;
}

.about-mission-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission-left {}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.section-line {
  width: 24px;
  height: 1.5px;
  background: var(--blue-400);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.about-section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about-section-title em {
  font-style: italic;
  color: var(--blue-600);
}

.about-section-body {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.about-section-body p {
  margin-bottom: 16px;
}

.about-section-body p:last-child {
  margin-bottom: 0;
}

.about-mission-right {}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--surface-page);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  border-left: 3px solid var(--blue-600);
  transition: box-shadow 0.2s;
}

.about-value-item:hover {
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.about-value-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--blue-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}

.about-value-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.about-value-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   WHAT WE DO
   ══════════════════════════════════ */
.about-what {
  background: var(--surface-page);
  padding: 80px 52px;
}

.about-what-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about-what-head {
  text-align: center;
  margin-bottom: 52px;
}

.about-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-what-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.2s;
}

.about-what-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
  transform: translateY(-3px);
}

.about-what-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--blue-600);
  margin-bottom: 16px;
}

.about-what-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-what-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   TEAM SECTION
   ══════════════════════════════════ */
.about-team {
  background: var(--surface-subtle);
  padding: 80px 52px;
}

.about-team-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about-team-head {
  margin-bottom: 48px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
}

.team-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.team-avatar {
  height: 140px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-750));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar-initials {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.02em;
}

.team-avatar-role-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.75);
  color: #fff;
}

.team-info {
  padding: 18px 18px 20px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   WHY PRR — dark section
   ══════════════════════════════════ */
.about-why {
  background: var(--navy-900);
  padding: 80px 52px;
}

.about-why-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-why-left {}

.about-why-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-why-title em {
  font-style: italic;
  color: var(--blue-300);
}

.about-why-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-white-dim);
}

.about-why-right {}

.about-why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-navy);
}

.about-why-item:last-child {
  border-bottom: none;
}

.about-why-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  border: 1.5px solid rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  margin-top: 2px;
}

.about-why-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.about-why-item-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-white-muted);
}

/* ══════════════════════════════════
   CTA BAND
   ══════════════════════════════════ */
.about-cta {
  background: var(--navy-800);
  padding: 72px 52px;
}

.about-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-cta-text {}

.about-cta-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
}

.about-cta-title em {
  font-style: italic;
  color: var(--blue-300);
}

.about-cta-sub {
  font-size: 15px;
  color: var(--text-white-dim);
  max-width: 480px;
}

.about-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue-600);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.16s;
}

.btn-cta-primary:hover {
  background: var(--blue-500);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white-dim);
  transition: all 0.16s;
}

.btn-cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}

/* FOOTER */

/* RESPONSIVE */
@media(max-width:1023px) {
  .about-hero {
    padding: 100px 28px 60px;
  }

  .about-hero-title {
    font-size: 38px;
  }

  .about-mission {
    padding: 60px 28px;
  }

  .about-mission-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-what {
    padding: 60px 28px;
  }

  .about-what-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-team {
    padding: 60px 28px;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-why {
    padding: 60px 28px;
  }

  .about-why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-cta {
    padding: 52px 28px;
  }

  .footer {
    padding: 32px 28px;
  }
}

@media(max-width:767px) {
  .about-hero {
    padding: 86px 20px 48px;
  }

  .about-hero-title {
    font-size: 30px;
  }

  .about-stats {
    width: 100%;
  }

  .about-stat {
    flex: 1;
    padding: 16px 12px;
  }

  .about-stat-val {
    font-size: 24px;
  }

  .about-mission {
    padding: 48px 20px;
  }

  .about-what {
    padding: 48px 20px;
  }

  .about-what-grid {
    grid-template-columns: 1fr;
  }

  .about-team {
    padding: 48px 20px;
  }

  .about-team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-why {
    padding: 48px 20px;
  }

  .about-cta {
    padding: 48px 20px;
  }

  .about-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-primary,
  .btn-cta-ghost {
    justify-content: center;
  }

  .footer {
    padding: 28px 20px;
  }
}

/* ════ METHODOLOGY PAGE ════ */
.meth-hero {
  background: var(--navy-900);
  padding: 120px 52px 80px;
  position: relative;
  overflow: hidden;
}

.meth-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.meth-hero-glow {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.meth-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.meth-hero-left {}

.meth-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 22px;
}

.meth-hero-title em {
  font-style: italic;
  color: var(--blue-300);
}

.meth-hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-white-dim);
  margin-bottom: 36px;
}

.meth-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meth-badge {
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.18);
  color: var(--blue-300);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.meth-hero-right {}

.meth-trust-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 30px;
}

.meth-trust-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 20px;
}

.meth-trust-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meth-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.meth-trust-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
}

.meth-trust-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
}

.meth-trust-item-desc {
  font-size: 12px;
  color: var(--text-white-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════
   4-STEP PROCESS
   ══════════════════════════════════ */
.meth-process {
  background: var(--surface-white);
  padding: 80px 52px;
}

.meth-process-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.meth-process-head {
  margin-bottom: 52px;
}

.meth-process-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.meth-process-title em {
  font-style: italic;
  color: var(--blue-600);
}

.meth-process-sub {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 600px;
}

.meth-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.meth-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-400), var(--blue-200));
  z-index: 0;
}

.meth-step {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}

.meth-step-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 3px solid var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-300);
  position: relative;
  z-index: 1;
}

.meth-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.meth-step-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   DETAIL SECTIONS
   ══════════════════════════════════ */
.meth-detail {
  background: var(--surface-page);
  padding: 80px 52px;
}

.meth-detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.meth-detail-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
  align-items: start;
}

.meth-detail-block:nth-child(even) {
  grid-template-columns: 1fr 280px;
}

.meth-detail-block:nth-child(even) .meth-detail-left {
  order: 2;
}

.meth-detail-block:nth-child(even) .meth-detail-right {
  order: 1;
}

.meth-detail-left {}

.meth-detail-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}

.meth-detail-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.meth-detail-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.meth-detail-body p {
  margin-bottom: 14px;
}

.meth-detail-body p:last-child {
  margin-bottom: 0;
}

.meth-detail-right {}

.meth-detail-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  overflow: hidden;
}

.meth-detail-card-head {
  background: var(--navy-900);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-white);
}

.meth-detail-card-body {
  padding: 0;
}

.meth-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.meth-detail-item:last-child {
  border-bottom: none;
}

.meth-detail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-600);
  flex-shrink: 0;
  margin-top: 7px;
}

.meth-detail-item-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   DATA STANDARDS
   ══════════════════════════════════ */
.meth-standards {
  background: var(--navy-900);
  padding: 80px 52px;
}

.meth-standards-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.meth-standards-head {
  margin-bottom: 48px;
}

.meth-standards-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.meth-standards-title em {
  font-style: italic;
  color: var(--blue-300);
}

.meth-standards-sub {
  font-size: 15px;
  color: var(--text-white-dim);
  max-width: 560px;
}

.meth-standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.meth-standard-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 24px 22px;
  border-top: 3px solid var(--blue-600);
}

.meth-standard-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  margin-bottom: 16px;
}

.meth-standard-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.meth-standard-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-white-muted);
}

/* ══════════════════════════════════
   CTA BAND
   ══════════════════════════════════ */
.meth-cta {
  background: var(--navy-800);
  padding: 72px 52px;
  text-align: center;
}

.meth-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.meth-cta-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 14px;
}

.meth-cta-title em {
  font-style: italic;
  color: var(--blue-300);
}

.meth-cta-sub {
  font-size: 15px;
  color: var(--text-white-dim);
  margin-bottom: 32px;
  line-height: 1.7;
}

.meth-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue-600);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-500);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white-dim);
}

/* FOOTER */

/* RESPONSIVE */
@media(max-width:1023px) {
  .meth-hero {
    padding: 100px 28px 60px;
  }

  .meth-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .meth-hero-title {
    font-size: 36px;
  }

  .meth-process {
    padding: 60px 28px;
  }

  .meth-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .meth-steps::before {
    display: none;
  }

  .meth-detail {
    padding: 60px 28px;
  }

  .meth-detail-block,
  .meth-detail-block:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .meth-detail-block:nth-child(even) .meth-detail-left {
    order: 1;
  }

  .meth-detail-block:nth-child(even) .meth-detail-right {
    order: 2;
  }

  .meth-standards {
    padding: 60px 28px;
  }

  .meth-standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .meth-cta {
    padding: 52px 28px;
  }
}

@media(max-width:767px) {
  .meth-hero {
    padding: 86px 20px 48px;
  }

  .meth-hero-title {
    font-size: 28px;
  }

  .meth-process {
    padding: 48px 20px;
  }

  .meth-steps {
    grid-template-columns: 1fr;
  }

  .meth-detail {
    padding: 48px 20px;
  }

  .meth-standards {
    padding: 48px 20px;
  }

  .meth-standards-grid {
    grid-template-columns: 1fr;
  }

  .meth-cta {
    padding: 48px 20px;
  }

  .meth-cta-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center;
  }
}

/* ════ CONTACT PAGE ════ */
.contact-hero {
  background: var(--navy-900);
  padding: 120px 52px 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.contact-hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: var(--blue-400);
}

.contact-eyebrow-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 18px;
}

.contact-hero-title em {
  font-style: italic;
  color: var(--blue-300);
}

.contact-hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-white-dim);
}

/* ══════════════════════════════════
   MAIN BODY — form + sidebar
   ══════════════════════════════════ */
.contact-body {
  background: var(--surface-page);
  padding: 64px 52px 80px;
}

.contact-body-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start;
}

/* ── LEFT: Form ── */
.contact-form-col {}

.contact-form-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 40px 44px;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-form-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact-form-group:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact-input,
.contact-select,
.contact-textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border-default);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--surface-page);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
  background: var(--surface-white);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--text-muted);
}

.contact-select {
  cursor: pointer;
  appearance: auto;
}

.contact-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.65;
}

.contact-form-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 24px 0;
}

.contact-enquiry-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.contact-enquiry-type {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-default);
  cursor: pointer;
  transition: all 0.14s;
}

.contact-enquiry-type:hover {
  border-color: var(--blue-600);
}

.contact-enquiry-type.selected {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.contact-enquiry-type input[type="radio"] {
  accent-color: var(--blue-600);
}

.contact-enquiry-type-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-enquiry-type-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.contact-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue-600);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.16s;
  margin-top: 8px;
}

.contact-submit:hover {
  background: var(--blue-500);
}

.contact-privacy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ── RIGHT: Sidebar ── */
.contact-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}

/* Info card */
.contact-info-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  overflow: hidden;
}

.contact-info-head {
  background: var(--navy-900);
  padding: 20px 22px;
}

.contact-info-head-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.contact-info-head-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-white-muted);
  letter-spacing: 0.08em;
}

.contact-info-body {
  padding: 8px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.contact-info-value a {
  color: var(--blue-600);
}

/* Response time card */
.contact-response-card {
  background: var(--navy-900);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-response-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 16px;
}

.contact-response-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-response-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contact-response-type {
  font-size: 13px;
  color: var(--text-white-dim);
}

.contact-response-time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--blue-300);
  white-space: nowrap;
}

/* Quick links card */
.contact-quick-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 22px;
}

.contact-quick-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.contact-quick-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-default);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.14s;
}

.contact-quick-link:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.contact-quick-link svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.contact-quick-link:hover svg {
  color: var(--blue-600);
}

/* ══════════════════════════════════
   OFFICES SECTION
   ══════════════════════════════════ */
.contact-offices {
  background: var(--surface-subtle);
  padding: 60px 52px;
}

.contact-offices-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-offices-head {
  margin-bottom: 36px;
}

.contact-offices-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-offices-title em {
  font-style: italic;
  color: var(--blue-600);
}

.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-office-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 24px 22px;
}

.contact-office-flag {
  font-size: 28px;
  margin-bottom: 14px;
}

.contact-office-city {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-office-country {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.contact-office-detail {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.contact-office-detail a {
  color: var(--blue-600);
}

/* FOOTER */

/* RESPONSIVE */
@media(max-width:1023px) {
  .contact-hero {
    padding: 100px 28px 56px;
  }

  .contact-hero-title {
    font-size: 36px;
  }

  .contact-body {
    padding: 48px 28px 60px;
  }

  .contact-body-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-sidebar-col {
    position: static;
  }

  .contact-offices {
    padding: 48px 28px;
  }

  .contact-offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    padding: 32px 28px;
  }
}

@media(max-width:767px) {
  .contact-hero {
    padding: 86px 20px 48px;
  }

  .contact-hero-title {
    font-size: 28px;
  }

  .contact-body {
    padding: 36px 20px 52px;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-enquiry-types {
    grid-template-columns: 1fr;
  }

  .contact-offices {
    padding: 40px 20px;
  }

  .contact-offices-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 28px 20px;
  }
}

/* ══ ABOUT PAGE ══ */
/* ══════════════════════════════════
   ABOUT — HERO
   ══════════════════════════════════ */
.about-hero {
  background: var(--navy-900);
  padding: 120px 52px 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.about-hero-glow {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.about-eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: var(--blue-400);
}

.about-eyebrow-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-white);
  max-width: 760px;
  margin-bottom: 24px;
}

.about-hero-title em {
  font-style: italic;
  color: var(--blue-300);
}

.about-hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-white-dim);
  max-width: 620px;
  margin-bottom: 52px;
}

/* Stats row */
.about-stats {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}

.about-stat {
  padding: 20px 36px;
  text-align: center;
}

.about-stat+.about-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.about-stat-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-300);
  line-height: 1;
}

.about-stat-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-white-muted);
  margin-top: 5px;
}

/* ══════════════════════════════════
   MISSION SECTION
   ══════════════════════════════════ */
.about-mission {
  background: var(--surface-white);
  padding: 80px 52px;
}

.about-mission-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission-left {}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.section-line {
  width: 24px;
  height: 1.5px;
  background: var(--blue-400);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.about-section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about-section-title em {
  font-style: italic;
  color: var(--blue-600);
}

.about-section-body {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.about-section-body p {
  margin-bottom: 16px;
}

.about-section-body p:last-child {
  margin-bottom: 0;
}

.about-mission-right {}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--surface-page);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  border-left: 3px solid var(--blue-600);
  transition: box-shadow 0.2s;
}

.about-value-item:hover {
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.about-value-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--blue-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}

.about-value-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.about-value-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   WHAT WE DO
   ══════════════════════════════════ */
.about-what {
  background: var(--surface-page);
  padding: 80px 52px;
}

.about-what-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about-what-head {
  text-align: center;
  margin-bottom: 52px;
}

.about-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-what-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.2s;
}

.about-what-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
  transform: translateY(-3px);
}

.about-what-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--blue-600);
  margin-bottom: 16px;
}

.about-what-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-what-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   TEAM SECTION
   ══════════════════════════════════ */
.about-team {
  background: var(--surface-subtle);
  padding: 80px 52px;
}

.about-team-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about-team-head {
  margin-bottom: 48px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
}

.team-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.team-avatar {
  height: 140px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-750));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar-initials {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.02em;
}

.team-avatar-role-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.75);
  color: #fff;
}

.team-info {
  padding: 18px 18px 20px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   WHY PRR — dark section
   ══════════════════════════════════ */
.about-why {
  background: var(--navy-900);
  padding: 80px 52px;
}

.about-why-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-why-left {}

.about-why-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-why-title em {
  font-style: italic;
  color: var(--blue-300);
}

.about-why-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-white-dim);
}

.about-why-right {}

.about-why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-navy);
}

.about-why-item:last-child {
  border-bottom: none;
}

.about-why-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  border: 1.5px solid rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  margin-top: 2px;
}

.about-why-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.about-why-item-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-white-muted);
}

/* ══════════════════════════════════
   CTA BAND
   ══════════════════════════════════ */
.about-cta {
  background: var(--navy-800);
  padding: 72px 52px;
}

.about-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-cta-text {}

.about-cta-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
}

.about-cta-title em {
  font-style: italic;
  color: var(--blue-300);
}

.about-cta-sub {
  font-size: 15px;
  color: var(--text-white-dim);
  max-width: 480px;
}

.about-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue-600);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.16s;
}

.btn-cta-primary:hover {
  background: var(--blue-500);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white-dim);
  transition: all 0.16s;
}

.btn-cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}

/* FOOTER */

/* RESPONSIVE */
@media(max-width:1023px) {
  .about-hero {
    padding: 100px 28px 60px;
  }

  .about-hero-title {
    font-size: 38px;
  }

  .about-mission {
    padding: 60px 28px;
  }

  .about-mission-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-what {
    padding: 60px 28px;
  }

  .about-what-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-team {
    padding: 60px 28px;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-why {
    padding: 60px 28px;
  }

  .about-why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-cta {
    padding: 52px 28px;
  }

  .footer {
    padding: 32px 28px;
  }
}

@media(max-width:767px) {
  .about-hero {
    padding: 86px 20px 48px;
  }

  .about-hero-title {
    font-size: 30px;
  }

  .about-stats {
    width: 100%;
  }

  .about-stat {
    flex: 1;
    padding: 16px 12px;
  }

  .about-stat-val {
    font-size: 24px;
  }

  .about-mission {
    padding: 48px 20px;
  }

  .about-what {
    padding: 48px 20px;
  }

  .about-what-grid {
    grid-template-columns: 1fr;
  }

  .about-team {
    padding: 48px 20px;
  }

  .about-team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-why {
    padding: 48px 20px;
  }

  .about-cta {
    padding: 48px 20px;
  }

  .about-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-primary,
  .btn-cta-ghost {
    justify-content: center;
  }

  .footer {
    padding: 28px 20px;
  }
}

/* ══ METHODOLOGY PAGE ══ */
/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.meth-hero {
  background: var(--navy-900);
  padding: 120px 52px 80px;
  position: relative;
  overflow: hidden;
}

.meth-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.meth-hero-glow {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.meth-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.meth-hero-left {}

.meth-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 22px;
}

.meth-hero-title em {
  font-style: italic;
  color: var(--blue-300);
}

.meth-hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-white-dim);
  margin-bottom: 36px;
}

.meth-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meth-badge {
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.18);
  color: var(--blue-300);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.meth-hero-right {}

.meth-trust-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 30px;
}

.meth-trust-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 20px;
}

.meth-trust-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meth-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.meth-trust-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
}

.meth-trust-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
}

.meth-trust-item-desc {
  font-size: 12px;
  color: var(--text-white-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════
   4-STEP PROCESS
   ══════════════════════════════════ */
.meth-process {
  background: var(--surface-white);
  padding: 80px 52px;
}

.meth-process-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.meth-process-head {
  margin-bottom: 52px;
}

.meth-process-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.meth-process-title em {
  font-style: italic;
  color: var(--blue-600);
}

.meth-process-sub {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 600px;
}

.meth-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.meth-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-400), var(--blue-200));
  z-index: 0;
}

.meth-step {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}

.meth-step-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 3px solid var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-300);
  position: relative;
  z-index: 1;
}

.meth-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.meth-step-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   DETAIL SECTIONS
   ══════════════════════════════════ */
.meth-detail {
  background: var(--surface-page);
  padding: 80px 52px;
}

.meth-detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.meth-detail-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
  align-items: start;
}

.meth-detail-block:nth-child(even) {
  grid-template-columns: 1fr 280px;
}

.meth-detail-block:nth-child(even) .meth-detail-left {
  order: 2;
}

.meth-detail-block:nth-child(even) .meth-detail-right {
  order: 1;
}

.meth-detail-left {}

.meth-detail-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}

.meth-detail-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.meth-detail-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.meth-detail-body p {
  margin-bottom: 14px;
}

.meth-detail-body p:last-child {
  margin-bottom: 0;
}

.meth-detail-right {}

.meth-detail-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  overflow: hidden;
}

.meth-detail-card-head {
  background: var(--navy-900);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-white);
}

.meth-detail-card-body {
  padding: 0;
}

.meth-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.meth-detail-item:last-child {
  border-bottom: none;
}

.meth-detail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-600);
  flex-shrink: 0;
  margin-top: 7px;
}

.meth-detail-item-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   DATA STANDARDS
   ══════════════════════════════════ */
.meth-standards {
  background: var(--navy-900);
  padding: 80px 52px;
}

.meth-standards-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.meth-standards-head {
  margin-bottom: 48px;
}

.meth-standards-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.meth-standards-title em {
  font-style: italic;
  color: var(--blue-300);
}

.meth-standards-sub {
  font-size: 15px;
  color: var(--text-white-dim);
  max-width: 560px;
}

.meth-standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.meth-standard-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 24px 22px;
  border-top: 3px solid var(--blue-600);
}

.meth-standard-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  margin-bottom: 16px;
}

.meth-standard-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.meth-standard-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-white-muted);
}

/* ══════════════════════════════════
   CTA BAND
   ══════════════════════════════════ */
.meth-cta {
  background: var(--navy-800);
  padding: 72px 52px;
  text-align: center;
}

.meth-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.meth-cta-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 14px;
}

.meth-cta-title em {
  font-style: italic;
  color: var(--blue-300);
}

.meth-cta-sub {
  font-size: 15px;
  color: var(--text-white-dim);
  margin-bottom: 32px;
  line-height: 1.7;
}

.meth-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue-600);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-500);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white-dim);
}

/* FOOTER */

/* RESPONSIVE */
@media(max-width:1023px) {
  .meth-hero {
    padding: 100px 28px 60px;
  }

  .meth-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .meth-hero-title {
    font-size: 36px;
  }

  .meth-process {
    padding: 60px 28px;
  }

  .meth-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .meth-steps::before {
    display: none;
  }

  .meth-detail {
    padding: 60px 28px;
  }

  .meth-detail-block,
  .meth-detail-block:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .meth-detail-block:nth-child(even) .meth-detail-left {
    order: 1;
  }

  .meth-detail-block:nth-child(even) .meth-detail-right {
    order: 2;
  }

  .meth-standards {
    padding: 60px 28px;
  }

  .meth-standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .meth-cta {
    padding: 52px 28px;
  }
}

@media(max-width:767px) {
  .meth-hero {
    padding: 86px 20px 48px;
  }

  .meth-hero-title {
    font-size: 28px;
  }

  .meth-process {
    padding: 48px 20px;
  }

  .meth-steps {
    grid-template-columns: 1fr;
  }

  .meth-detail {
    padding: 48px 20px;
  }

  .meth-standards {
    padding: 48px 20px;
  }

  .meth-standards-grid {
    grid-template-columns: 1fr;
  }

  .meth-cta {
    padding: 48px 20px;
  }

  .meth-cta-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center;
  }
}

/* ══ CONTACT PAGE ══ */
/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.contact-hero {
  background: var(--navy-900);
  padding: 120px 52px 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.contact-hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: var(--blue-400);
}

.contact-eyebrow-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 18px;
}

.contact-hero-title em {
  font-style: italic;
  color: var(--blue-300);
}

.contact-hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-white-dim);
}

/* ══════════════════════════════════
   MAIN BODY — form + sidebar
   ══════════════════════════════════ */
.contact-body {
  background: var(--surface-page);
  padding: 64px 52px 80px;
}

.contact-body-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start;
}

/* ── LEFT: Form ── */
.contact-form-col {}

.contact-form-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 40px 44px;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-form-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact-form-group:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact-input,
.contact-select,
.contact-textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border-default);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--surface-page);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
  background: var(--surface-white);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--text-muted);
}

.contact-select {
  cursor: pointer;
  appearance: auto;
}

.contact-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.65;
}

.contact-form-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 24px 0;
}

.contact-enquiry-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.contact-enquiry-type {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-default);
  cursor: pointer;
  transition: all 0.14s;
}

.contact-enquiry-type:hover {
  border-color: var(--blue-600);
}

.contact-enquiry-type.selected {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.contact-enquiry-type input[type="radio"] {
  accent-color: var(--blue-600);
}

.contact-enquiry-type-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-enquiry-type-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.contact-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue-600);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.16s;
  margin-top: 8px;
}

.contact-submit:hover {
  background: var(--blue-500);
}

.contact-privacy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ── RIGHT: Sidebar ── */
.contact-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}

/* Info card */
.contact-info-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  overflow: hidden;
}

.contact-info-head {
  background: var(--navy-900);
  padding: 20px 22px;
}

.contact-info-head-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.contact-info-head-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-white-muted);
  letter-spacing: 0.08em;
}

.contact-info-body {
  padding: 8px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.contact-info-value a {
  color: var(--blue-600);
}

/* Response time card */
.contact-response-card {
  background: var(--navy-900);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-response-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 16px;
}

.contact-response-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-response-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contact-response-type {
  font-size: 13px;
  color: var(--text-white-dim);
}

.contact-response-time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--blue-300);
  white-space: nowrap;
}

/* Quick links card */
.contact-quick-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 22px;
}

.contact-quick-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.contact-quick-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-default);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.14s;
}

.contact-quick-link:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.contact-quick-link svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.contact-quick-link:hover svg {
  color: var(--blue-600);
}

/* ══════════════════════════════════
   OFFICES SECTION
   ══════════════════════════════════ */
.contact-offices {
  background: var(--surface-subtle);
  padding: 60px 52px;
}

.contact-offices-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-offices-head {
  margin-bottom: 36px;
}

.contact-offices-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-offices-title em {
  font-style: italic;
  color: var(--blue-600);
}

.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-office-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 24px 22px;
}

.contact-office-flag {
  font-size: 28px;
  margin-bottom: 14px;
}

.contact-office-city {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-office-country {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.contact-office-detail {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.contact-office-detail a {
  color: var(--blue-600);
}

/* FOOTER */

/* RESPONSIVE */
@media(max-width:1023px) {
  .contact-hero {
    padding: 100px 28px 56px;
  }

  .contact-hero-title {
    font-size: 36px;
  }

  .contact-body {
    padding: 48px 28px 60px;
  }

  .contact-body-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-sidebar-col {
    position: static;
  }

  .contact-offices {
    padding: 48px 28px;
  }

  .contact-offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    padding: 32px 28px;
  }
}

@media(max-width:767px) {
  .contact-hero {
    padding: 86px 20px 48px;
  }

  .contact-hero-title {
    font-size: 28px;
  }

  .contact-body {
    padding: 36px 20px 52px;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-enquiry-types {
    grid-template-columns: 1fr;
  }

  .contact-offices {
    padding: 40px 20px;
  }

  .contact-offices-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 28px 20px;
  }
}

/* ════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════ */
/* ══════════════════════════════════
   ABOUT — HERO
   ══════════════════════════════════ */
.about-hero {
  background: var(--navy-900);
  padding: 120px 52px 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.about-hero-glow {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.about-eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: var(--blue-400);
}

.about-eyebrow-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-white);
  max-width: 760px;
  margin-bottom: 24px;
}

.about-hero-title em {
  font-style: italic;
  color: var(--blue-300);
}

.about-hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-white-dim);
  max-width: 620px;
  margin-bottom: 52px;
}

/* Stats row */
.about-stats {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}

.about-stat {
  padding: 20px 36px;
  text-align: center;
}

.about-stat+.about-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.about-stat-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-300);
  line-height: 1;
}

.about-stat-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-white-muted);
  margin-top: 5px;
}

/* ══════════════════════════════════
   MISSION SECTION
   ══════════════════════════════════ */
.about-mission {
  background: var(--surface-white);
  padding: 80px 52px;
}

.about-mission-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission-left {}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.section-line {
  width: 24px;
  height: 1.5px;
  background: var(--blue-400);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.about-section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about-section-title em {
  font-style: italic;
  color: var(--blue-600);
}

.about-section-body {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.about-section-body p {
  margin-bottom: 16px;
}

.about-section-body p:last-child {
  margin-bottom: 0;
}

.about-mission-right {}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--surface-page);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  border-left: 3px solid var(--blue-600);
  transition: box-shadow 0.2s;
}

.about-value-item:hover {
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.about-value-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--blue-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}

.about-value-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.about-value-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   WHAT WE DO
   ══════════════════════════════════ */
.about-what {
  background: var(--surface-page);
  padding: 80px 52px;
}

.about-what-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about-what-head {
  text-align: center;
  margin-bottom: 52px;
}

.about-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-what-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.2s;
}

.about-what-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
  transform: translateY(-3px);
}

.about-what-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--blue-600);
  margin-bottom: 16px;
}

.about-what-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-what-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   TEAM SECTION
   ══════════════════════════════════ */
.about-team {
  background: var(--surface-subtle);
  padding: 80px 52px;
}

.about-team-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about-team-head {
  margin-bottom: 48px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
}

.team-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.team-avatar {
  height: 140px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-750));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar-initials {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.02em;
}

.team-avatar-role-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.75);
  color: #fff;
}

.team-info {
  padding: 18px 18px 20px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   WHY PRR — dark section
   ══════════════════════════════════ */
.about-why {
  background: var(--navy-900);
  padding: 80px 52px;
}

.about-why-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-why-left {}

.about-why-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-why-title em {
  font-style: italic;
  color: var(--blue-300);
}

.about-why-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-white-dim);
}

.about-why-right {}

.about-why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-navy);
}

.about-why-item:last-child {
  border-bottom: none;
}

.about-why-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  border: 1.5px solid rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  margin-top: 2px;
}

.about-why-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.about-why-item-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-white-muted);
}

/* ══════════════════════════════════
   CTA BAND
   ══════════════════════════════════ */
.about-cta {
  background: var(--navy-800);
  padding: 72px 52px;
}

.about-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-cta-text {}

.about-cta-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
}

.about-cta-title em {
  font-style: italic;
  color: var(--blue-300);
}

.about-cta-sub {
  font-size: 15px;
  color: var(--text-white-dim);
  max-width: 480px;
}

.about-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue-600);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.16s;
}

.btn-cta-primary:hover {
  background: var(--blue-500);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white-dim);
  transition: all 0.16s;
}

.btn-cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}

/* FOOTER */

/* RESPONSIVE */
@media(max-width:1023px) {
  .about-hero {
    padding: 100px 28px 60px;
  }

  .about-hero-title {
    font-size: 38px;
  }

  .about-mission {
    padding: 60px 28px;
  }

  .about-mission-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-what {
    padding: 60px 28px;
  }

  .about-what-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-team {
    padding: 60px 28px;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-why {
    padding: 60px 28px;
  }

  .about-why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-cta {
    padding: 52px 28px;
  }

  .footer {
    padding: 32px 28px;
  }
}

@media(max-width:767px) {
  .about-hero {
    padding: 86px 20px 48px;
  }

  .about-hero-title {
    font-size: 30px;
  }

  .about-stats {
    width: 100%;
  }

  .about-stat {
    flex: 1;
    padding: 16px 12px;
  }

  .about-stat-val {
    font-size: 24px;
  }

  .about-mission {
    padding: 48px 20px;
  }

  .about-what {
    padding: 48px 20px;
  }

  .about-what-grid {
    grid-template-columns: 1fr;
  }

  .about-team {
    padding: 48px 20px;
  }

  .about-team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-why {
    padding: 48px 20px;
  }

  .about-cta {
    padding: 48px 20px;
  }

  .about-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-primary,
  .btn-cta-ghost {
    justify-content: center;
  }

  .footer {
    padding: 28px 20px;
  }
}

/* ════════════════════════════════
   METHODOLOGY PAGE
   ════════════════════════════════ */
/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.meth-hero {
  background: var(--navy-900);
  padding: 120px 52px 80px;
  position: relative;
  overflow: hidden;
}

.meth-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.meth-hero-glow {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.meth-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.meth-hero-left {}

.meth-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 22px;
}

.meth-hero-title em {
  font-style: italic;
  color: var(--blue-300);
}

.meth-hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-white-dim);
  margin-bottom: 36px;
}

.meth-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meth-badge {
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.18);
  color: var(--blue-300);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.meth-hero-right {}

.meth-trust-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 30px;
}

.meth-trust-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 20px;
}

.meth-trust-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meth-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.meth-trust-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
}

.meth-trust-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
}

.meth-trust-item-desc {
  font-size: 12px;
  color: var(--text-white-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════
   4-STEP PROCESS
   ══════════════════════════════════ */
.meth-process {
  background: var(--surface-white);
  padding: 80px 52px;
}

.meth-process-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.meth-process-head {
  margin-bottom: 52px;
}

.meth-process-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.meth-process-title em {
  font-style: italic;
  color: var(--blue-600);
}

.meth-process-sub {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 600px;
}

.meth-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.meth-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-400), var(--blue-200));
  z-index: 0;
}

.meth-step {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}

.meth-step-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 3px solid var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-300);
  position: relative;
  z-index: 1;
}

.meth-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.meth-step-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   DETAIL SECTIONS
   ══════════════════════════════════ */
.meth-detail {
  background: var(--surface-page);
  padding: 80px 52px;
}

.meth-detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.meth-detail-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
  align-items: start;
}

.meth-detail-block:nth-child(even) {
  grid-template-columns: 1fr 280px;
}

.meth-detail-block:nth-child(even) .meth-detail-left {
  order: 2;
}

.meth-detail-block:nth-child(even) .meth-detail-right {
  order: 1;
}

.meth-detail-left {}

.meth-detail-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}

.meth-detail-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.meth-detail-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.meth-detail-body p {
  margin-bottom: 14px;
}

.meth-detail-body p:last-child {
  margin-bottom: 0;
}

.meth-detail-right {}

.meth-detail-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  overflow: hidden;
}

.meth-detail-card-head {
  background: var(--navy-900);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-white);
}

.meth-detail-card-body {
  padding: 0;
}

.meth-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.meth-detail-item:last-child {
  border-bottom: none;
}

.meth-detail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-600);
  flex-shrink: 0;
  margin-top: 7px;
}

.meth-detail-item-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   DATA STANDARDS
   ══════════════════════════════════ */
.meth-standards {
  background: var(--navy-900);
  padding: 80px 52px;
}

.meth-standards-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.meth-standards-head {
  margin-bottom: 48px;
}

.meth-standards-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.meth-standards-title em {
  font-style: italic;
  color: var(--blue-300);
}

.meth-standards-sub {
  font-size: 15px;
  color: var(--text-white-dim);
  max-width: 560px;
}

.meth-standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.meth-standard-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 24px 22px;
  border-top: 3px solid var(--blue-600);
}

.meth-standard-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  margin-bottom: 16px;
}

.meth-standard-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.meth-standard-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-white-muted);
}

/* ══════════════════════════════════
   CTA BAND
   ══════════════════════════════════ */
.meth-cta {
  background: var(--navy-800);
  padding: 72px 52px;
  text-align: center;
}

.meth-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.meth-cta-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 14px;
}

.meth-cta-title em {
  font-style: italic;
  color: var(--blue-300);
}

.meth-cta-sub {
  font-size: 15px;
  color: var(--text-white-dim);
  margin-bottom: 32px;
  line-height: 1.7;
}

.meth-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue-600);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-500);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white-dim);
}

/* FOOTER */

/* RESPONSIVE */
@media(max-width:1023px) {
  .meth-hero {
    padding: 100px 28px 60px;
  }

  .meth-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .meth-hero-title {
    font-size: 36px;
  }

  .meth-process {
    padding: 60px 28px;
  }

  .meth-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .meth-steps::before {
    display: none;
  }

  .meth-detail {
    padding: 60px 28px;
  }

  .meth-detail-block,
  .meth-detail-block:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .meth-detail-block:nth-child(even) .meth-detail-left {
    order: 1;
  }

  .meth-detail-block:nth-child(even) .meth-detail-right {
    order: 2;
  }

  .meth-standards {
    padding: 60px 28px;
  }

  .meth-standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .meth-cta {
    padding: 52px 28px;
  }
}

@media(max-width:767px) {
  .meth-hero {
    padding: 86px 20px 48px;
  }

  .meth-hero-title {
    font-size: 28px;
  }

  .meth-process {
    padding: 48px 20px;
  }

  .meth-steps {
    grid-template-columns: 1fr;
  }

  .meth-detail {
    padding: 48px 20px;
  }

  .meth-standards {
    padding: 48px 20px;
  }

  .meth-standards-grid {
    grid-template-columns: 1fr;
  }

  .meth-cta {
    padding: 48px 20px;
  }

  .meth-cta-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center;
  }
}

/* ════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════ */
/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.contact-hero {
  background: var(--navy-900);
  padding: 120px 52px 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.contact-hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: var(--blue-400);
}

.contact-eyebrow-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 18px;
}

.contact-hero-title em {
  font-style: italic;
  color: var(--blue-300);
}

.contact-hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-white-dim);
}

/* ══════════════════════════════════
   MAIN BODY — form + sidebar
   ══════════════════════════════════ */
.contact-body {
  background: var(--surface-page);
  padding: 64px 52px 80px;
}

.contact-body-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start;
}

/* ── LEFT: Form ── */
.contact-form-col {}

.contact-form-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 40px 44px;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-form-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact-form-group:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact-input,
.contact-select,
.contact-textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border-default);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--surface-page);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
  background: var(--surface-white);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--text-muted);
}

.contact-select {
  cursor: pointer;
  appearance: auto;
}

.contact-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.65;
}

.contact-form-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 24px 0;
}

.contact-enquiry-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.contact-enquiry-type {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-default);
  cursor: pointer;
  transition: all 0.14s;
}

.contact-enquiry-type:hover {
  border-color: var(--blue-600);
}

.contact-enquiry-type.selected {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.contact-enquiry-type input[type="radio"] {
  accent-color: var(--blue-600);
}

.contact-enquiry-type-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-enquiry-type-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.contact-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue-600);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.16s;
  margin-top: 8px;
}

.contact-submit:hover {
  background: var(--blue-500);
}

.contact-privacy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ── RIGHT: Sidebar ── */
.contact-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}

/* Info card */
.contact-info-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  overflow: hidden;
}

.contact-info-head {
  background: var(--navy-900);
  padding: 20px 22px;
}

.contact-info-head-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.contact-info-head-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-white-muted);
  letter-spacing: 0.08em;
}

.contact-info-body {
  padding: 8px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.contact-info-value a {
  color: var(--blue-600);
}

/* Response time card */
.contact-response-card {
  background: var(--navy-900);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-response-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 16px;
}

.contact-response-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-response-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contact-response-type {
  font-size: 13px;
  color: var(--text-white-dim);
}

.contact-response-time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--blue-300);
  white-space: nowrap;
}

/* Quick links card */
.contact-quick-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 22px;
}

.contact-quick-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.contact-quick-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-default);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.14s;
}

.contact-quick-link:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.contact-quick-link svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.contact-quick-link:hover svg {
  color: var(--blue-600);
}

/* ══════════════════════════════════
   OFFICES SECTION
   ══════════════════════════════════ */
.contact-offices {
  background: var(--surface-subtle);
  padding: 60px 52px;
}

.contact-offices-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-offices-head {
  margin-bottom: 36px;
}

.contact-offices-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-offices-title em {
  font-style: italic;
  color: var(--blue-600);
}

.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-office-card {
  background: var(--surface-white);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 24px 22px;
}

.contact-office-flag {
  font-size: 28px;
  margin-bottom: 14px;
}

.contact-office-city {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-office-country {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.contact-office-detail {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.contact-office-detail a {
  color: var(--blue-600);
}

/* FOOTER */

/* RESPONSIVE */
@media(max-width:1023px) {
  .contact-hero {
    padding: 100px 28px 56px;
  }

  .contact-hero-title {
    font-size: 36px;
  }

  .contact-body {
    padding: 48px 28px 60px;
  }

  .contact-body-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-sidebar-col {
    position: static;
  }

  .contact-offices {
    padding: 48px 28px;
  }

  .contact-offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    padding: 32px 28px;
  }
}

@media(max-width:767px) {
  .contact-hero {
    padding: 86px 20px 48px;
  }

  .contact-hero-title {
    font-size: 28px;
  }

  .contact-body {
    padding: 36px 20px 52px;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-enquiry-types {
    grid-template-columns: 1fr;
  }

  .contact-offices {
    padding: 40px 20px;
  }

  .contact-offices-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 28px 20px;
  }
}

/* ══ ENQUIRY FORMS & THANK YOU ══ */
/* ════════════════════════════════════════
   SHARED FORM STYLES
   ════════════════════════════════════════ */
.form-page {
  min-height: 100vh;
  background: var(--surface-page);
  padding-top: 70px;
}

/* Split layout: left dark panel + right form */
.form-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: calc(100vh - 70px);
}

/* LEFT — dark info panel */
.form-panel {
  background: var(--navy-900);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.form-panel-glow {
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.form-panel-content {
  position: relative;
  z-index: 1;
}

.form-panel-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-panel-line {
  width: 20px;
  height: 1.5px;
  background: var(--blue-400);
}

.form-panel-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.form-panel-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 16px;
}

.form-panel-title em {
  font-style: italic;
  color: var(--blue-300);
}

.form-panel-sub {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-white-dim);
  margin-bottom: 36px;
}

/* Info items on panel */
.form-panel-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.form-panel-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  margin-top: 1px;
}

.form-panel-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 3px;
}

.form-panel-item-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-white-muted);
}

/* Panel footer */
.form-panel-footer {
  position: relative;
  z-index: 1;
}

.form-panel-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white-muted);
  transition: color 0.15s;
}

.form-panel-back:hover {
  color: var(--blue-300);
}

/* RIGHT — form area */
.form-area {
  background: var(--surface-white);
  padding: 52px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-area-inner {
  max-width: 560px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border-default);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--surface-page);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
  background: var(--surface-white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  cursor: pointer;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.65;
}

.form-hint {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* Report search field */
.form-report-search {
  position: relative;
}

.form-report-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.form-report-search .form-input {
  padding-left: 38px;
}


/* Report title badge — static, non-editable, shown above form title */
.form-report-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-200);
  border-radius: 8px;
  margin-bottom: 20px;
}

.form-report-badge svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue-600);
}

.form-report-badge span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* Submit button */
.form-submit {
  width: 100%;
  padding: 14px;
  margin-top: 24px;
  background: var(--blue-600);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.16s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--blue-500);
}

.form-submit svg {
  flex-shrink: 0;
}

.form-privacy {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--blue-600);
}

/* Divider */
.form-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 24px 0;
}

.form-divider-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.form-divider-label span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.form-divider-label::before,
.form-divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-default);
}

/* License tier selector */
.license-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

.license-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border-default);
  cursor: pointer;
  transition: all 0.14s;
  background: var(--surface-page);
}

.license-tier:hover {
  border-color: var(--blue-600);
}

.license-tier.selected {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.license-tier-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.license-tier-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.license-tier-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.license-tier-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.license-tier.selected .license-tier-price {
  color: var(--blue-600);
}

/* Checkbox */
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--surface-subtle);
  border-radius: 8px;
  border: 1px solid var(--border-default);
}

.form-checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--blue-600);
  margin-top: 2px;
}

.form-checkbox-label {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-checkbox-label strong {
  color: var(--text-primary);
}

/* Customization areas grid */
.custom-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}

.custom-area {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-default);
  cursor: pointer;
  transition: all 0.14s;
  background: var(--surface-page);
}

.custom-area:hover {
  border-color: var(--blue-600);
}

.custom-area.selected {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.custom-area input[type="checkbox"] {
  accent-color: var(--blue-600);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.custom-area-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ════════════════════════════════════════
   THANK YOU PAGE
   ════════════════════════════════════════ */
.ty-page {
  min-height: calc(100vh - 110px);
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 52px;
}

.ty-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.ty-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.ty-card {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.ty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.15);
  border: 2px solid rgba(22, 163, 74, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
}

.ty-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 16px;
}

.ty-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 18px;
}

.ty-title em {
  font-style: italic;
  color: var(--blue-300);
}

.ty-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-white-dim);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.ty-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.ty-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.ty-step-num {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  border: 1.5px solid rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-300);
}

.ty-step-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.ty-step-desc {
  font-size: 11.5px;
  color: var(--text-white-muted);
  line-height: 1.5;
}

.ty-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ty-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--blue-600);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.16s;
}

.ty-btn-primary:hover {
  background: var(--blue-500);
}

.ty-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white-dim);
  transition: all 0.16s;
}

.ty-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}

/* Responsive */
@media(max-width:1023px) {
  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-panel {
    padding: 40px 28px 36px;
    min-height: auto;
  }

  .form-area {
    padding: 40px 28px;
  }

  .ty-steps {
    grid-template-columns: 1fr;
  }
}

@media(max-width:767px) {
  .form-area {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .custom-areas {
    grid-template-columns: 1fr;
  }

  .ty-title {
    font-size: 32px;
  }

  .ty-actions {
    flex-direction: column;
  }

  .ty-btn-primary,
  .ty-btn-ghost {
    justify-content: center;
  }

  .preview-nav {
    padding: 0 16px;
    overflow-x: auto;
  }
}

/* ══ ENQUIRY FORMS ══ */
/* ════════════════════════════════════════
   SHARED FORM STYLES
   ════════════════════════════════════════ */
.form-page {
  min-height: 100vh;
  background: var(--surface-page);
  padding-top: 70px;
}

/* Split layout: left dark panel + right form */
.form-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: calc(100vh - 70px);
}

/* LEFT — dark info panel */
.form-panel {
  background: var(--navy-900);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.form-panel-glow {
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.form-panel-content {
  position: relative;
  z-index: 1;
}

.form-panel-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-panel-line {
  width: 20px;
  height: 1.5px;
  background: var(--blue-400);
}

.form-panel-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.form-panel-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 16px;
}

.form-panel-title em {
  font-style: italic;
  color: var(--blue-300);
}

.form-panel-sub {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-white-dim);
  margin-bottom: 36px;
}

/* Info items on panel */
.form-panel-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.form-panel-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  margin-top: 1px;
}

.form-panel-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 3px;
}

.form-panel-item-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-white-muted);
}

/* Panel footer */
.form-panel-footer {
  position: relative;
  z-index: 1;
}

.form-panel-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white-muted);
  transition: color 0.15s;
}

.form-panel-back:hover {
  color: var(--blue-300);
}

/* RIGHT — form area */
.form-area {
  background: var(--surface-white);
  padding: 52px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-area-inner {
  max-width: 560px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border-default);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--surface-page);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
  background: var(--surface-white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  cursor: pointer;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.65;
}

.form-hint {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* Report search field */
.form-report-search {
  position: relative;
}

.form-report-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.form-report-search .form-input {
  padding-left: 38px;
}

/* Submit button */
.form-submit {
  width: 100%;
  padding: 14px;
  margin-top: 24px;
  background: var(--blue-600);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.16s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--blue-500);
}

.form-submit svg {
  flex-shrink: 0;
}

.form-privacy {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--blue-600);
}

/* Divider */
.form-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 24px 0;
}

.form-divider-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.form-divider-label span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.form-divider-label::before,
.form-divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-default);
}

/* License tier selector */
.license-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

.license-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border-default);
  cursor: pointer;
  transition: all 0.14s;
  background: var(--surface-page);
}

.license-tier:hover {
  border-color: var(--blue-600);
}

.license-tier.selected {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.license-tier-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.license-tier-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.license-tier-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.license-tier-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.license-tier.selected .license-tier-price {
  color: var(--blue-600);
}

/* Checkbox */
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--surface-subtle);
  border-radius: 8px;
  border: 1px solid var(--border-default);
}

.form-checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--blue-600);
  margin-top: 2px;
}

.form-checkbox-label {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-checkbox-label strong {
  color: var(--text-primary);
}

/* Customization areas grid */
.custom-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}

.custom-area {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-default);
  cursor: pointer;
  transition: all 0.14s;
  background: var(--surface-page);
}

.custom-area:hover {
  border-color: var(--blue-600);
}

.custom-area.selected {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.custom-area input[type="checkbox"] {
  accent-color: var(--blue-600);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.custom-area-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ════════════════════════════════════════
   THANK YOU PAGE
   ════════════════════════════════════════ */
.ty-page {
  min-height: calc(100vh - 110px);
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 52px;
}

.ty-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.ty-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.ty-card {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.ty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.15);
  border: 2px solid rgba(22, 163, 74, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
}

.ty-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 16px;
}

.ty-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 18px;
}

.ty-title em {
  font-style: italic;
  color: var(--blue-300);
}

.ty-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-white-dim);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.ty-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.ty-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.ty-step-num {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  border: 1.5px solid rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-300);
}

.ty-step-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.ty-step-desc {
  font-size: 11.5px;
  color: var(--text-white-muted);
  line-height: 1.5;
}

.ty-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ty-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--blue-600);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.16s;
}

.ty-btn-primary:hover {
  background: var(--blue-500);
}

.ty-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white-dim);
  transition: all 0.16s;
}

.ty-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}

/* Responsive */
@media(max-width:1023px) {
  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-panel {
    padding: 40px 28px 36px;
    min-height: auto;
  }

  .form-area {
    padding: 40px 28px;
  }

  .ty-steps {
    grid-template-columns: 1fr;
  }
}

@media(max-width:767px) {
  .form-area {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .custom-areas {
    grid-template-columns: 1fr;
  }

  .ty-title {
    font-size: 32px;
  }

  .ty-actions {
    flex-direction: column;
  }

  .ty-btn-primary,
  .ty-btn-ghost {
    justify-content: center;
  }

  .preview-nav {
    padding: 0 16px;
    overflow-x: auto;
  }
}

/* ── PHONE FIELD WITH DIAL CODE ── */
.phone-field-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border-default);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-page);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.phone-field-wrap:focus-within {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
  background: var(--surface-white);
}

.phone-dial-select {
  padding: 11px 10px 11px 12px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  outline: none;
  appearance: none;
  border-right: 1.5px solid var(--border-default);
  min-width: 90px;
  max-width: 110px;
  flex-shrink: 0;
}

.phone-number-input {
  flex: 1;
  padding: 11px 14px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  width: 100%;
}

.phone-number-input::placeholder {
  color: var(--text-muted);
}