:root {
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Saira Semi Condensed', 'Inter', sans-serif;
  --navy-950: hsl(224 71% 4%);
  --navy-900: hsl(224 60% 7%);
  --navy-850: hsl(224 50% 10%);
  --navy-800: hsl(222 44% 14%);
  --gold-500: hsl(38 58% 56%);
  --gold-300: hsl(38 75% 72%);
  --violet-500: hsl(262 80% 60%);
  --paper: hsl(40 20% 98%);
  --paper-2: hsl(40 14% 94%);
  --white: #fff;
  --ink: hsl(224 58% 8%);
  --muted: hsl(220 12% 46%);
  --line: rgba(8, 14, 32, .09);
  --line-dark: rgba(255, 255, 255, .095);
  --shadow: 0 26px 70px rgba(3, 6, 17, .14);
  --shadow-soft: 0 18px 45px rgba(3, 6, 17, .08);
  --radius: 28px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  background: #fff;
  color: #07101f;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800
}

.skip-link:focus {
  left: 12px
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 92px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(5, 8, 20, .74);
  backdrop-filter: blur(22px);
  transition: height .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease)
}

.header.scrolled {
  height: 72px;
  background: rgba(5, 8, 20, .93);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .25)
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0
}

.brand-logo {
  height: 58px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .25));
  transition: height .35s var(--ease)
}

.header.scrolled .brand-logo {
  height: 46px
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, .84);
  font-size: .92rem;
  font-weight: 700
}

.menu a:not(.nav-cta) {
  position: relative;
  padding: 10px 0
}

.menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-300), transparent);
  transition: width .3s var(--ease)
}

.menu a:hover {
  color: var(--gold-300)
}

.menu a:hover::after {
  width: 100%
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-950) !important;
  box-shadow: 0 14px 30px rgba(203, 161, 83, .24)
}

.hamb {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: 15px;
  background: rgba(255, 255, 255, .055);
  color: #fff;
  cursor: pointer;
  place-items: center;
  z-index: 112
}

.hamb i,
.hamb i::before,
.hamb i::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: .35s var(--ease);
  content: ""
}

.hamb i::before {
  transform: translateY(-7px)
}

.hamb i::after {
  transform: translateY(5px)
}

.hamb.open i {
  background: transparent
}

.hamb.open i::before {
  transform: rotate(45deg)
}

.hamb.open i::after {
  transform: translateY(-2px) rotate(-45deg)
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: .96rem;
  letter-spacing: 0;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease)
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .35) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .65s var(--ease)
}

.btn:hover::before {
  transform: translateX(120%)
}

.btn span {
  position: relative;
  z-index: 1
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-950);
  box-shadow: 0 18px 42px rgba(203, 161, 83, .28)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(203, 161, 83, .38)
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .055)
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 204, 164, .75);
  background: rgba(255, 255, 255, .085)
}

.btn-dark {
  background: var(--navy-950);
  color: #fff
}

.btn-dark:hover {
  transform: translateY(-3px);
  background: var(--navy-800)
}

.hero {
  position: relative;
  min-height: 80svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 92px;
  color: #fff;
  background: radial-gradient(circle at 82% 18%, rgba(124, 60, 255, .34), transparent 34%), linear-gradient(135deg, var(--navy-950), var(--navy-900) 48%, #09091a)
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 6, 17, .98) 0%, rgba(3, 6, 17, .84) 44%, rgba(3, 6, 17, .38) 100%), url('../img/novus/hero-justice-bg.png') right center/cover no-repeat;
  opacity: 1;
  pointer-events: none
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--paper));
  pointer-events: none;
  opacity: .14
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr);
  gap: 56px;
  align-items: center;
  padding: 70px 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-300);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-300), transparent)
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance
}

h1 {
  font-size: 4.35rem;
  line-height: .96;
  margin: 22px 0 24px;
  max-width: 760px
}

h2 {
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  line-height: 1.02;
  margin: 0 0 20px;
  color: var(--navy-950)
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.75;
  margin: 0 0 34px
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 22px
}

.trust-strip span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 18px;
  color: rgba(255, 255, 255, .84);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2
}

.trust-strip span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .16)
}

.trust-strip svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--gold-300);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.hero-card {
  position: relative;
  margin-inline: auto;
  width: min(430px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
  box-shadow: 0 42px 100px rgba(0, 0, 0, .4), inset 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(22px)
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 204, 164, .56), rgba(124, 60, 255, .15), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none
}

.hero-card img {
  border-radius: 24px;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, .32))
}

.proof-card {
  position: absolute;
  left: -46px;
  bottom: -28px;
  width: min(330px, 90%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 22px;
  background: rgba(5, 8, 20, .86);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
  backdrop-filter: blur(18px)
}

.proof-card strong {
  display: block;
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 9px
}

.proof-card p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: .91rem;
  line-height: 1.6
}

.section {
  position: relative;
  padding: 70px 0
}

.section-white {
  background: #fff
}

.section-paper {
  background: var(--paper)
}

.section-dark {
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-850));
  color: #fff
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 12%, rgba(124, 60, 255, .18), transparent 30%), radial-gradient(circle at 88% 68%, rgba(203, 161, 83, .09), transparent 35%);
  pointer-events: none
}

.section-dark h2 {
  color: #fff
}

.head {
  max-width: 820px;
  margin-bottom: 56px
}

.head.center {
  text-align: center;
  margin-inline: auto
}

.kicker {
  margin-bottom: 12px;
  color: var(--gold-500);
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase
}

.head p,
.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78
}

.section-dark .head p,
.section-dark .section-copy {
  color: rgba(255, 255, 255, .74)
}

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

.service {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--paper));
  box-shadow: var(--shadow-soft);
  transition: .42s var(--ease)
}

.service::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 161, 83, .13), transparent 68%);
  transition: .42s var(--ease)
}

.service:hover {
  transform: translateY(-8px);
  border-color: rgba(203, 161, 83, .5);
  box-shadow: var(--shadow)
}

.service:hover::after {
  transform: scale(1.25)
}

.num {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-500);
  font-weight: 800
}

.service-heading,
.pillar-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px
}

.service-heading {
  align-items: flex-start
}

.service-heading h3,
.pillar-heading h3 {
  margin: 0
}

.icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 24px 0;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--gold-300);
  box-shadow: 0 16px 34px rgba(3, 6, 17, .18)
}

.icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75
}

.pillar-heading .icon {
  flex: 0 0 62px;
  margin: 0
}

.service h3,
.pillar h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0
}

.service p,
.pillar p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: .96rem
}

.split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center
}

.poster {
  position: relative
}

.poster img {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .44)
}

.poster::after {
  content: "";
  position: absolute;
  inset: 26px -18px -18px 26px;
  border: 1px solid rgba(203, 161, 83, .34);
  border-radius: 34px;
  z-index: -1
}

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

.step {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .075);
  background: rgba(255, 255, 255, .035);
  transition: .35s var(--ease)
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 204, 164, .36);
  background: rgba(255, 255, 255, .055)
}

.step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-size: 1.35rem
}

.step span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  line-height: 1.6
}

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

.pillar {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--paper-2));
  box-shadow: var(--shadow-soft);
  transition: .35s var(--ease)
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(203, 161, 83, .34);
  box-shadow: var(--shadow)
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
  padding: 62px 72px;
  border-radius: 38px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-850));
  box-shadow: 0 32px 90px rgba(3, 6, 17, .28);
  border: 1px solid rgba(255, 255, 255, .06)
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/novus/logo-horizontal-bg.png') right center/contain no-repeat;
  opacity: .095
}

.cta-band>* {
  position: relative;
  z-index: 1
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.35rem)
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.7
}

.cta-band .btn {
  justify-self: end
}

.testimonials {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 8px 38px;
  margin-inline: -8px;
  scrollbar-color: rgba(203, 161, 83, .42) transparent;
  scrollbar-width: thin
}

.testimonial {
  position: relative;
  flex: 0 0 382px;
  min-width: 382px;
  scroll-snap-align: start;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: .35s var(--ease)
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(203, 161, 83, .34);
  box-shadow: var(--shadow)
}

.quote {
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(203, 161, 83, .16);
  pointer-events: none
}

.testimonial p {
  position: relative;
  z-index: 1;
  margin: 20px 0 26px;
  color: hsl(220 15% 27%);
  line-height: 1.72
}

.meta {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(8, 14, 32, .07)
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700
}

.meta strong {
  display: block;
  color: var(--navy-950);
  font-size: .96rem
}

.meta span {
  display: block;
  color: var(--muted);
  font-size: .83rem;
  margin-top: 3px
}

.contact {
  background: linear-gradient(180deg, #fff, var(--paper))
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: start
}

.contact-card,
.form {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-soft)
}

.contact-card {
  padding: 36px
}

.contact-line {
  display: grid;
  gap: 6px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(8, 14, 32, .07)
}

.contact-line:last-child {
  border-bottom: 0
}

.contact-line strong,
.form label {
  color: var(--navy-950);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.contact-line a,
.contact-line span {
  color: var(--muted);
  line-height: 1.55
}

.contact-line a:hover {
  color: var(--gold-500)
}

.form {
  padding: 40px;
  display: grid;
  gap: 19px;
  box-shadow: var(--shadow)
}

.form label {
  display: grid;
  gap: 8px
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid rgba(8, 14, 32, .13);
  border-radius: 16px;
  padding: 16px 17px;
  background: var(--paper-2);
  color: var(--ink);
  font: inherit;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  outline: 0;
  transition: .25s var(--ease)
}

.form input:focus,
.form textarea:focus {
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(203, 161, 83, .14)
}

.form textarea {
  min-height: 138px;
  resize: vertical
}

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

.form-actions .btn {
  flex: 1
}

.note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6
}

.privacy-main {
  min-height: 100vh;
  padding: 150px 0 80px;
  background: linear-gradient(180deg, var(--paper), #fff)
}

.privacy-article {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-soft)
}

.privacy-article h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 12px;
  color: var(--navy-950)
}

.privacy-article h2 {
  margin: 42px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 1.7rem;
  line-height: 1.15
}

.privacy-article p,
.privacy-article li {
  color: hsl(220 15% 28%);
  font-size: 1rem;
  line-height: 1.76
}

.privacy-article ul {
  padding-left: 22px
}

.privacy-article li {
  margin-bottom: 8px
}

.privacy-date {
  margin: 0 0 26px;
  color: var(--muted);
  font-weight: 700
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px
}

.privacy-footer {
  padding: 32px 20px 46px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  text-align: center
}

.privacy-footer p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem
}

.footer {
  background: var(--navy-950);
  color: #fff;
  padding: 76px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 60px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 22px
}

.footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75
}

.footer h3 {
  margin: 0 0 22px;
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.48rem
}

.footer a,
.footer span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .74);
  margin: 14px 0;
  line-height: 1.5
}

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

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  color: rgba(255, 255, 255, .52);
  font-size: .86rem
}

.bottom a {
  color: var(--gold-300)
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 98;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .35);
  transition: .28s var(--ease)
}

.whatsapp:hover {
  transform: scale(1.08) translateY(-3px)
}

.whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s var(--ease)
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0)
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important
  }

  .scroll-reveal {
    opacity: 1;
    transform: none
  }
}

@media (max-width:980px) {
  .hamb {
    display: grid
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, calc(100% - 26px));
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 86px 32px;
    gap: 24px;
    background: rgba(5, 8, 20, .98);
    backdrop-filter: blur(22px);
    border-left: 1px solid var(--line-dark);
    transition: right .46s var(--ease);
    z-index: 108
  }

  .menu.open {
    right: 0
  }

  .menu a {
    text-align: center;
    font-size: 1.08rem
  }

  .nav-cta {
    width: 100%
  }

  .brand-logo {
    height: 50px;
    max-width: 210px
  }

  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 46px
  }

  .hero {
    text-align: center
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(3, 6, 17, .98), rgba(3, 6, 17, .78)), url('../img/novus/hero-justice-bg.png') center/cover no-repeat
  }

  h1 {
    max-width: 720px;
    margin-inline: auto;
    font-size: 4rem
  }

  .eyebrow {
    justify-content: center
  }

  .eyebrow::before {
    display: none
  }

  .hero-actions,
  .trust-strip {
    justify-content: center
  }

  .proof-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 20px auto 0;
    width: 100%
  }

  .service-grid,
  .pillars,
  .steps {
    grid-template-columns: 1fr
  }

  .poster {
    order: 2;
    max-width: 520px;
    margin: auto
  }

  .poster::after {
    display: none
  }

  .cta-band {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 44px
  }

  .cta-band .btn {
    justify-self: center
  }

  .section {
    padding: 82px 0
  }
}

@media (max-width:560px) {
  .container {
    width: min(100% - 28px, 1180px)
  }

  .header {
    height: 78px
  }

  .brand-logo {
    height: 44px;
    max-width: 184px
  }

  .hero {
    padding-top: 78px
  }

  .hero-grid {
    padding: 50px 0 44px
  }

  h1 {
    font-size: 3.05rem;
    line-height: 1
  }

  .hero-card {
    padding: 18px;
    border-radius: 28px
  }

  .hero-card img {
    border-radius: 18px
  }

  .hero-actions,
  .form-actions {
    flex-direction: column
  }

  .btn {
    width: 100%;
    padding-inline: 20px
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px
  }

  .trust-strip span {
    justify-content: center;
    min-height: 58px;
    padding: 8px 5px;
    padding-right: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    font-size: .68rem;
    line-height: 1.05;
    text-align: center
  }

  .trust-strip span::after {
    display: none
  }

  .trust-strip svg {
    width: 15px;
    height: 15px;
    flex-basis: 15px
  }

  .service,
  .pillar,
  .form,
  .contact-card {
    padding: 26px
  }

  .service-heading,
  .pillar-heading {
    gap: 12px
  }

  .service-heading .num {
    font-size: 2.45rem
  }

  .pillar-heading .icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    border-radius: 16px
  }

  .pillar-heading .icon svg {
    width: 25px;
    height: 25px
  }

  .testimonial {
    flex-basis: 86%;
    min-width: 86%;
    padding: 28px
  }

  .cta-band {
    padding: 34px 24px;
    border-radius: 30px
  }

  .bottom {
    flex-direction: column;
    text-align: center
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px
  }

  .privacy-main {
    padding: 112px 0 56px
  }

  .privacy-article {
    width: min(100% - 28px, 860px);
    padding: 30px 24px;
    border-radius: 24px
  }
}


:root {
  --navy-950: #001030;
  --navy-900: #06163d;
  --navy-850: #102050;
  --navy-800: #1b2d67;
  --gold-500: #705090;
  --gold-300: #d8dbee;
  --violet-500: #a88cff;
  --paper: #f4f4f8;
  --paper-2: #e9eaf2;
  --ink: #001030;
  --muted: #5a6074;
  --line: rgba(0, 16, 48, .11);
  --line-dark: rgba(244, 244, 248, .13);
  --shadow: 0 28px 78px rgba(0, 16, 48, .18);
  --shadow-soft: 0 18px 48px rgba(0, 16, 48, .10);
}

.header {
  background: rgba(0, 16, 48, .78);
}

.header.scrolled,
.footer {
  background: rgba(0, 16, 48, .97);
}

.menu a:hover {
  color: #f4f4f8;
}

.hero {
  background:
    radial-gradient(circle at 80% 16%, rgba(168, 140, 255, .28), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(112, 80, 144, .24), transparent 36%),
    linear-gradient(135deg, #001030 0%, #102050 58%, #241846 100%);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 16, 48, .98) 0%, rgba(0, 16, 48, .88) 44%, rgba(16, 32, 80, .46) 100%),
    url('../img/novus/hero-justice-bg.png') right center/cover no-repeat;
}

.eyebrow,
.kicker,
.num,
.footer h3,
.bottom a {
  color: #a88cff;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, #f4f4f8 0%, #d9ddeb 52%, #b9bed1 100%);
  color: #001030 !important;
  box-shadow: 0 18px 42px rgba(244, 244, 248, .18), 0 10px 28px rgba(168, 140, 255, .18);
}

.btn-primary:hover {
  box-shadow: 0 24px 56px rgba(244, 244, 248, .24), 0 14px 34px rgba(168, 140, 255, .24);
}

.btn-dark {
  background: linear-gradient(135deg, #001030, #102050);
}

.btn-dark:hover {
  background: linear-gradient(135deg, #102050, #705090);
}

.btn-ghost:hover {
  border-color: rgba(168, 140, 255, .78);
  background: rgba(168, 140, 255, .12);
}

.trust-strip svg {
  color: #a88cff;
}

.hero-card {
  background: linear-gradient(180deg, rgba(244, 244, 248, .11), rgba(244, 244, 248, .035));
}

.hero-card::before {
  background: linear-gradient(135deg, rgba(244, 244, 248, .62), rgba(168, 140, 255, .34), transparent);
}

.proof-card {
  background: rgba(0, 16, 48, .90);
}

.proof-card strong {
  color: #d8dbee;
}

.section-dark,
.cta-band {
  background: linear-gradient(135deg, #001030, #102050 62%, #281f55);
}

.section-dark::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(168, 140, 255, .18), transparent 30%),
    radial-gradient(circle at 88% 68%, rgba(112, 80, 144, .23), transparent 36%);
}

.service,
.pillar,
.testimonial,
.form,
.contact-card,
.privacy-article {
  background: linear-gradient(180deg, #fff, #f4f4f8);
}

.service:hover,
.pillar:hover,
.testimonial:hover {
  border-color: rgba(168, 140, 255, .46);
}

.icon,
.avatar {
  background: linear-gradient(135deg, #001030, #102050 62%, #705090);
  color: #f4f4f8;
}

.step:hover {
  border-color: rgba(168, 140, 255, .38);
}

.form input:focus,
.form textarea:focus {
  border-color: #705090;
  box-shadow: 0 0 0 4px rgba(168, 140, 255, .16);
}

.privacy-main {
  background:
    radial-gradient(circle at 92% 0%, rgba(168, 140, 255, .16), transparent 30%),
    linear-gradient(180deg, #f4f4f8, #fff);
}

.privacy-footer {
  background: #001030;
  border-top-color: rgba(244, 244, 248, .10);
}

.privacy-footer p {
  color: rgba(244, 244, 248, .72);
}

.whatsapp {
  box-shadow: 0 14px 34px rgba(0, 16, 48, .24);
}

@media (max-width:980px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 16, 48, .98), rgba(16, 32, 80, .82)),
      url('../img/novus/hero-justice-bg.png') center/cover no-repeat;
  }
}
