/* NHUCB Heritage Community Bank — Design System */
:root {
  --navy: #0f2747;
  --navy-light: #1a3a5c;
  --gold: #c8a24d;
  --gold-light: #e0c078;
  --gold-muted: rgba(200, 162, 77, 0.15);
  --white: #ffffff;
  --bg: #f8f9fb;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(15, 39, 71, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 39, 71, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Manrope", "Inter", sans-serif;
  --header-h: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(15, 39, 71, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 162, 77, 0.2);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-svg { width: 48px; height: 48px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-tag {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-legal {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  max-width: 240px;
}

.footer-legal-name {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-legal-name strong {
  color: var(--gold);
  font-weight: 700;
}

.hero-nhucb-expand {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.45;
}

.hero-nhucb-expand strong {
  color: var(--gold);
  font-weight: 700;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-main a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--white);
  background: rgba(200, 162, 77, 0.15);
}

.nav-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 162, 77, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover { background: var(--navy-light); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  padding: 8px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 39, 71, 0.92) 0%, rgba(15, 39, 71, 0.75) 50%, rgba(15, 39, 71, 0.88) 100%),
    url("../assets/images/hero-countryside.jpg") center/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200, 162, 77, 0.12) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
  max-width: 720px;
}

.hero-estd {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 10px 20px;
  background: rgba(200, 162, 77, 0.12);
  border: 1px solid rgba(200, 162, 77, 0.35);
  border-radius: 100px;
}

.hero-estd span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-estd p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.hero-bank-name {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-rbi {
  position: absolute;
  bottom: 40px;
  right: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Trust wall */
.trust-wall {
  background: var(--navy);
  padding: 0;
  margin-top: -1px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(200, 162, 77, 0.25);
}

.trust-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:last-child { border-right: none; }

.trust-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* Sections */
section { padding: 100px 0; }

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

.section-header .eyebrow { margin-bottom: 12px; }

/* Pillars (3 things) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-muted);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Product cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-top {
  height: 8px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.product-card-body { padding: 32px; }

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
}

.product-features li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Digital preview */
.digital-section {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

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

.digital-section h2 { color: var(--white); }

.digital-section .section-sub { color: rgba(255, 255, 255, 0.7); }

.digital-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.digital-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 500;
}

.digital-feat svg { flex-shrink: 0; color: var(--gold); }

.phone-mockup {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.phone-frame {
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-screen {
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
  border-radius: 28px;
  aspect-ratio: 9/19;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

.phone-screen .app-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(200, 162, 77, 0.3);
  margin-bottom: 20px;
}

.phone-screen .app-header span {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.phone-screen .app-balance {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 8px 0 4px;
}

.phone-screen .app-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); }

.phone-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
}

.phone-action {
  background: rgba(200, 162, 77, 0.2);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 600;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--navy));
}

.timeline-item {
  position: relative;
  padding-left: 72px;
  padding-bottom: 48px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Page hero (inner) */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + 60px) 0 80px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
}

/* Loan detail */
.loan-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}

.loan-benefits {
  display: grid;
  gap: 16px;
}

.loan-benefit {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.loan-benefit svg { color: var(--gold); flex-shrink: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-card h3 { margin-bottom: 24px; }

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 400px;
  background: var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 32px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 24px;
  line-height: 1.5;
}

/* Community strip */
.community-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  height: 280px;
  overflow: hidden;
}

.community-strip div {
  background-color: var(--navy-light);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.community-strip .c1 {
  background-image: linear-gradient(rgba(15, 39, 71, 0.35), rgba(15, 39, 71, 0.35)),
    url("../assets/images/community-wheat.jpg");
}

.community-strip .c2 {
  background-image: linear-gradient(rgba(15, 39, 71, 0.35), rgba(15, 39, 71, 0.35)),
    url("../assets/images/community-landscape.jpg");
}

.community-strip .c3 {
  background-image: linear-gradient(rgba(15, 39, 71, 0.35), rgba(15, 39, 71, 0.35)),
    url("../assets/images/community-family.jpg");
}

/* Responsive */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .pillars, .digital-grid, .loan-hero-split, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .community-strip { grid-template-columns: 1fr; height: 200px; }
}

/* Coming Soon */
.badge-coming-soon {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
}

.badge-planned {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold-muted);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 10px;
}

.coming-soon-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.roadmap-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.roadmap-card.planned {
  opacity: 0.92;
}

.roadmap-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.roadmap-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.roadmap-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 14px;
}

.available-today {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.available-today ul {
  list-style: none;
  margin-top: 16px;
}

.available-today li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.available-today li:last-child { border-bottom: none; }

.available-today li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  background: var(--navy);
  border-radius: 50%;
}

.split-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

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

.phone-mockup.coming-soon-preview {
  position: relative;
  opacity: 0.55;
  filter: grayscale(0.25);
}

.phone-mockup.coming-soon-preview::after {
  content: "Coming Soon";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 39, 71, 0.55);
  border-radius: 36px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.digital-feat.planned {
  opacity: 0.7;
  border-style: dashed;
}

.digital-feat.planned span.badge-inline {
  font-size: 0.6rem;
  color: var(--gold);
  margin-left: 6px;
  font-weight: 700;
}

/* LSP Programme */
.lsp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(200, 162, 77, 0.15);
  border: 1px solid rgba(200, 162, 77, 0.4);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lsp-partnership-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 60%, #0f2747 100%);
  padding: 100px 0;
  overflow: hidden;
}

.lsp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.lsp-model-diagram {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.lsp-model-box {
  flex: 1;
  min-width: 140px;
  padding: 24px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.lsp-model-box.highlight {
  border-color: var(--gold);
  background: var(--gold-muted);
}

.lsp-model-arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
}

.lsp-app-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.lsp-app-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.lsp-app-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.lsp-app-meta h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.lsp-app-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.lsp-stat {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.lsp-stat strong {
  color: var(--navy);
  font-weight: 700;
}

.lsp-screenshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.lsp-screenshots img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #000;
  color: #fff;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s, opacity 0.2s;
}

.play-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.play-badge small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.85;
}

.compliance-panel {
  background: #fff8e6;
  border: 1px solid rgba(200, 162, 77, 0.4);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 32px;
}

.compliance-panel h4 {
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.compliance-panel ul {
  margin: 0;
  padding-left: 20px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.7;
}

.roles-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.roles-table th,
.roles-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.roles-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roles-table tr:last-child td {
  border-bottom: none;
}

.lsp-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.lsp-step {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.lsp-step-num {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 14px;
  font-family: var(--font-display);
}

@media (max-width: 1024px) {
  .lsp-split { grid-template-columns: 1fr; }
  .lsp-screenshots { grid-template-columns: repeat(2, 1fr); }
  .lsp-flow-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .logo-legal { display: none; }
}

@media (max-width: 768px) {
  .lsp-screenshots { grid-template-columns: 1fr; }
  .lsp-flow-steps { grid-template-columns: 1fr; }
  .lsp-model-arrow { display: none; }
  .nav-main, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-main.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px;
    border-bottom: 1px solid rgba(200,162,77,0.2);
  }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-rbi { position: static; margin-top: 40px; }
  .digital-features { grid-template-columns: 1fr; }
}
