:root {
  --brand: #179ae6;
  --brand-hover: #1385cc;
  --brand-light: rgba(23, 154, 230, 0.1);
  --brand-xlight: rgba(23, 154, 230, 0.06);
  --primary: #030213;
  --secondary2: #1e293b;
  --muted-fg: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-blue: #f0f7ff;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --radius: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --font:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --max-w: 1280px;
}
.nrp-page .nrp-landing *,
.nrp-page .nrp-landing *::before,
.nrp-page .nrp-landing *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.nrp-page .nrp-landing {
  scroll-behavior: smooth;
  font-size: 16px;
}
.nrp-page .nrp-landing {
  font-family: var(--font);
  color: var(--primary);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.nrp-page .nrp-landing img {
  max-width: 100%;
  display: block;
}
.nrp-page .nrp-landing a {
  color: inherit;
  text-decoration: none;
}
.nrp-page .nrp-landing ul {
  list-style: none;
}
.nrp-page .nrp-landing .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nrp-page .nrp-landing .section {
  padding: 5rem 0;
}
.nrp-page .nrp-landing .section--soft {
  background: var(--bg-soft);
}
.nrp-page .nrp-landing .section--blue {
  background: var(--bg-blue);
}
.nrp-page .nrp-landing .section--dark {
  background: var(--bg-dark);
}
.nrp-page .nrp-landing .label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand);
  background: var(--brand-light);
  padding: 0.3rem 0.875rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.nrp-page .nrp-landing .label--light {
  color: #7dd3fc;
  background: rgba(125, 211, 252, 0.12);
}
.nrp-page .nrp-landing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition:
    background 0.15s,
    box-shadow 0.15s,
    transform 0.15s;
  white-space: nowrap;
  font-family: var(--font);
  text-decoration: none;
}
.nrp-page .nrp-landing .btn--brand {
  background: var(--brand);
  color: #fff;
}
.nrp-page .nrp-landing .btn--brand:hover {
  background: var(--brand-hover);
  box-shadow: 0 4px 14px rgba(23, 154, 230, 0.35);
  transform: translateY(-1px);
}
.nrp-page .nrp-landing .btn--outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.nrp-page .nrp-landing .btn--outline:hover {
  background: var(--brand-xlight);
}
.nrp-page .nrp-landing .btn--white {
  background: #fff;
  color: var(--primary);
}
.nrp-page .nrp-landing .btn--white:hover {
  background: var(--bg-soft);
  box-shadow: var(--shadow-md);
}
.nrp-page .nrp-landing .btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.nrp-page .nrp-landing .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}
.nrp-page .nrp-landing .btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}
.nrp-page .nrp-landing .sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.nrp-page .nrp-landing .sec-head h2 {
  font-size: clamp(1.4rem, 2.75vw, 1.875rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.nrp-page .nrp-landing .sec-head p {
  color: var(--muted-fg);
  font-size: 1.0625rem;
}
.nrp-page .nrp-landing .sec-head--dark h2 {
  color: #fff;
}
.nrp-page .nrp-landing .sec-head--dark p {
  color: rgba(255, 255, 255, 0.65);
}
.nrp-page .nrp-landing .topbar {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.nrp-page .nrp-landing .topbar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nrp-page .nrp-landing .header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nrp-page .nrp-landing .header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nrp-page .nrp-landing .header__logo img {
  height: 2.875rem;
  width: auto;
}
.nrp-page .nrp-landing .header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nrp-page .nrp-landing .header__nav a {
  font-size: 0.9375rem;
  color: #475569;
  font-weight: 500;
  transition: color 0.15s;
}
.nrp-page .nrp-landing .header__nav a:hover {
  color: var(--brand);
}
.nrp-page .nrp-landing .header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nrp-page .nrp-landing .header__lang {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  padding: 0.4rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition:
    border-color 0.15s,
    color 0.15s;
}
.nrp-page .nrp-landing .header__lang:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.nrp-page .nrp-landing .header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  color: var(--primary);
}
.nrp-page .nrp-landing .hero {
  background: linear-gradient(135deg, #09182e 0%, #0d3556 50%, #0c4d7a 100%);
  padding: 4.5rem 0 0;
  position: relative;
  overflow: hidden;
}
.nrp-page .nrp-landing .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 70% 50%,
    rgba(23, 154, 230, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.nrp-page .nrp-landing .hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}
.nrp-page .nrp-landing .hero__pitch {
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}
.nrp-page .nrp-landing .hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.nrp-page .nrp-landing .hero h1 em {
  font-style: normal;
  color: #7dd3fc;
}
.nrp-page .nrp-landing .hero__sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.875rem;
  line-height: 1.6;
}
.nrp-page .nrp-landing .hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}
.nrp-page .nrp-landing .hero__bullet {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}
.nrp-page .nrp-landing .hero__bullet-icon {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nrp-page .nrp-landing .hero__bullet-icon svg {
  width: 0.75rem;
  height: 0.75rem;
  color: #fff;
}
.nrp-page .nrp-landing .hero__ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.nrp-page .nrp-landing .hero__trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.nrp-page .nrp-landing .hero__stat strong {
  display: block;
  font-size: 1.625rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.nrp-page .nrp-landing .hero__stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.2rem;
  display: block;
}
.nrp-page .nrp-landing .hero__card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  top: 1.5rem;
}
.nrp-page .nrp-landing .hero__card-head {
  margin-bottom: 1.5rem;
}
.nrp-page .nrp-landing .hero__card-head h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.nrp-page .nrp-landing .hero__card-head p {
  font-size: 0.875rem;
  color: var(--muted-fg);
}
.nrp-page .nrp-landing .form-group {
  margin-bottom: 0.875rem;
}
.nrp-page .nrp-landing .form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary2);
  margin-bottom: 0.3rem;
}
.nrp-page .nrp-landing .form-group input,
.nrp-page .nrp-landing .form-group select {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: var(--font);
  color: var(--primary);
  background: #fff;
  transition: border-color 0.15s;
  outline: none;
}
.nrp-page .nrp-landing .form-group input:focus,
.nrp-page .nrp-landing .form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(23, 154, 230, 0.12);
}
.nrp-page .nrp-landing .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.nrp-page .nrp-landing .form-submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.9rem;
  font-size: 1rem;
}
.nrp-page .nrp-landing .form-note {
  font-size: 0.775rem;
  color: var(--muted-fg);
  text-align: center;
  margin-top: 0.625rem;
}
.nrp-page .nrp-landing .form-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.875rem 0;
  color: var(--muted-fg);
  font-size: 0.8rem;
}
.nrp-page .nrp-landing .form-divider::before,
.nrp-page .nrp-landing .form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.nrp-page .nrp-landing .form-tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition:
    border-color 0.15s,
    color 0.15s;
}
.nrp-page .nrp-landing .form-tel-link:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.nrp-page .nrp-landing .form-tel-link svg {
  color: var(--brand);
}
.nrp-page .nrp-landing .platforms {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.nrp-page .nrp-landing .platforms__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.nrp-page .nrp-landing .platforms__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nrp-page .nrp-landing .platform-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #374151;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.nrp-page .nrp-landing .platform-badge--airbnb {
  color: #ff5a5f;
  border-color: rgba(255, 90, 95, 0.2);
  background: rgba(255, 90, 95, 0.04);
}
.nrp-page .nrp-landing .platform-badge--booking {
  color: #003580;
  border-color: rgba(0, 53, 128, 0.2);
  background: rgba(0, 53, 128, 0.04);
}
.nrp-page .nrp-landing .platform-badge--vrbo {
  color: #1f5da0;
  border-color: rgba(31, 93, 160, 0.2);
  background: rgba(31, 93, 160, 0.04);
}
.nrp-page .nrp-landing .platform-badge svg {
  width: 1rem;
  height: 1rem;
}
.nrp-page .nrp-landing .trust-stats {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.nrp-page .nrp-landing .trust-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.nrp-page .nrp-landing .trust-stat {
  background: #fff;
  padding: 1.5rem;
  text-align: center;
}
.nrp-page .nrp-landing .trust-stat__num {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
}
.nrp-page .nrp-landing .trust-stat__label {
  font-size: 0.8125rem;
  color: var(--muted-fg);
  margin-top: 0.35rem;
  font-weight: 500;
}
.nrp-page .nrp-landing .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.nrp-page .nrp-landing .content-grid--rev {
}
.nrp-page .nrp-landing .content-icon-wrap {
  width: 3rem;
  height: 3rem;
  background: var(--brand-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--brand);
}
.nrp-page .nrp-landing .content-icon-wrap svg {
  width: 1.375rem;
  height: 1.375rem;
}
.nrp-page .nrp-landing h2.content-h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 0.875rem;
}
.nrp-page .nrp-landing .content-intro {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  margin-bottom: 1.25rem;
}
.nrp-page .nrp-landing .check-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.625rem;
}
.nrp-page .nrp-landing .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #374151;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.nrp-page .nrp-landing .check-list li:last-child {
  border-bottom: none;
}
.nrp-page .nrp-landing .check-list__icon {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.nrp-page .nrp-landing .check-list__icon svg {
  width: 0.75rem;
  height: 0.75rem;
  color: #fff;
  stroke-width: 3;
}
.nrp-page .nrp-landing .content-note {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
}
.nrp-page .nrp-landing .visual-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.nrp-page .nrp-landing .visual-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.nrp-page .nrp-landing .visual-panel {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}
.nrp-page .nrp-landing .visual-panel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.nrp-page .nrp-landing .visual-panel__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--secondary2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nrp-page .nrp-landing .visual-panel__dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}
.nrp-page .nrp-landing .visual-panel__dot--blue {
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(23, 154, 230, 0.2);
}
.nrp-page .nrp-landing .msg-thread {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.nrp-page .nrp-landing .msg-bubble {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-lg);
  font-size: 0.8375rem;
  line-height: 1.45;
}
.nrp-page .nrp-landing .msg-bubble--in {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--secondary2);
  align-self: flex-start;
  max-width: 85%;
  border-bottom-left-radius: 0.25rem;
}
.nrp-page .nrp-landing .msg-bubble--out {
  background: var(--brand);
  color: #fff;
  align-self: flex-end;
  max-width: 85%;
  border-bottom-right-radius: 0.25rem;
}
.nrp-page .nrp-landing .msg-meta {
  font-size: 0.7rem;
  color: var(--muted-fg);
  margin-bottom: 0.2rem;
}
.nrp-page .nrp-landing .rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.nrp-page .nrp-landing .stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.nrp-page .nrp-landing .rating-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary2);
}
.nrp-page .nrp-landing .service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.nrp-page .nrp-landing .service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.875rem;
}
.nrp-page .nrp-landing .service-item__check {
  width: 1.25rem;
  height: 1.25rem;
  max-width: 1.25rem;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nrp-page .nrp-landing .service-item__check svg {
  width: 0.7rem;
  height: 0.7rem;
  color: #16a34a;
  stroke-width: 3;
}
.nrp-page .nrp-landing .service-item span {
  color: var(--secondary2);
  font-weight: 500;
  flex: 1;
}
.nrp-page .nrp-landing .service-item__time {
  font-size: 0.75rem;
  color: var(--muted-fg);
}
.nrp-page .nrp-landing .panel-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--brand-xlight);
  border-radius: var(--radius);
  border: 1px solid rgba(23, 154, 230, 0.15);
}
.nrp-page .nrp-landing .panel-stat__label {
  font-size: 0.8125rem;
  color: var(--muted-fg);
}
.nrp-page .nrp-landing .panel-stat__val {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
}
.nrp-page .nrp-landing .compliance-step {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.nrp-page .nrp-landing .compliance-step:last-child {
  border-bottom: none;
}
.nrp-page .nrp-landing .compliance-step__num {
  width: 1.625rem;
  height: 1.625rem;
  min-width: 1.625rem;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}
.nrp-page .nrp-landing .compliance-step__text strong {
  font-size: 0.875rem;
  color: var(--secondary2);
  font-weight: 700;
  display: block;
}
.nrp-page .nrp-landing .compliance-step__text span {
  font-size: 0.8rem;
  color: var(--muted-fg);
}
.nrp-page .nrp-landing .compliance-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: #15803d;
  font-weight: 600;
}
.nrp-page .nrp-landing .compliance-badge svg {
  width: 1rem;
  height: 1rem;
  color: #16a34a;
}
.nrp-page .nrp-landing .clm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.nrp-page .nrp-landing .clm-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.nrp-page .nrp-landing .clm-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}
.nrp-page .nrp-landing .clm-card--accent {
  background: rgba(23, 154, 230, 0.15);
  border-color: rgba(23, 154, 230, 0.4);
}
.nrp-page .nrp-landing .clm-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #7dd3fc;
}
.nrp-page .nrp-landing .clm-icon--accent {
  background: rgba(23, 154, 230, 0.3);
  color: #fff;
}
.nrp-page .nrp-landing .clm-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.nrp-page .nrp-landing .clm-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.nrp-page .nrp-landing .clm-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}
.nrp-page .nrp-landing .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}
.nrp-page .nrp-landing .steps-grid::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--brand), rgba(23, 154, 230, 0.2));
  z-index: 0;
  pointer-events: none;
}
.nrp-page .nrp-landing .step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.nrp-page .nrp-landing .step-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 4px rgba(23, 154, 230, 0.18);
}
.nrp-page .nrp-landing .step-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.nrp-page .nrp-landing .step-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
}
.nrp-page .nrp-landing .tarifs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin: 3.5rem auto 0;
}
.nrp-page .nrp-landing .tarif {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: box-shadow 0.2s;
}
.nrp-page .nrp-landing .tarif:hover {
  box-shadow: var(--shadow-lg);
}
.nrp-page .nrp-landing .tarif--featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(23, 154, 230, 0.1);
}
.nrp-page .nrp-landing .tarif--featured:hover {
  box-shadow:
    0 0 0 4px rgba(23, 154, 230, 0.15),
    var(--shadow-lg);
}
.nrp-page .nrp-landing .tarif__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.nrp-page .nrp-landing .tarif__pct {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.nrp-page .nrp-landing .tarif__pct em {
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  color: var(--muted-fg);
}
.nrp-page .nrp-landing .tarif__name {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0.75rem 0 1.375rem;
  color: var(--secondary2);
}
.nrp-page .nrp-landing .tarif__list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.nrp-page .nrp-landing .tarif__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--muted-fg);
  border-bottom: 1px solid var(--border);
}
.nrp-page .nrp-landing .tarif__list li:last-child {
  border-bottom: none;
}
.nrp-page .nrp-landing .tarif__list li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  background: var(--brand);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.nrp-page .nrp-landing .faq-container {
  max-width: 760px;
  margin: 3.5rem auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.nrp-page .nrp-landing .faq-item {
  border-bottom: 1px solid var(--border);
}
.nrp-page .nrp-landing .faq-item:last-child {
  border-bottom: none;
}
.nrp-page .nrp-landing .faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font);
  transition: background 0.15s;
}
.nrp-page .nrp-landing .faq-btn:hover {
  background: var(--bg-soft);
}
.nrp-page .nrp-landing .faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  background: var(--brand-light);
  border-radius: 50%;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nrp-page .nrp-landing .faq-btn[aria-expanded="true"] .faq-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}
.nrp-page .nrp-landing .faq-answer {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.2s;
  line-height: 1.65;
}
.nrp-page .nrp-landing .faq-answer.open {
  max-height: 200px;
  padding-bottom: 1.375rem;
}
.nrp-page .nrp-landing .cta-section {
  background: linear-gradient(
    135deg,
    #09182e 0%,
    #0d3556 55%,
    var(--brand) 100%
  );
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nrp-page .nrp-landing .cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 100%,
    rgba(23, 154, 230, 0.25) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.nrp-page .nrp-landing .cta-section__inner {
  position: relative;
}
.nrp-page .nrp-landing .cta-section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}
.nrp-page .nrp-landing .cta-section p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 2.25rem;
}
.nrp-page .nrp-landing .cta-section__btns {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}
.nrp-page .nrp-landing .footer {
  background: #0a0f1e;
  color: rgba(255, 255, 255, 0.45);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}
.nrp-page .nrp-landing .footer a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.nrp-page .nrp-landing .footer a:hover {
  color: #fff;
}
.nrp-page .nrp-landing .footer__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.nrp-page .nrp-landing .sticky-mob {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  gap: 0.625rem;
}
.nrp-page .nrp-landing .sticky-mob .btn {
  flex: 1;
  font-size: 0.875rem;
  padding: 0.8rem 0.5rem;
}
.nrp-page .nrp-landing .sticky-mob__phone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
  transition: border-color 0.15s;
}
.nrp-page .nrp-landing .sticky-mob__phone:hover {
  border-color: var(--brand);
  color: var(--brand);
}
@media (max-width: 1024px) {
  .nrp-page .nrp-landing .hero__inner {
    grid-template-columns: 1fr;
  }
  .nrp-page .nrp-landing .hero__card {
    position: static;
    max-width: 520px;
  }
  .nrp-page .nrp-landing .hero__pitch {
    padding-bottom: 0;
  }
  .nrp-page .nrp-landing .content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .nrp-page .nrp-landing .clm-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nrp-page .nrp-landing .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nrp-page .nrp-landing .steps-grid::before {
    display: none;
  }
}
.nrp-page .nrp-landing .platform-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
}
.nrp-page .nrp-landing .platform-logo__image {
  display: block;
  width: auto;
  max-width: 8.5rem;
  max-height: 2.75rem;
  object-fit: contain;
}
.nrp-page .nrp-landing .platform-logo__fallback {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #374151;
}
@media (max-width: 768px) {
  .nrp-page .nrp-landing .section {
    padding: 3.5rem 0;
  }
  .nrp-page .nrp-landing .hero {
    padding: 3rem 0 0;
  }
  .nrp-page .nrp-landing .hero__pitch {
    padding-bottom: 2.5rem;
  }
  .nrp-page .nrp-landing .trust-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nrp-page .nrp-landing .header__nav,
  .nrp-page .nrp-landing .header__lang {
    display: none;
  }
  .nrp-page .nrp-landing .header__hamburger {
    display: flex;
  }
  .nrp-page .nrp-landing .tarifs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .nrp-page .nrp-landing .clm-grid {
    grid-template-columns: 1fr;
  }
  .nrp-page .nrp-landing .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nrp-page .nrp-landing .sticky-mob {
    display: flex;
  }
  .nrp-page .nrp-landing {
    padding-bottom: 72px;
  }
  .nrp-page .nrp-landing .form-row {
    grid-template-columns: 1fr;
  }
  .nrp-page .nrp-landing .platforms__inner {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .nrp-page .nrp-landing .hero h1 {
    font-size: 1.625rem;
  }
  .nrp-page .nrp-landing .hero__ctas {
    flex-direction: column;
  }
  .nrp-page .nrp-landing .steps-grid {
    grid-template-columns: 1fr;
  }
  .nrp-page .nrp-landing .hero__trust {
    gap: 1.25rem;
  }
}
