/* ══════════════════════════════════════════════════════════════════════════
   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.05 !important;
  letter-spacing: -0.04em !important;
}

.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 {
  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)
   ══════════════════════════════════════════════════════════════════════════ */

.prc-contract-demo {
  margin: 16px 0 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.prc-contract-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.prc-ctab {
  flex: 1;
  padding: 10px 4px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.prc-ctab:hover { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.04); }
.prc-ctab.active { color: #8cf5d0; background: rgba(140,245,208,0.08); border-bottom: 2px solid #8cf5d0; }
.prc-contract-panes { padding: 18px 20px; min-height: 100px; }
.prc-cpane { display: none; }
.prc-cpane.active { display: block; }
.prc-cpane-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.prc-cpane-body {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.prc-cpane-body strong { color: rgba(255,255,255,0.9); }

/* ══════════════════════════════════════════════════════════════════════════
   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;
}
