/* ===========================================
   NP EMPRÉSTIMOS — CSS PROFISSIONAL v3
   Design: Roxo escuro + teal/mint accent
   =========================================== */

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

/* ---------- VARIÁVEIS ---------- */
:root {
  --purple: #5420a4;
  --purple-dk: #330d78;
  --purple-mid: #6b31c4;
  --purple-lt: #8b55e0;
  --teal: #14b8a6;
  --teal-lt: #2dd4bf;
  --teal-dk: #0f9d8d;
  --white: #ffffff;
  --off-white: #f8f7fc;
  --surface: #faf9fe;
  --border: rgba(84, 32, 164, 0.1);
  --text: #1a0a3b;
  --text-2: #4a3872;
  --text-3: #8070a8;

  --grad-brand: linear-gradient(135deg, #330d78 0%, #5420a4 55%, #7b3fd0 100%);
  --grad-teal: linear-gradient(135deg, #0f9d8d, #14b8a6, #2dd4bf);
  --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);

  --shadow-sm: 0 1px 3px rgba(84, 32, 164, 0.08), 0 4px 16px rgba(84, 32, 164, 0.06);
  --shadow-md: 0 4px 20px rgba(84, 32, 164, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 48px rgba(84, 32, 164, 0.18);
  --shadow-teal: 0 8px 30px rgba(20, 184, 166, 0.25);

  --r-sm: 0.5rem;
  --r-md: 0.875rem;
  --r-lg: 1.25rem;
  --r-xl: 2rem;
  --r-full: 999px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --font: 'Inter', system-ui, sans-serif;
}

/* ---------- BASE ---------- */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-section {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal {
  transform: translateY(2.5rem);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal-left {
  transform: translateX(-3rem);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal-right {
  transform: translateX(3rem);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal-up {
  transform: translateY(2rem);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

.reveal-section {
  transition: opacity 1s var(--ease-out);
}

.reveal.in,
.reveal-left.in,
.reveal-right.in,
.reveal-up.in,
.reveal-section.in {
  opacity: 1;
  transform: none;
}

/* Stagger delay for children */
.step:nth-child(1),
.rate-card:nth-child(1) {
  transition-delay: 0ms;
}

.step:nth-child(2),
.rate-card:nth-child(2) {
  transition-delay: 100ms;
}

.step:nth-child(3),
.rate-card:nth-child(3) {
  transition-delay: 200ms;
}

.step:nth-child(4),
.rate-card:nth-child(4) {
  transition-delay: 300ms;
}

.step-connector:nth-child(2) {
  transition-delay: 80ms;
}

.step-connector:nth-child(4) {
  transition-delay: 180ms;
}

.step-connector:nth-child(6) {
  transition-delay: 280ms;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

/* ---------- TYPOGRAPHY HELPERS ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--purple-dk);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 38rem;
  line-height: 1.65;
  margin-bottom: 3rem;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  background: var(--purple);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: background .25s, transform .25s var(--ease-spring), box-shadow .25s;
  box-shadow: 0 4px 16px rgba(84, 32, 164, .3);
}

.btn-primary:hover {
  background: var(--purple-mid);
  box-shadow: 0 8px 24px rgba(84, 32, 164, .4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary.btn-lg {
  padding: .85rem 2rem;
  font-size: 1rem;
}

.btn-arrow {
  display: inline-block;
  transition: transform .25s var(--ease-spring);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.link-ghost {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}

.link-ghost:hover {
  color: #fff;
}

.btn-sim {
  width: 100%;
  padding: .65rem 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, .15);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  font-weight: 500;
  transition: all .25s;
  margin-top: .75rem;
}

.btn-sim:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-1px);
}

.btn-sim--accent {
  background: var(--teal);
  border-color: var(--teal);
  color: #0d3d38;
  font-weight: 600;
}

.btn-sim--accent:hover {
  background: var(--teal-lt);
  border-color: var(--teal-lt);
  box-shadow: var(--shadow-teal);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2.5rem;
  background: var(--teal);
  color: #0a2e2a;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-teal);
  transition: all .3s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: translateX(-100%);
  animation: cta-shine 3s ease-in-out infinite;
}

.btn-cta img {
  width: 2rem;
  filter: brightness(.4) saturate(0) invert(1);
}

.btn-cta:hover {
  background: var(--teal-lt);
  box-shadow: 0 16px 40px rgba(20, 184, 166, .4);
  transform: translateY(-3px) scale(1.02);
}

@keyframes cta-shine {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }

  100% {
    transform: translateX(200%) skewX(-15deg);
  }
}

/* ==========================================
   SPLASH
   ========================================== */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  animation: splash-exit 1.4s var(--ease-out) .8s forwards;
}

#splash img {
  width: 5rem;
  filter: drop-shadow(0 0 20px rgba(20, 184, 166, .4));
  animation: splash-logo 1.2s var(--ease-spring) forwards;
  z-index: 2;
}

.splash-ring {
  position: absolute;
  width: 10rem;
  height: 10rem;
  border: 1.5px solid rgba(20, 184, 166, .25);
  border-radius: 50%;
  animation: splash-ring 1.4s var(--ease-out) forwards;
}

@keyframes splash-ring {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.6);
    opacity: .6;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes splash-logo {
  0% {
    transform: scale(0.3) rotate(-20deg);
    opacity: 0;
  }

  70% {
    transform: scale(1.1) rotate(3deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

@keyframes splash-exit {
  to {
    opacity: 0;
    pointer-events: none;
  }
}

/* ==========================================
   NOTICE BAR
   ========================================== */
#notice {
  width: 100%;
  text-align: center;
  padding: .5rem 1.5rem;
  font-size: .78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  background-color: #330d78;
  letter-spacing: .01em;
}

#notice span {
  margin-right: .4rem;
}

#notice strong {
  color: rgba(255, 255, 255, .95);
  font-weight: 600;
}

/* ==========================================
   HEADER
   ========================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 4rem;
  background: rgba(51, 13, 120, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .3s, box-shadow .3s;
}

#site-header.scrolled {
  background: rgba(40, 8, 100, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

.header-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.brand img {
  width: 2.2rem;
  filter: drop-shadow(0 0 6px rgba(20, 184, 166, .35));
  transition: transform .3s var(--ease-spring);
}

.brand:hover img {
  transform: rotate(-8deg) scale(1.08);
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  padding: .4rem .75rem;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}

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

header .btn-primary {
  font-size: .82rem;
  padding: .55rem 1.1rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 2rem;
  padding: .3rem;
  background: transparent;
  border: none;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, .8);
  border-radius: 2px;
  transition: all .3s;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  width: 100%;
  min-height: 100dvh;
  background: var(--grad-brand);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
}

/* Animated background orbs */
.hero-bg,
.footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.hero-bg .orb-1 {
  width: 35rem;
  height: 35rem;
  background: var(--purple-lt);
  top: -10rem;
  right: -8rem;
  animation: orb-drift 12s ease-in-out infinite;
}

.hero-bg .orb-2 {
  width: 25rem;
  height: 25rem;
  background: var(--teal);
  bottom: -8rem;
  left: -5rem;
  opacity: .2;
  animation: orb-drift 16s ease-in-out infinite reverse;
}

.hero-bg .orb-3 {
  width: 18rem;
  height: 18rem;
  background: #a855f7;
  top: 40%;
  left: 40%;
  opacity: .15;
  animation: orb-drift 20s ease-in-out infinite;
}

.footer-bg .orb-1 {
  width: 30rem;
  height: 30rem;
  background: var(--purple-lt);
  top: -8rem;
  left: -5rem;
  animation: orb-drift 14s ease-in-out infinite;
}

.footer-bg .orb-2 {
  width: 20rem;
  height: 20rem;
  background: var(--teal);
  bottom: -5rem;
  right: -3rem;
  opacity: .2;
  animation: orb-drift 18s ease-in-out infinite reverse;
}

@keyframes orb-drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(2rem, -3rem) scale(1.05);
  }

  66% {
    transform: translate(-2rem, 1.5rem) scale(.95);
  }
}

/* Grid lines decoration */
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  background: rgba(20, 184, 166, .15);
  border: 1px solid rgba(20, 184, 166, .3);
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
  color: var(--teal-lt);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation: badge-in .7s var(--ease-out) 1.5s both;
}

@keyframes badge-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
}

.hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: hero-h1 .8s var(--ease-out) 1.6s both;
}

.hero-text h1 em {
  font-style: normal;
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes hero-h1 {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  max-width: 32rem;
  margin-bottom: 2rem;
  animation: hero-h1 .8s var(--ease-out) 1.75s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: hero-h1 .8s var(--ease-out) 1.9s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: hero-h1 .8s var(--ease-out) 2.05s both;
}

.stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
}

.stat-div {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, .15);
}

/* ---- Simulators ---- */
.simulators {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: sims-in .9s var(--ease-out) 2s both;
}

@keyframes sims-in {
  from {
    opacity: 0;
    transform: translateX(2rem);
  }
}

.sim-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease-spring), box-shadow .3s;
}

.sim-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
}

.sim-card:hover {
  border-color: rgba(255, 255, 255, .2);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

.sim-card--featured {
  border-color: rgba(20, 184, 166, .3);
}

.sim-card--featured::before {
  background: var(--grad-teal);
}

.sim-card--featured:hover {
  border-color: rgba(20, 184, 166, .5);
  box-shadow: 0 16px 40px rgba(20, 184, 166, .15);
}

.sim-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .6rem;
  border-radius: var(--r-full);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.sim-badge--high {
  background: rgba(220, 53, 69, .15);
  color: #fc8181;
  border: 1px solid rgba(220, 53, 69, .2);
}

.sim-badge--low {
  background: rgba(20, 184, 166, .15);
  color: var(--teal-lt);
  border: 1px solid rgba(20, 184, 166, .25);
}

.sim-title {
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1rem;
}

.sim-field {
  margin-bottom: .75rem;
}

.sim-field label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}

.display-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal-lt) !important;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .5rem;
  transition: transform .15s var(--ease-spring);
}

.display-value.pulse {
  animation: val-pulse .3s var(--ease-spring);
}

@keyframes val-pulse {
  50% {
    transform: scale(1.05);
  }
}

/* Range */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .12);
  border-radius: var(--r-full);
  outline: none;
  cursor: pointer;
  transition: background .1s;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--teal-lt);
  border: 2px solid rgba(255, 255, 255, .8);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .2);
  transition: transform .2s var(--ease-spring), box-shadow .2s;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, .25);
}

input[type="range"]::-moz-range-thumb {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--teal-lt);
  border: 2px solid rgba(255, 255, 255, .8);
}

.sim-note {
  font-size: .7rem;
  color: rgba(255, 255, 255, .35);
  line-height: 1.5;
  margin-top: .5rem;
}

/* ==========================================
   STEPS / COMO FUNCIONA
   ========================================== */
.section-steps {
  padding: 6rem 0;
  background: var(--surface);
}

.section-steps .section-label {
  color: var(--teal-dk);
}

.section-steps .section-title {
  color: var(--purple-dk);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.step-num {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(84, 32, 164, .3);
  position: relative;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}

.step:hover .step-num {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(84, 32, 164, .4);
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-dk);
  margin-bottom: .5rem;
}

.step p {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.6;
}

.step-connector {
  flex-shrink: 0;
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), rgba(84, 32, 164, .2));
  margin-top: 1.75rem;
  border-radius: 2px;
}

/* ==========================================
   INFO SECTIONS
   ========================================== */
.section-info {
  padding: 6rem 0;
  background: var(--surface);
}

.section-info--dark {
  background: linear-gradient(160deg, #1a0a3b 0%, #2d1063 100%);
}

.section-info--dark .section-label {
  color: var(--teal-lt);
}

.section-info--dark .section-title {
  color: #fff;
}

.section-info--dark p {
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
}

.section-info--dark strong {
  color: var(--teal-lt);
  font-weight: 600;
}

.section-info--dark .info-list li {
  color: rgba(255, 255, 255, .75);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.info-grid--reverse {
  direction: rtl;
}

.info-grid--reverse>* {
  direction: ltr;
}

.info-text .section-title {
  margin-top: .25rem;
}

.info-text p {
  font-size: 1rem;
  color: #7a718b;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.info-text strong {
  color: var(--purple);
  font-weight: 600;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1rem;
}

.info-list li {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Image card */
.img-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--purple-dk), var(--purple));
}

.img-card--light {
  background: linear-gradient(135deg, var(--off-white), #e8e0ff);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.np-img {
  width: 100%;
  height: 100%;
  background: url('./assets/nota_promissoria.png') center/cover no-repeat;
  opacity: .7;
  transform: scale(1.02);
  transition: transform .6s var(--ease-out);
}

.img-card:hover .np-img {
  transform: scale(1.05);
}

.car-img {
  max-height: 12rem;
  filter: drop-shadow(0 12px 30px rgba(84, 32, 164, .2));
  transition: transform .4s var(--ease-spring);
}

.img-card:hover .car-img {
  transform: translateY(-8px) rotate(-3deg);
}

.img-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .9);
  font-size: .72rem;
  font-weight: 600;
  padding: .35rem .75rem;
  border-radius: var(--r-full);
  letter-spacing: .06em;
}

.img-badge--accent {
  background: rgba(20, 184, 166, .15);
  border-color: rgba(20, 184, 166, .3);
  color: var(--teal-dk);
}

/* ==========================================
   RATES
   ========================================== */
.section-rates {
  padding: 6rem 0;
  background: var(--off-white);
}

.section-rates .section-label {
  color: var(--teal-dk);
}

.section-rates .section-title {
  color: var(--purple-dk);
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.rate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
  box-shadow: var(--shadow-sm);
}

.rate-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(84, 32, 164, .2);
}

.rate-card--accent {
  background: linear-gradient(135deg, #f0fdf9 0%, #e6fffb 100%);
  border-color: rgba(20, 184, 166, .3);
}

.rate-card--accent:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}

.rate-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.rate-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-dk);
  margin-bottom: .5rem;
}

.rate-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -.03em;
  line-height: 1;
  margin-block: .75rem;
}

.rate-card--accent .rate-value {
  color: var(--teal-dk);
}

.rate-value small {
  font-size: .85rem;
  font-weight: 600;
  opacity: .7;
  margin-left: .1rem;
}

.rate-card p {
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  width: 100%;
  background: var(--grad-brand);
  position: relative;
  overflow: hidden;
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding-block: 6rem;
}

.footer-content {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-logo {
  width: 3.5rem;
  filter: drop-shadow(0 0 16px rgba(20, 184, 166, .4));
}

footer h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

footer p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
}

.footer-note {
  font-size: .75rem;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .04em;
}

.footer-cta-link {
  margin-top: .5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.25rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .simulators {
    flex-direction: row;
  }

  .sim-card {
    flex: 1;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .info-grid--reverse {
    direction: ltr;
  }

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

  .rate-card:nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: 1.25rem;
  }

  /* Header */
  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
    gap: .25rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: .65rem 1rem;
  }

  header .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  #site-header {
    height: auto;
  }

  .header-inner {
    flex-wrap: wrap;
    padding-block: .75rem;
  }

  .site-nav {
    order: 3;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: .5rem;
  }

  /* Hero */
  .hero {
    padding: 5rem 0 3rem;
    min-height: auto;
  }

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

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat strong {
    font-size: 1.1rem;
  }

  /* Simulators */
  .simulators {
    flex-direction: column;
  }

  /* Steps */
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .step {
    max-width: 18rem;
  }

  .step-connector {
    width: 2px;
    height: 2.5rem;
    background: linear-gradient(180deg, var(--purple), rgba(84, 32, 164, .2));
    margin-top: 0;
  }

  /* Info */
  .info-grid {
    gap: 2.5rem;
  }

  .img-card {
    aspect-ratio: 16/9;
  }

  .car-img {
    max-height: 9rem;
  }

  /* Rates */
  .rates-grid {
    grid-template-columns: 1fr;
  }

  .rate-card:nth-child(3) {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .rate-value {
    font-size: 2rem;
  }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up,
  .reveal-section {
    opacity: 1 !important;
    transform: none !important;
  }
}