/* ══════════════════════════════════════════════════════════════════════════
   RENTADOMUS — Product Pages CSS
   Dark theme, consistent with home.css
   Covers: Rentalscore.html, MagicContract.html, Rentalmatch.html
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* ── Base body for product pages ───────────────────────────────────────── */
body.product-page {
  background: #05070d;
  color: #f0f4ff;
  font-family: var(--rd-font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Scroll reveal animation ─────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

/* ── Container ────────────────────────────────────────────────────────────── */
.pp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ════════════════════════════════════════════════════════════════════════════
   PRODUCT HERO
   ════════════════════════════════════════════════════════════════════════════ */
.pp-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #05070d;
  padding: clamp(100px, 14vw, 160px) 20px clamp(60px, 8vw, 100px);
}

.pp-hero .bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.pp-hero .orb-a {
  width: clamp(400px, 50vw, 700px);
  height: clamp(400px, 50vw, 700px);
  top: -100px; left: -120px;
  background: radial-gradient(circle, rgba(26,140,255,0.30) 0%, rgba(26,140,255,0.05) 60%, transparent 75%);
  animation: ppOrbFloat 16s ease-in-out infinite alternate;
}
.pp-hero .orb-b {
  width: clamp(300px, 38vw, 520px);
  height: clamp(300px, 38vw, 520px);
  top: 40px; right: -80px;
  background: radial-gradient(circle, rgba(168,85,247,0.25) 0%, rgba(168,85,247,0.04) 60%, transparent 75%);
  animation: ppOrbFloat 20s ease-in-out infinite alternate-reverse;
}

@keyframes ppOrbFloat {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(14px,-18px,0) scale(1.03); }
  100% { transform: translate3d(-10px,12px,0) scale(0.97); }
}

.pp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.pp-hero-kicker {
  display: inline-block;
  font-size: clamp(0.7rem, 0.65rem + 0.2vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rd-accent);
  margin-bottom: 16px;
}

.pp-hero h1 {
  font-size: clamp(2.8rem, 2rem + 3.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #f0f4ff 0%, #a0c8ff 60%, #7fb3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pp-hero-subtitle {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  color: rgba(200,220,255,0.8);
  max-width: 640px;
  margin: 0 auto 14px;
  line-height: 1.55;
}

.pp-hero-body {
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  color: rgba(200,220,255,0.55);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.pp-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════════════════
   SECTION ALTERNATION
   ════════════════════════════════════════════════════════════════════════════ */
.pp-section {
  padding: clamp(64px, 10vw, 120px) 0;
}
.pp-section--alt {
  background: #080c16;
}
.pp-section--dark {
  background: #030509;
}

.pp-section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.pp-section-kicker {
  display: inline-block;
  font-size: clamp(0.68rem, 0.6rem + 0.2vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rd-accent);
  margin-bottom: 12px;
}
.pp-section-kicker--teal { color: var(--rd-accent-2); }
.pp-section-kicker--purple { color: #c084fc; }

.pp-section-title {
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #f0f4ff;
  margin: 0 0 16px;
}
.pp-section-title--gradient {
  background: linear-gradient(135deg, #f0f4ff 0%, #a0c8ff 60%, #7fb3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pp-section-desc {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  color: rgba(200,220,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════════════════
   GLASS CARDS GRID
   ════════════════════════════════════════════════════════════════════════════ */
.pp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.pp-card {
  background: linear-gradient(165deg, rgba(13,22,37,0.92), rgba(8,17,30,0.86));
  border: 1px solid rgba(171,220,255,0.12);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  backdrop-filter: blur(18px) saturate(140%);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pp-card:hover {
  border-color: rgba(171,220,255,0.24);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.pp-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: rgba(26,140,255,0.12);
  border: 1px solid rgba(26,140,255,0.2);
}
.pp-card-icon--teal {
  background: rgba(140,245,208,0.1);
  border-color: rgba(140,245,208,0.2);
}
.pp-card-icon--purple {
  background: rgba(192,132,252,0.1);
  border-color: rgba(192,132,252,0.2);
}

.pp-card-title {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  font-weight: 700;
  color: #f0f4ff;
  margin: 0 0 10px;
  line-height: 1.3;
}
.pp-card-text {
  font-size: clamp(0.88rem, 0.84rem + 0.18vw, 0.96rem);
  color: rgba(200,220,255,0.6);
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   NUMBERED STEPS
   ════════════════════════════════════════════════════════════════════════════ */
.pp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.pp-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, rgba(26,140,255,0.6), rgba(140,245,208,0.4));
  pointer-events: none;
}

.pp-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.pp-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(26,140,255,0.25), rgba(26,140,255,0.1));
  border: 2px solid rgba(26,140,255,0.5);
  color: var(--rd-accent);
  position: relative;
  z-index: 2;
}

.pp-step-title {
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  font-weight: 700;
  color: #f0f4ff;
  margin: 0 0 8px;
}
.pp-step-text {
  font-size: clamp(0.82rem, 0.78rem + 0.15vw, 0.9rem);
  color: rgba(200,220,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   SEPA SPECIAL SECTION (teal accent)
   ════════════════════════════════════════════════════════════════════════════ */
.pp-sepa-section {
  padding: clamp(64px, 10vw, 120px) 0;
  background: #05070d;
  position: relative;
  overflow: hidden;
}
.pp-sepa-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(140,245,208,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pp-sepa-box {
  background: linear-gradient(165deg, rgba(10,25,40,0.95), rgba(6,18,32,0.9));
  border: 1.5px solid rgba(140,245,208,0.3);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(140,245,208,0.08), inset 0 1px 0 rgba(140,245,208,0.12);
}
.pp-sepa-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(140,245,208,0.8), transparent);
}

.pp-sepa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(140,245,208,0.1);
  border: 1px solid rgba(140,245,208,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rd-accent-2);
  margin-bottom: 20px;
}
.pp-sepa-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rd-accent-2);
  box-shadow: 0 0 8px var(--rd-accent-2);
  animation: tealPulse 2s ease-in-out infinite;
}
@keyframes tealPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.pp-sepa-title {
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #f0f4ff;
  margin: 0 0 16px;
}
.pp-sepa-title em {
  font-style: normal;
  color: var(--rd-accent-2);
}

.pp-sepa-desc {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  color: rgba(200,220,255,0.7);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 0 32px;
}

.pp-sepa-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pp-sepa-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pp-sepa-feature-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(140,245,208,0.15);
  border: 1.5px solid rgba(140,245,208,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pp-sepa-feature-dot::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rd-accent-2);
}
.pp-sepa-feature-text {
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  color: rgba(200,220,255,0.75);
  line-height: 1.5;
}
.pp-sepa-feature-text strong {
  color: #f0f4ff;
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════════════════════
   AGENCY SECTION (purple accent)
   ════════════════════════════════════════════════════════════════════════════ */
.pp-agency-section {
  padding: clamp(64px, 10vw, 120px) 0;
  background: #07090f;
  position: relative;
  overflow: hidden;
}
.pp-agency-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 85% 50%, rgba(168,85,247,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.pp-agency-box {
  background: linear-gradient(165deg, rgba(14,10,30,0.95), rgba(10,8,22,0.9));
  border: 1.5px solid rgba(168,85,247,0.28);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(168,85,247,0.07), inset 0 1px 0 rgba(168,85,247,0.12);
}
.pp-agency-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.8), transparent);
}

.pp-agency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c084fc;
  margin-bottom: 20px;
}

.pp-agency-title {
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #f0f4ff;
  margin: 0 0 16px;
}
.pp-agency-title em {
  font-style: normal;
  color: #c084fc;
}

.pp-agency-desc {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  color: rgba(200,220,255,0.7);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 0 28px;
}

/* ════════════════════════════════════════════════════════════════════════════
   TWO COLUMN LAYOUTS
   ════════════════════════════════════════════════════════════════════════════ */
.pp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.pp-two-col--reverse { direction: rtl; }
.pp-two-col--reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .pp-two-col { grid-template-columns: 1fr; direction: ltr; }
  .pp-two-col--reverse > * { direction: ltr; }
  .pp-steps::before { display: none; }
  .pp-steps { gap: 32px; }
}

.pp-col-title {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #f0f4ff;
  margin: 0 0 16px;
}
.pp-col-desc {
  font-size: clamp(0.96rem, 0.92rem + 0.2vw, 1.06rem);
  color: rgba(200,220,255,0.65);
  line-height: 1.7;
  margin: 0 0 24px;
}

/* ════════════════════════════════════════════════════════════════════════════
   FEATURE LIST (checkmarks)
   ════════════════════════════════════════════════════════════════════════════ */
.pp-feature-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pp-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(0.9rem, 0.86rem + 0.18vw, 0.98rem);
  color: rgba(200,220,255,0.75);
  line-height: 1.5;
}
.pp-feature-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(26,140,255,0.12);
  border: 1.5px solid rgba(26,140,255,0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a8cff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pp-feature-list--teal li::before {
  background-color: rgba(140,245,208,0.1);
  border-color: rgba(140,245,208,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238cf5d0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.pp-feature-list li strong { color: #f0f4ff; font-weight: 700; }

/* ════════════════════════════════════════════════════════════════════════════
   DOSSIER MOCKUP CARD (CSS-only, home page)
   ════════════════════════════════════════════════════════════════════════════ */
.dossier-mockup {
  background: linear-gradient(165deg, rgba(13,22,37,0.98), rgba(8,17,30,0.94));
  border: 1px solid rgba(171,220,255,0.18);
  border-radius: 20px;
  padding: 28px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.dossier-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dossier-mockup-brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,220,255,0.5);
}
.dossier-mockup-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #30d158;
}
.dossier-mockup-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 8px #30d158;
  animation: greenPulse 2s ease-in-out infinite;
}
@keyframes greenPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #30d158; }
  50% { opacity: 0.7; box-shadow: 0 0 14px #30d158; }
}

.dossier-score-ring {
  text-align: center;
  margin-bottom: 20px;
}
.dossier-score-num {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #30d158, #5ddca7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dossier-score-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #30d158;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.dossier-score-sub {
  font-size: 0.72rem;
  color: rgba(200,220,255,0.45);
  margin-top: 4px;
}

.dossier-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dossier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dossier-row:last-child { border-bottom: none; }
.dossier-row-label {
  font-size: 0.78rem;
  color: rgba(200,220,255,0.5);
}
.dossier-row-value {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(200,220,255,0.85);
}
.dossier-row-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(26,140,255,0.15);
  border: 1px solid rgba(26,140,255,0.3);
  color: var(--rd-accent);
}
.dossier-row-badge--green {
  background: rgba(48,209,88,0.12);
  border-color: rgba(48,209,88,0.3);
  color: #30d158;
}

/* ════════════════════════════════════════════════════════════════════════════
   COMPARISON TABLE (Rentalscore cost)
   ════════════════════════════════════════════════════════════════════════════ */
.pp-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(165deg, rgba(13,22,37,0.92), rgba(8,17,30,0.86));
  border: 1px solid rgba(171,220,255,0.12);
  border-radius: 16px;
  overflow: hidden;
}
.pp-compare-table th {
  padding: 16px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(200,220,255,0.5);
  text-align: left;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pp-compare-table td {
  padding: 14px 20px;
  font-size: 0.92rem;
  color: rgba(200,220,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pp-compare-table tr:last-child td { border-bottom: none; }
.pp-compare-table tr.pp-compare-highlight {
  background: rgba(26,140,255,0.06);
}
.pp-compare-table .pp-compare-accent { color: var(--rd-accent); font-weight: 700; }
.pp-compare-table .pp-compare-green { color: #30d158; font-weight: 700; }
.pp-compare-table .pp-compare-muted { color: rgba(200,220,255,0.35); }

/* ════════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.pp-cta-section {
  padding: clamp(64px, 10vw, 120px) 0;
  background: #03050a;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pp-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(26,140,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.pp-cta-title {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #f0f4ff;
  margin: 0 0 14px;
  position: relative;
}
.pp-cta-sub {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  color: rgba(200,220,255,0.6);
  margin: 0 0 36px;
  position: relative;
}
.pp-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════════════════ */
.pp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: clamp(0.9rem, 0.86rem + 0.18vw, 0.98rem);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.01em;
}
.pp-btn--primary {
  background: var(--rd-accent);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(26,140,255,0.4);
}
.pp-btn--primary:hover {
  background: var(--rd-accent-hover);
  box-shadow: 0 8px 32px rgba(26,140,255,0.35);
  transform: translateY(-2px);
}
.pp-btn--ghost {
  background: rgba(255,255,255,0.05);
  color: rgba(200,220,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
}
.pp-btn--ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.pp-btn--teal {
  background: rgba(140,245,208,0.12);
  color: var(--rd-accent-2);
  border: 1.5px solid rgba(140,245,208,0.35);
}
.pp-btn--teal:hover {
  background: rgba(140,245,208,0.18);
  box-shadow: 0 8px 28px rgba(140,245,208,0.15);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════════════════
   STAT HIGHLIGHT BOXES
   ════════════════════════════════════════════════════════════════════════════ */
.pp-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.pp-stat-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}
.pp-stat-value {
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #f0f4ff, #a0c8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 6px;
}
.pp-stat-label {
  font-size: 0.82rem;
  color: rgba(200,220,255,0.5);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════════════════
   PRIVACY SHIELD CARD (Rentalmatch)
   ════════════════════════════════════════════════════════════════════════════ */
.pp-shield-card {
  background: linear-gradient(165deg, rgba(8,14,26,0.98), rgba(5,10,20,0.94));
  border: 1.5px solid rgba(26,140,255,0.25);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 52px);
  position: relative;
  overflow: hidden;
}
.pp-shield-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(26,140,255,0.7), transparent);
}
.pp-shield-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.pp-shield-title {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  font-weight: 800;
  color: #f0f4ff;
  margin: 0 0 12px;
}
.pp-shield-desc {
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  color: rgba(200,220,255,0.65);
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   SCORE RING VISUAL
   ════════════════════════════════════════════════════════════════════════════ */
.pp-score-visual {
  text-align: center;
  padding: 40px 20px;
}
.pp-score-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(#30d158 0deg, #30d158 313deg, rgba(48,209,88,0.1) 313deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}
.pp-score-circle::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #08111c;
}
.pp-score-circle-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.pp-score-big {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: #30d158;
  display: block;
}
.pp-score-max {
  font-size: 0.75rem;
  color: rgba(200,220,255,0.4);
}

/* ════════════════════════════════════════════════════════════════════════════
   BEFORE/AFTER COMPARISON
   ════════════════════════════════════════════════════════════════════════════ */
.pp-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .pp-before-after { grid-template-columns: 1fr; }
}
.pp-before-col, .pp-after-col {
  border-radius: 16px;
  padding: 28px 24px;
}
.pp-before-col {
  background: rgba(255,68,58,0.05);
  border: 1px solid rgba(255,68,58,0.15);
}
.pp-after-col {
  background: rgba(48,209,88,0.05);
  border: 1px solid rgba(48,209,88,0.15);
}
.pp-ba-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pp-before-col .pp-ba-label { color: rgba(255,100,100,0.7); }
.pp-after-col .pp-ba-label { color: rgba(48,209,88,0.8); }
.pp-ba-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(200,220,255,0.65);
  line-height: 1.5;
  margin-bottom: 10px;
}
.pp-ba-item:last-child { margin-bottom: 0; }
.pp-before-col .pp-ba-icon { color: rgba(255,100,100,0.6); flex-shrink: 0; }
.pp-after-col .pp-ba-icon { color: #30d158; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .pp-hero { padding: 90px 20px 60px; min-height: 60vh; }
  .pp-section { padding: clamp(48px, 8vw, 80px) 0; }
  .pp-sepa-section, .pp-agency-section, .pp-cta-section {
    padding: clamp(48px, 8vw, 80px) 0;
  }
}

@media (max-width: 480px) {
  .pp-card-grid { grid-template-columns: 1fr; }
  .pp-stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ── STEP LAYOUT FIX ─────────────────────────────────────────────────────── */
/* Override auto-fit: force exactly 4 cols on desktop, 2x2 on tablet */
.pp-steps {
  grid-template-columns: repeat(4, 1fr) !important;
  align-items: start;
}

/* Connector line spans full row correctly with 4 cols */
.pp-steps::before {
  left: calc(100% / 8) !important;
  right: calc(100% / 8) !important;
  top: 28px !important;
}

/* Tablet: 2×2 grid, hide horizontal connector, use step numbers as reference */
@media (max-width: 860px) {
  .pp-steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px 24px !important;
  }
  .pp-steps::before { display: none !important; }
}

/* Mobile: vertical stack */
@media (max-width: 480px) {
  .pp-steps {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .pp-step { text-align: left !important; display: flex; gap: 16px; align-items: flex-start; }
  .pp-step-num { flex-shrink: 0; margin: 0 !important; }
  .pp-step-body { flex: 1; }
}


/* ════════════════════════════════════════════════════════════════════════════
   RENTALSCORE — Score Circle Visual & Boost Section
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Score circle visual ──────────────────────────────────────────────────── */
.rd-score-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.rd-score-circle {
  position: relative;
  width: 196px;
  height: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rd-score-arc-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 14px rgba(48,209,88,0.22));
}
.rd-score-inner {
  position: relative;
  text-align: center;
}
.rd-score-big {
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, #30d158, #5ac8fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rd-score-label {
  font-size: 0.78rem;
  color: rgba(200,220,255,0.55);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.rd-score-boost-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(48,209,88,0.1);
  border: 1px solid rgba(48,209,88,0.28);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #30d158;
  letter-spacing: 0.01em;
}
.rd-score-bhv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.rd-score-bhv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(200,220,255,0.7);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 11px;
  padding: 11px 16px;
}
.rd-score-bhv-check {
  color: #30d158;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.95rem;
}

/* ── Boost section grid ───────────────────────────────────────────────────── */
.rd-boost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: clamp(48px, 6vw, 72px);
}
.rd-boost-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: clamp(24px, 3.5vw, 38px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.rd-boost-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
}
.rd-boost-card--green::before { background: linear-gradient(90deg, #30d158, #5ac8fa); }
.rd-boost-card--gold::before  { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.rd-boost-card--blue::before  { background: linear-gradient(90deg, #1a8cff, #bf5af2); }
.rd-boost-card--featured {
  background: rgba(251,191,36,0.05);
  border-color: rgba(251,191,36,0.15);
}
.rd-boost-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.rd-boost-card--featured:hover { border-color: rgba(251,191,36,0.28); }
.rd-boost-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}
.rd-boost-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #f0f4ff;
  margin: 0 0 12px;
  line-height: 1.3;
}
.rd-boost-card-text {
  font-size: 0.88rem;
  color: rgba(200,220,255,0.62);
  line-height: 1.65;
  margin: 0;
}

/* ── Boost result callout ─────────────────────────────────────────────────── */
.rd-boost-result {
  margin-top: clamp(36px, 5vw, 56px);
  background: linear-gradient(135deg, rgba(48,209,88,0.07) 0%, rgba(90,200,250,0.05) 100%);
  border: 1px solid rgba(48,209,88,0.16);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
}
.rd-boost-result-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.rd-boost-result-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(48,209,88,0.1);
  border: 1px solid rgba(48,209,88,0.22);
  border-radius: 50%;
}
.rd-boost-result-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #f0f4ff;
  margin-bottom: 9px;
  line-height: 1.3;
}
.rd-boost-result-text {
  font-size: 0.9rem;
  color: rgba(200,220,255,0.62);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .rd-boost-grid { grid-template-columns: 1fr; }
  .rd-boost-result-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .rd-score-circle { width: 160px; height: 160px; }
  .rd-score-big { font-size: 3rem; }
}

/* ══════════════════════════════════════════════════════
   RENTALSCORE — Hero improvements
   ══════════════════════════════════════════════════════ */

.rs-hero-section {
  padding-top: clamp(110px, 16vw, 180px);
}

.rs-hero-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.rs-hero-h1 {
  line-height: 1.0 !important;
  letter-spacing: -0.04em !important;
}
.rs-hero-line1, .rs-hero-line2 {
  display: block;
  line-height: 1.0;
}
.rs-hero-line2 {
  margin-top: -6px;  /* tighter gap, slight overlap of glyphs is fine */
}

.rs-hero-line1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: #f5f5f7;
  display: block;
}

.rs-hero-line2 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  display: block;
  /* extra punch on gradient */
  filter: brightness(1.15);
}

.rs-hero-lead {
  margin-top: 16px !important;
  font-size: clamp(1rem, 1.4vw, 1.15rem) !important;
  line-height: 1.65 !important;
  color: rgba(255,255,255,0.55) !important;
  max-width: 480px;
}

/* ── Score card glass wrapper ── */
.rs-score-card-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-score-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 36px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  min-width: 280px;
}

/* Soft glow behind card */
.rs-score-card-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(48,209,88,0.12) 0%, rgba(90,200,250,0.06) 50%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  animation: rs-glow-pulse 4s ease-in-out infinite;
}

@keyframes rs-glow-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1.2; transform: scale(1.08); }
}

/* Larger score circle */
.rs-score-circle-lg {
  width: 220px !important;
  height: 220px !important;
}

.rs-score-circle-lg .rd-score-arc-svg {
  filter: drop-shadow(0 0 20px rgba(48,209,88,0.3)) !important;
}

/* Arc draw animation */
.rs-arc-animated {
  stroke-dashoffset: 603;
  animation: rs-arc-draw 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes rs-arc-draw {
  from { stroke-dashoffset: 603; }
  to   { stroke-dashoffset: 72; }
}

/* Number counter feel */
.rs-score-num {
  font-size: 5rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.06em !important;
}

/* Boost badge */
.rs-boost-badge {
  font-size: 0.78rem !important;
  padding: 6px 16px !important;
}

/* Behavior list */
.rs-bhv-list li {
  font-size: 0.83rem !important;
  padding: 10px 14px !important;
  background: rgba(48,209,88,0.04) !important;
  border-color: rgba(48,209,88,0.1) !important;
}

/* ══════════════════════════════════════════════════════
   RENTALSCORE — Conseguenze section
   ══════════════════════════════════════════════════════ */

.rs-consequences-section:not(.rd-light) {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,149,0,0.04) 0%, transparent 60%) !important;
}

.rs-cons-intro {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.rs-cons-grad {
  background: linear-gradient(135deg, #ff9f0a 0%, #ff453a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rs-cons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-bottom: 32px;
}

.rs-cons-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s;
}

.rs-cons-card--warning {
  border-top: 3px solid rgba(255,149,0,0.5);
}

.rs-cons-card--danger {
  border-top: 3px solid rgba(255,59,48,0.5);
  background: rgba(255,59,48,0.03);
}

.rs-cons-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rs-cons-card--warning .rs-cons-card-icon {
  background: rgba(255,149,0,0.1);
  color: #ff9f0a;
  border: 1px solid rgba(255,149,0,0.2);
}

.rs-cons-card--danger .rs-cons-card-icon {
  background: rgba(255,59,48,0.1);
  color: #ff453a;
  border: 1px solid rgba(255,59,48,0.2);
}

.rs-cons-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f5f5f7;
  letter-spacing: -0.02em;
  margin: 0;
}

.rs-cons-card-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin: 0;
  flex: 1;
}

.rs-cons-card-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,149,0,0.06);
  border: 1px solid rgba(255,149,0,0.15);
  border-radius: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: auto;
}

.rs-cons-score-delta {
  font-weight: 700;
  color: #ff9f0a;
  font-size: 0.82rem;
}

.rs-cons-card-callout {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 12px 14px;
  background: rgba(255,59,48,0.07);
  border: 1px solid rgba(255,59,48,0.18);
  border-radius: 10px;
  font-size: 0.8rem;
  color: rgba(255,130,120,0.9);
  line-height: 1.5;
  margin-top: auto;
}

.rs-cons-card-callout svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #ff453a;
}

/* Bottom note */
.rs-cons-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  line-height: 1.65;
}

.rs-cons-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.3);
}

.rs-cons-note p { margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .rs-cons-grid { grid-template-columns: 1fr; }
  .rs-score-circle-lg { width: 180px !important; height: 180px !important; }
  .rs-score-num { font-size: 4rem !important; }
}

@media (max-width: 600px) {
  .rs-hero-line1, .rs-hero-line2 { font-size: 2.4rem; }
  .rs-score-card { padding: 24px 18px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   MAGICCONTRACT — Multilingual Contract Demo (moved from pricing.css)
   ══════════════════════════════════════════════════════════════════════════ */

/* Contract demo — premium "document" preview (glass card + eIDAS chrome) */
.prc-contract-demo {
  margin: 16px auto 12px;
  border: 1px solid rgba(140,245,208,0.18);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(720px 220px at 50% -12%, rgba(140,245,208,0.10), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 28px 64px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.04) inset;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
/* document chrome header (brand + legal standard, language-neutral) */
.prc-contract-demo::before {
  content: 'RENTADOMUS \00B7 eIDAS';
  display: block;
  font-size: 0.58rem; letter-spacing: 0.2em; font-weight: 800;
  color: rgba(140,245,208,0.62);
  padding: 10px 18px;
  background: rgba(255,255,255,0.035);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.prc-contract-tabs {
  display: flex;
  gap: 4px;
  padding: 8px 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: transparent;
  overflow-x: auto;
}
.prc-ctab {
  flex: 1 0 auto;
  min-width: 46px;
  padding: 9px 12px;
  background: none;
  border: none;
  border-radius: 9px 9px 0 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.prc-ctab:hover { color: rgba(255,255,255,0.88); background: rgba(255,255,255,0.05); }
.prc-ctab.active {
  color: #04241a;
  background: linear-gradient(135deg, #8cf5d0, #5ac8fa);
  box-shadow: 0 4px 14px rgba(140,245,208,0.28);
}
.prc-contract-panes {
  padding: 22px 22px 26px;
  min-height: 132px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
}
.prc-cpane { display: none; }
.prc-cpane.active { display: block; animation: prc-cpane-in 0.32s cubic-bezier(.22,1,.36,1); }
@keyframes prc-cpane-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.prc-cpane-title {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #8cf5d0;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  text-transform: uppercase;
}
.prc-cpane-body {
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(235,245,255,0.74);
}
.prc-cpane-body strong { color: #ffffff; font-weight: 700; }
/* faux signature field — visual only, language-neutral */
.prc-cpane.active::after {
  content: '';
  display: block;
  margin-top: 18px;
  height: 0;
  border-top: 1.5px solid rgba(140,245,208,0.35);
  width: 46%;
}

/* ══════════════════════════════════════════════════════════════════════════
   MAGICCONTRACT — Dispute Resolution 3-step flow
   ══════════════════════════════════════════════════════════════════════════ */

.mc-dispute-flow {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
  margin-top: clamp(40px,5vw,64px);
  flex-wrap: wrap;
}
.mc-dispute-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px 24px;
  text-align: center;
}
.mc-dispute-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99,179,237,0.1);
  border: 1px solid rgba(99,179,237,0.2);
  color: #63b3ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.mc-dispute-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.mc-dispute-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
}
.mc-dispute-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}
.mc-dispute-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.2);
  align-self: center;
  flex-shrink: 0;
  margin-top: -8px;
}
@media (max-width: 700px) {
  .mc-dispute-arrow { display: none; }
  .mc-dispute-flow { flex-direction: column; align-items: center; }
  .mc-dispute-step { max-width: 100%; width: 100%; }
}

/* ══════════════════════════════════════════════════════════════════════════
   MAGICCONTRACT — Stato dei luoghi (Consegna / Riconsegna)
   ══════════════════════════════════════════════════════════════════════════ */

.mc-luoghi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: clamp(40px,5vw,64px);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .mc-luoghi-grid { grid-template-columns: 1fr; }
}
.mc-luoghi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}
.mc-luoghi-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mc-luoghi-card-header--in {
  background: rgba(140,245,208,0.08);
  border-bottom: 1px solid rgba(140,245,208,0.15);
  color: #8cf5d0;
}
.mc-luoghi-card-header--out {
  background: rgba(99,179,237,0.08);
  border-bottom: 1px solid rgba(99,179,237,0.15);
  color: #63b3ed;
}
.mc-luoghi-ts {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 2px;
}
.mc-luoghi-ts-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.mc-luoghi-ts-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  font-variant-numeric: tabular-nums;
}
.mc-luoghi-items {
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mc-luoghi-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.mc-luoghi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.mc-luoghi-dot--ok   { background: #34c759; }
.mc-luoghi-dot--warn { background: #fbbf24; }
.mc-luoghi-signed {
  margin: 0 20px 16px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(52,199,89,0.07);
  border: 1px solid rgba(52,199,89,0.2);
  color: #34c759;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════════════
   RENTALSCORE HERO — center + balance the 2-col layout
   ════════════════════════════════════════════════════════════════════ */
.product-page--score .rs-hero-section > .rd-container {
  max-width: min(1240px, 94%) !important;
  margin: 0 auto !important;
}
.product-page--score .rs-hero-section .rd-two-col {
  align-items: center !important;
  gap: clamp(56px, 8vw, 120px) !important;
}
/* Slightly narrower text column so left/right feel balanced visually */
.product-page--score .rs-hero-section .rd-two-col--60-40 {
  grid-template-columns: 55fr 45fr !important;
}
@media (max-width: 900px) {
  .product-page--score .rs-hero-section .rd-two-col--60-40 {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 48px !important;
  }
  .product-page--score .rs-hero-section .rs-score-card-wrap {
    max-width: 460px;
    margin: 0 auto;
  }
}

/* Right side card — keep it visually tight inside its column */
.product-page--score .rs-score-card-wrap {
  max-width: 520px;
  margin-left: auto;
}

/* ════════════════════════════════════════════════════════════════════
   LAYER 6 — Cross-page light-mode overrides + centering fixes
   Covers:
     - .rd-light .mc-dispute-*    (MagicContract Médiation, was dark-only)
     - .rd-light .rs-cons-*       (Rentalscore consequences, was dark-only)
     - Rentalscore consequences centering + scroll cue
     - Rentalmatch hero vertical centering
   ════════════════════════════════════════════════════════════════════ */

/* ─── B: MagicContract dispute flow on light bg ───────────────────── */
.rd-light .mc-dispute-flow {
  gap: clamp(18px, 2vw, 32px) !important;
}
.rd-light .mc-dispute-step {
  background: linear-gradient(160deg, rgba(255,255,255,0.96), rgba(245,247,252,0.88)) !important;
  border: 1px solid rgba(0, 30, 80, 0.10) !important;
  border-radius: 22px !important;
  padding: 32px 26px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 6px 20px rgba(0, 30, 80, 0.06) !important;
  transition: transform .3s ease, box-shadow .3s ease, border-color .25s ease;
  position: relative;
}
.rd-light .mc-dispute-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 122, 255, 0.25) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 16px 36px rgba(0, 30, 80, 0.10) !important;
}
.rd-light .mc-dispute-icon {
  background: linear-gradient(135deg, rgba(0,122,255,0.10), rgba(140,245,208,0.10)) !important;
  border: 1px solid rgba(0, 122, 255, 0.22) !important;
  color: #007AFF !important;
}
.rd-light .mc-dispute-icon svg { stroke: #007AFF !important; }
.rd-light .mc-dispute-num {
  color: rgba(0, 85, 187, 0.35) !important;
  font-weight: 900 !important;
}
.rd-light .mc-dispute-title {
  color: #0a1424 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}
.rd-light .mc-dispute-text {
  color: #424b6a !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
}
.rd-light .mc-dispute-arrow {
  color: rgba(0, 122, 255, 0.45) !important;
}

/* ─── D: Rentalscore consequences cards on light bg ───────────────── */
.rd-light .rs-cons-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.96), rgba(245,247,252,0.88)) !important;
  border: 1px solid rgba(0, 30, 80, 0.10) !important;
  border-radius: 22px !important;
  padding: 28px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 6px 20px rgba(0, 30, 80, 0.06) !important;
  transition: transform .3s ease, box-shadow .3s ease, border-color .25s ease;
}
.rd-light .rs-cons-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 159, 64, 0.32) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 16px 36px rgba(0, 30, 80, 0.10) !important;
}
.rd-light .rs-cons-card-icon {
  background: linear-gradient(135deg, rgba(255,159,64,0.12), rgba(255,99,71,0.10)) !important;
  border: 1px solid rgba(255, 99, 71, 0.22) !important;
  color: #ff7043 !important;
}
.rd-light .rs-cons-card-icon svg { stroke: #ff7043 !important; }
.rd-light .rs-cons-card-title {
  color: #0a1424 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}
.rd-light .rs-cons-card-text {
  color: #424b6a !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
}
.rd-light .rs-cons-card-tag {
  background: rgba(255, 99, 71, 0.12) !important;
  color: #d44a1a !important;
  border: 1px solid rgba(255, 99, 71, 0.24) !important;
  font-weight: 700 !important;
}
.rd-light .rs-cons-card--critical {
  border-color: rgba(255, 99, 71, 0.25) !important;
}
.rd-light .rs-cons-card--critical::before {
  background: linear-gradient(90deg, #ff7043 0%, #ff5252 100%) !important;
}
.rd-light .rs-cons-note {
  background: linear-gradient(135deg, rgba(255,159,64,0.05), rgba(255,99,71,0.04)) !important;
  border: 1px solid rgba(255, 99, 71, 0.18) !important;
  color: #424b6a !important;
}
.rd-light .rs-cons-note strong {
  color: #d44a1a !important;
}

/* Rentalscore consequences: fix vertical centering + bottom scroll cue */
.product-page--score .rs-consequences-section {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: stretch !important;
  position: relative;
}
.product-page--score .rs-consequences-section > .rd-container {
  width: 100%;
  max-width: min(1180px, 94%) !important;
  margin: 0 auto !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-page--score .rs-consequences-section .rs-cons-intro {
  margin-bottom: clamp(28px, 4vh, 48px) !important;
  text-align: center;
}
.product-page--score .rs-consequences-section .rs-cons-grid {
  width: 100%;
}

/* Scroll cue (shared style for Rentalscore + future sections) */
.rs-cons-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: clamp(28px, 5vh, 48px);
  opacity: 0.6;
  transition: opacity .3s ease;
}
.rs-cons-scroll:hover { opacity: 0.9; }
.rs-cons-scroll-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #424b6a;
  font-weight: 600;
}
.rs-cons-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(10, 20, 36, 0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  position: relative;
}
.rs-cons-scroll-dot {
  width: 3px;
  height: 8px;
  background: rgba(10, 20, 36, 0.55);
  border-radius: 2px;
  margin-top: 6px;
  animation: rs-cons-scroll-bob 1.6s ease-in-out infinite;
}
@keyframes rs-cons-scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50%      { transform: translateY(10px); opacity: 0.3; }
}

/* ─── E: Rentalmatch hero vertical centering ──────────────────────── */
.product-page--match .rd-section.rd-bg-1:first-of-type {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: stretch !important;
  min-height: 100vh !important;
}
.product-page--match .rd-section.rd-bg-1:first-of-type > .rd-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}
.product-page--match .rd-section.rd-bg-1:first-of-type .rd-two-col {
  align-items: center !important;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .rs-cons-scroll-dot { animation: none !important; }
}
/* LAYER 7B — strong hero centering Rentalmatch+MagicContract */
/* ════════════════════════════════════════════════════════════════════
   Strong hero centering for product pages — previous rules were not
   beating the global product-section-fit.css. Use body class + first
   hero section + !important + min-height:100vh + flex centering.
   ════════════════════════════════════════════════════════════════════ */

body.product-page--match .rd-section.rd-bg-1:first-of-type,
body.product-page--magic .rd-section.rd-bg-1:first-of-type,
body.product-page--match .rd-section:first-of-type,
body.product-page--magic .rd-section:first-of-type {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: stretch !important;
  min-height: 100vh !important;
  padding-top: clamp(80px, 10vh, 140px) !important;
  padding-bottom: clamp(60px, 8vh, 100px) !important;
}

body.product-page--match .rd-section.rd-bg-1:first-of-type > .rd-container,
body.product-page--magic .rd-section.rd-bg-1:first-of-type > .rd-container,
body.product-page--match .rd-section:first-of-type > .rd-container,
body.product-page--magic .rd-section:first-of-type > .rd-container {
  width: 100%;
  margin: auto !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* MagicContract hero is single-column (no rd-two-col) — centre everything */
body.product-page--magic .rd-section.rd-bg-1:first-of-type .rd-container > * {
  margin-left: auto;
  margin-right: auto;
}

body.product-page--magic .rd-section.rd-bg-1:first-of-type .rd-eyebrow,
body.product-page--magic .rd-section.rd-bg-1:first-of-type .rd-h1,
body.product-page--magic .rd-section.rd-bg-1:first-of-type .rd-lead {
  text-align: center;
}
body.product-page--magic .rd-section.rd-bg-1:first-of-type .rd-btn-row {
  justify-content: center;
}

/* ────────────────────────────────────────────────────────────────
   D) Pricing CTA buttons — uniform style across all 4 cards.
   Previously "Choisir Business" had filled gradient, others had
   ghost/text style → unequal visual weight. Make all 4 the same
   gradient pill, with the popular plan getting an extra glow.
   ──────────────────────────────────────────────────────────────── */
.pricing-page .prc-plan-card .prc-plan-cta {
  display: block;
  width: 100%;
  padding: 16px 28px !important;
  border-radius: 999px !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.005em !important;
  text-align: center !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, rgba(0,122,255,0.18), rgba(140,245,208,0.16)) !important;
  color: #5ac8fa !important;
  border: 1px solid rgba(0,122,255,0.32) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 8px 22px rgba(0, 60, 140, 0.15) !important;
  transition: transform .2s ease, box-shadow .25s ease, filter .15s ease;
  margin-top: auto;
}
.pricing-page .prc-plan-card .prc-plan-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.14) inset,
    0 12px 30px rgba(0, 60, 140, 0.25) !important;
}
/* Popular plan (Business) gets a fully filled gradient pill */
.pricing-page .prc-plan-card--popular .prc-plan-cta {
  background: linear-gradient(135deg, #007AFF 0%, #5ac8fa 50%, #8cf5d0 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 14px 32px rgba(0, 122, 255, 0.40) !important;
}
/* Enterprise contact link gets a slight purple tint to differentiate from prices */
.pricing-page .prc-plan-card--enterprise .prc-plan-cta {
  background: linear-gradient(135deg, rgba(168,85,247,0.16), rgba(192,132,252,0.14)) !important;
  color: #c084fc !important;
  border: 1px solid rgba(168,85,247,0.30) !important;
}
/* === MagicContract SEPA distinctive styling === */
/* ════════════════════════════════════════════════════════════════════
   Distinct SEPA section for MagicContract — different from home version:
     - Wider rows with proper spacing (the "scritte tagliate" complaint
       was about cramped text overflowing the chip width)
     - Sequential row reveal on scroll (cascading fade-in)
     - Hover lift per row
     - Subtle "credit pulse" on the last completed row
     - Pending row has dashed border + slower pulse
   ════════════════════════════════════════════════════════════════════ */
.product-page--magic .rd-sepa-mock {
  background: linear-gradient(165deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(140, 245, 208, 0.16);
  border-radius: 24px;
  padding: clamp(20px, 2.5vh, 28px);
  box-shadow: 0 22px 60px rgba(0, 30, 80, 0.35);
  backdrop-filter: blur(14px);
}
.product-page--magic .mc-sepa-row {
  display: grid !important;
  grid-template-columns: 1.1fr 1.3fr 1.3fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, rgba(140, 245, 208, 0.06), rgba(0, 122, 255, 0.04)) !important;
  border: 1px solid rgba(140, 245, 208, 0.18) !important;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1), background .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.product-page--magic .mc-sepa-row.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 0.12s);
}
.product-page--magic .mc-sepa-row:hover {
  background: linear-gradient(135deg, rgba(140, 245, 208, 0.10), rgba(0, 122, 255, 0.08)) !important;
  border-color: rgba(140, 245, 208, 0.36) !important;
  transform: translateY(-2px) !important;
}
.product-page--magic .mc-sepa-row .rd-sepa-month {
  font-weight: 700;
  font-size: 0.95rem;
  color: #f0f4ff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-page--magic .mc-sepa-row .rd-sepa-amount {
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: #8cf5d0;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.product-page--magic .mc-sepa-row .rd-sepa-status {
  justify-self: end;
  padding: 6px 14px !important;
  border-radius: 999px !important;
  background: rgba(52, 211, 153, 0.18) !important;
  color: #34d399 !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  border: 1px solid rgba(52, 211, 153, 0.3);
}
/* Pending row: dashed border, lower opacity, slow pulse */
.product-page--magic .mc-sepa-row--pending {
  border-style: dashed !important;
  border-color: rgba(140, 245, 208, 0.30) !important;
  background: linear-gradient(135deg, rgba(140, 245, 208, 0.03), rgba(0, 122, 255, 0.02)) !important;
  animation: mc-sepa-pending-pulse 2.4s ease-in-out infinite;
  animation-play-state: paused;
}
.product-page--magic .mc-sepa-row--pending.is-revealed {
  animation-play-state: running;
}
@keyframes mc-sepa-pending-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(140, 245, 208, 0); }
  50%      { box-shadow: 0 0 0 4px rgba(140, 245, 208, 0.10); }
}
.product-page--magic .mc-sepa-row--pending .rd-sepa-status {
  background: rgba(245, 197, 24, 0.16) !important;
  color: #f5c518 !important;
  border-color: rgba(245, 197, 24, 0.32);
}
.product-page--magic .mc-sepa-row--pending .rd-sepa-amount {
  color: rgba(140, 245, 208, 0.55);
}
/* Last credited row gets a subtle "money landed" pulse on reveal */
.product-page--magic .mc-sepa-row:nth-last-of-type(2) {
  position: relative;
}
.product-page--magic .mc-sepa-row:nth-last-of-type(2).is-revealed::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid rgba(52, 211, 153, 0.6);
  pointer-events: none;
  animation: mc-sepa-credit-pulse 1.2s ease-out;
  animation-delay: calc(var(--i, 0) * 0.12s + 0.4s);
}
@keyframes mc-sepa-credit-pulse {
  0%   { transform: scale(0.97); opacity: 1; }
  100% { transform: scale(1.04); opacity: 0; }
}
@media (max-width: 640px) {
  .product-page--magic .mc-sepa-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .product-page--magic .mc-sepa-row .rd-sepa-status {
    grid-column: 1 / -1;
    justify-self: start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-page--magic .mc-sepa-row,
  .product-page--magic .mc-sepa-row--pending {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
