:root {
  --navy: #0b1f3a;
  --blue: #123b7a;
  --gold: #d4a017;
  --light: #f8fafc;
  --ink: #101828;
  --card: #ffffff;
  --radius: 18px;
  --surface-deep: #071327;
  --surface-mid: #0f2748;
  --line: rgba(255, 255, 255, 0.18);
  --soft-shadow: 0 32px 72px rgba(4, 12, 28, 0.55), 0 8px 24px rgba(0, 0, 0, 0.3);
  --gold-glow: 0 0 40px rgba(212, 160, 23, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: #050c1a;
  scroll-behavior: smooth;
}

body.landing-mode {
  background: #ffffff;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 8% 0%, rgba(18, 59, 122, 0.88), transparent 42%),
    radial-gradient(ellipse at 94% 12%, rgba(212, 160, 23, 0.44), transparent 38%),
    radial-gradient(ellipse at 50% 95%, rgba(18, 59, 122, 0.32), transparent 50%),
    linear-gradient(180deg, #060d1e 0%, #0a1828 38%, #0d2040 100%);
  z-index: -2;
}

body.landing-mode .site-bg {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 70%, #f3f6fb 100%);
}

body.landing-mode .site-bg::before {
  display: none;
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.55;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(6, 13, 28, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(212, 160, 23, 0.12), 0 6px 32px rgba(0, 0, 0, 0.4);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.landing-mode .header {
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(11, 31, 58, 0.12);
}

.header.scrolled {
  background: rgba(5, 11, 24, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 1px 0 rgba(212, 160, 23, 0.18), 0 16px 48px rgba(0, 0, 0, 0.55);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  font-family: "Playfair Display", serif;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 800;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.22);
  letter-spacing: 0.01em;
}

body.landing-mode .brand {
  color: var(--navy);
}

.nav {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: rgba(241, 247, 255, 0.86);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.34rem 0.45rem;
  border-radius: 8px;
  transition: color 160ms ease, background-color 160ms ease;
}

body.landing-mode .nav a {
  color: rgba(11, 31, 58, 0.84);
}

body.landing-mode .nav a:hover {
  color: var(--navy);
  background: rgba(11, 31, 58, 0.08);
}

body.landing-mode .nav a.active {
  color: var(--navy);
  background: rgba(212, 160, 23, 0.18);
  border: 1px solid rgba(212, 160, 23, 0.32);
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav a.active {
  color: #fff;
  background: rgba(212, 160, 23, 0.2);
  border: 1px solid rgba(212, 160, 23, 0.36);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
}

body.landing-mode .menu-toggle {
  color: var(--navy);
  border-color: rgba(11, 31, 58, 0.22);
  background: rgba(255, 255, 255, 0.9);
}

main {
  padding: 2rem 0 4.5rem;
}

.section {
  margin: 2rem auto;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, #eef3fb 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 31, 58, 0.12);
  box-shadow: 0 28px 72px rgba(4, 10, 24, 0.38), 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.hero {
  background:
    radial-gradient(ellipse at 85% 0%, rgba(212, 160, 23, 0.52), transparent 32%),
    radial-gradient(ellipse at 10% 100%, rgba(18, 59, 122, 0.5), transparent 40%),
    linear-gradient(140deg, #0a1c36 0%, #0f2444 48%, #153d7e 100%);
  color: #f8fbff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--soft-shadow), var(--gold-glow);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 1.1rem;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  margin: 0;
  color: var(--navy);
}

h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.14;
  margin-top: 0.45rem;
}

.hero h1,
.hero h2 {
  color: #fff;
}

p {
  line-height: 1.7;
  margin: 0.7rem 0 0;
  color: rgba(11, 31, 58, 0.85);
}

.hero p {
  color: rgba(242, 248, 255, 0.9);
}

.gold-accent {
  color: #f1cb73;
  text-shadow: 0 0 32px rgba(241, 203, 115, 0.45);
}

.ninia-hero-wrap {
  padding: 0.85rem 0 0.5rem;
}

.ninia-hero {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
  min-height: calc(100vh - 92px);
}

.ninia-copy {
  padding: 0.2rem 0 0;
}

.ninia-copy h1 {
  margin-top: 0;
  font-size: clamp(2.2rem, 5.2vw, 5rem);
  line-height: 1.03;
  color: #0b1f3a;
  max-width: 16ch;
}

.ninia-rotator {
  display: block;
  margin-top: 0.25rem;
  color: var(--blue);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.ninia-rotator.show {
  opacity: 1;
  transform: translateY(0);
}

.btn-light {
  background: #ffffff;
  border: 1px solid rgba(11, 31, 58, 0.18);
  color: var(--navy);
}

.ninia-photo-shell {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7f8fb 0%, #eef2f7 100%);
  border: 1px solid rgba(11, 31, 58, 0.08);
  padding: 1rem 0.6rem 0;
}

.ninia-photo {
  width: min(100%, 560px);
  max-height: 86vh;
  object-fit: contain;
  object-position: bottom;
  filter: contrast(1.02);
  -webkit-mask-image: linear-gradient(to bottom, #000 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 92%, transparent 100%);
}

.photo-fallback {
  display: none;
}

.ninia-photo-shell.photo-missing {
  border: 1px dashed rgba(11, 31, 58, 0.35);
  border-radius: 14px;
  background: #f2f5fa;
  min-height: 52vh;
}

.ninia-photo-shell.photo-missing .photo-fallback {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

body.landing-mode .card:not(.dark):not(.landing-hero):not(.hero):not(.home-hero) {
  background: #ffffff;
  border: 1px solid rgba(11, 31, 58, 0.1);
  box-shadow: 0 14px 28px rgba(10, 22, 40, 0.08);
}

.home-hero {
  background:
    radial-gradient(ellipse at 82% 8%, rgba(212, 160, 23, 0.46), transparent 32%),
    radial-gradient(ellipse at 5% 90%, rgba(18, 59, 122, 0.45), transparent 40%),
    linear-gradient(145deg, #070f22 0%, #0a1c36 48%, #153d7e 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: center;
}

.home-side-panel {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(180deg, rgba(10, 24, 52, 0.84), rgba(6, 15, 34, 0.97));
  padding: 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.home-side-panel h3 {
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.home-mini-list {
  display: grid;
  gap: 0.5rem;
}

.home-mini-list div {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.6rem;
}

.home-mini-list strong {
  color: #ffffff;
  display: block;
  font-size: 0.88rem;
}

.home-mini-list span {
  color: #c4d7f4;
  font-size: 0.8rem;
}

.inline-link {
  display: inline-block;
  margin-top: 0.65rem;
  color: #123b7a;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.chip {
  display: inline-block;
  padding: 0.34rem 0.8rem;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.32);
  border: 1px solid rgba(212, 160, 23, 0.5);
  color: #fff8e2;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(212, 160, 23, 0.2);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.3rem;
}

.btn {
  border: none;
  border-radius: 10px;
  padding: 0.78rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: transform 150ms ease, opacity 150ms ease, box-shadow 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #f2c445 0%, #d4a017 100%);
  color: #1a1200;
  box-shadow: 0 12px 36px rgba(212, 160, 23, 0.6), 0 2px 8px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(10, 24, 50, 0.82), rgba(7, 18, 38, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  padding: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.hero-panel-title {
  color: #b7cae8;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.hero-line {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
  padding: 0.52rem 0.58rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 0.44rem;
}

.hero-line span {
  color: #b8c8df;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-line strong {
  color: #fff;
  font-size: 0.86rem;
}

.hero-progress {
  margin-top: 0.72rem;
}

.hero-progress label {
  font-size: 0.78rem;
  color: #ccd8ea;
  font-weight: 600;
}

.hero-progress div {
  margin-top: 0.35rem;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.hero-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #d4a017, #f2d060);
  box-shadow: 0 0 14px rgba(212, 160, 23, 0.7);
}

.dark {
  background: linear-gradient(150deg, #060d1e 0%, #0d2040 45%, #153d7e 100%);
  color: #e9f1ff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--soft-shadow);
}

.dark h2,
.dark h3 {
  color: #fff;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.metric {
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 4px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.metric strong {
  display: block;
  font-size: 1.2rem;
  color: #ffd97d;
  line-height: 1.2;
  text-shadow: 0 0 24px rgba(255, 217, 125, 0.55);
}

.metric span {
  color: #d5e3f8;
  font-size: 0.86rem;
}

.pricing {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 0.8rem;
}

.price-card {
  background: linear-gradient(180deg, #ffffff 0%, #ecf3ff 100%);
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(8, 19, 37, 0.1);
}

.price-card h3 {
  margin-bottom: 0.45rem;
}

.price-card strong {
  font-size: 1.24rem;
  color: var(--blue);
}

form {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.6rem;
}

label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #23395d;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.74rem;
  border: 1px solid rgba(16, 24, 40, 0.2);
  border-radius: 10px;
  font-size: 0.96rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(18, 59, 122, 0.55);
  box-shadow: 0 0 0 3px rgba(18, 59, 122, 0.14);
}

.form-response {
  font-size: 0.9rem;
  color: #23395d;
  font-weight: 600;
}

.list {
  display: grid;
  gap: 0.66rem;
  margin-top: 0.8rem;
}

.list div {
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.09);
  border-radius: 10px;
  padding: 0.8rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  gap: 0.55rem;
}

.float-btn {
  text-decoration: none;
  font-weight: 800;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(6, 18, 36, 0.26), 0 20px 48px rgba(6, 18, 36, 0.36);
  text-align: center;
  min-width: 132px;
}

.float-btn.whatsapp {
  background: #25d366;
  color: #06130b;
}

.float-btn.linkedin {
  background: #0a66c2;
  color: #f4f9ff;
}

.float-btn.email {
  background: #0b1f3a;
  color: #f5f8ff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.landing-hero {
  background:
    radial-gradient(ellipse at 84% 6%, rgba(212, 160, 23, 0.52), transparent 32%),
    radial-gradient(ellipse at 6% 88%, rgba(18, 59, 122, 0.45), transparent 40%),
    linear-gradient(145deg, #070f22 0%, #0a1c36 45%, #153d7e 100%);
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.landing-mini-proof {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.landing-mini-proof span {
  font-size: 0.76rem;
  color: #d8e6ff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
}

.landing-mockup {
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(10, 25, 52, 0.84), rgba(6, 15, 34, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.landing-mockup-head {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #afc5e9;
  margin-bottom: 0.55rem;
  font-weight: 700;
}

.landing-mockup-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.44rem;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 0.5rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.landing-mockup-row span {
  font-size: 0.76rem;
  color: #c2d4ef;
}

.landing-mockup-row strong {
  font-size: 0.84rem;
  color: #ffffff;
}

.landing-progress {
  margin-top: 0.7rem;
}

.landing-progress label {
  color: #c7d8f1;
  font-size: 0.76rem;
}

.landing-progress div {
  margin-top: 0.3rem;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.landing-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #d4a017, #f2d060);
  box-shadow: 0 0 14px rgba(212, 160, 23, 0.7);
}

.landing-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.landing-feature,
.landing-issue {
  border-radius: 12px;
  padding: 0.9rem;
}

.landing-feature {
  background: linear-gradient(180deg, #ffffff 0%, #eef3fd 100%);
  border: 1px solid rgba(11, 31, 58, 0.1);
}

.landing-issue {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
}

.landing-issue h3,
.landing-feature h3 {
  margin-bottom: 0.35rem;
}

.landing-issue p {
  color: #e0ebff;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.landing-step {
  border-radius: 12px;
  border: 1px solid rgba(11, 31, 58, 0.1);
  background: #ffffff;
  padding: 0.9rem;
}

.landing-step em {
  display: inline-block;
  font-style: normal;
  color: #123b7a;
  background: rgba(18, 59, 122, 0.1);
  border-radius: 999px;
  padding: 0.26rem 0.52rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.landing-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.8rem;
  margin-top: 0.7rem;
}

.landing-testimonials blockquote {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #eff4fd 100%);
  border: 1px solid rgba(11, 31, 58, 0.11);
  border-radius: 12px;
  padding: 0.9rem;
}

.landing-testimonials p {
  margin-top: 0;
}

.landing-testimonials cite {
  display: block;
  margin-top: 0.5rem;
  color: #123b7a;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-direct {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.contact-direct a {
  display: inline-block;
  color: #123b7a;
  font-weight: 700;
  text-decoration: none;
}

.contact-direct a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .ninia-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ninia-photo-shell {
    min-height: auto;
    margin-top: 0.6rem;
  }

  .ninia-photo {
    max-height: none;
  }

  .landing-hero-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 66px;
    background: rgba(8, 18, 38, 0.97);
    border-radius: 10px;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(16px);
  }

  .nav.open {
    display: grid;
    gap: 0.45rem;
  }

  .nav a {
    color: #e6eefc;
  }
}

/* ─── Premium enhancement layer ─────────────────────────────────────────── */

/* White headings inside dark/hero sections get a subtle depth glow */
.hero h1,
.home-hero h1,
.landing-hero h1,
.dark h2,
.dark h3 {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

/* Price cards — richer shadow + subtle top highlight */
.price-card {
  box-shadow: 0 20px 52px rgba(8, 19, 37, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Nav active pill — brighter gold border */
.nav a.active {
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.2);
}

/* Btn hover — stronger lift */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(212, 160, 23, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

/* Landing proof pills — more contrast */
.landing-mini-proof span {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

/* List items — slightly brighter */
.list div {
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.07);
}

/* Section heading accent bar — subtle gold underline utility */
.hero-panel-title {
  color: #c8ddf5;
}
