/* ============================================================
   impact.css — Rentadomus Design System v2
   Massive-headline, statement-first layout
   ============================================================ */

/* ── Reset section spacing ─────────────────────────────── */
.rd-section {
  padding: clamp(96px, 14vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.rd-section--sm { padding: clamp(64px, 8vw, 100px) 0; }

.rd-container {
  max-width: min(1400px, calc(100vw - clamp(32px, 6vw, 112px)));
  margin: 0 auto;
}

/* ── Backgrounds ────────────────────────────────────────── */
.rd-bg-0  { background: #030508; }
.rd-bg-1  { background: #05070d; }
.rd-bg-2  { background: #080f1e; }
.rd-bg-3  { background: #0b1628; }
.rd-bg-4  { background: linear-gradient(180deg,#05070d 0%,#0a1525 100%); }

/* ── Eyebrow ────────────────────────────────────────────── */
.rd-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #5ac8fa;
  background: rgba(90,200,250,0.07);
  border: 1px solid rgba(90,200,250,0.22);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 22px;
}

/* ── Headlines ──────────────────────────────────────────── */
.rd-h1 {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  background: linear-gradient(175deg, #ffffff 0%, #d4e9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}
.rd-h2 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  background: linear-gradient(175deg, #ffffff 0%, #d4e9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}
.rd-h2--med {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  background: linear-gradient(175deg, #ffffff 0%, #d4e9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}
.rd-h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(175deg, #ffffff 0%, #d4e9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

/* ── Body text ──────────────────────────────────────────── */
.rd-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.8;
  color: rgba(210, 228, 252, 0.90);
  max-width: 600px;
  margin-top: clamp(20px, 2.5vw, 32px);
}
.rd-lead--wide { max-width: 800px; }
.rd-lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── Gradients on text ──────────────────────────────────── */
.rd-g-blue {
  background: linear-gradient(105deg, #5ac8fa 0%, #0a84ff 55%, #5e5ce6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rd-g-teal {
  background: linear-gradient(105deg, #63e6be 0%, #5ac8fa 50%, #0a84ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rd-g-purple {
  background: linear-gradient(105deg, #c4b5fd 0%, #bf5af2 50%, #5e5ce6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rd-g-full {
  background: linear-gradient(
    108deg,
    #5ac8fa   0%,
    #ffffff  25%,
    #bf5af2  55%,
    #5e5ce6  80%,
    #5ac8fa 100%
  );
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rdShimmer 8s linear infinite;
}
@keyframes rdShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 240% center; }
}

/* ── Center layout ──────────────────────────────────────── */
.rd-center { text-align: center; }
.rd-center .rd-lead { margin-left: auto; margin-right: auto; }

/* ── Two-col ────────────────────────────────────────────── */
.rd-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.rd-two-col > * { min-width: 0; overflow-wrap: break-word; }
.rd-two-col--60-40 { grid-template-columns: 6fr 4fr; }
.rd-two-col--reverse .rd-col:first-child { order: 2; }
.rd-two-col--reverse .rd-col:last-child  { order: 1; }
@media (max-width: 800px) {
  .rd-two-col,
  .rd-two-col--60-40 { grid-template-columns: 1fr; }
  .rd-two-col--reverse .rd-col:first-child { order: 0; }
  .rd-two-col--reverse .rd-col:last-child  { order: 0; }
}

/* ── CTA buttons ────────────────────────────────────────── */
.rd-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(28px, 4vw, 44px);
}
.rd-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.rd-btn--primary {
  background: linear-gradient(135deg, #0a84ff 0%, #5ac8fa 100%);
  color: #fff;
}
.rd-btn--primary:hover {
  background: linear-gradient(135deg, #0070e0 0%, #3db8f0 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10,132,255,0.40);
}
.rd-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.rd-btn--ghost:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
}
.rd-btn--teal {
  background: rgba(140,245,208,0.12);
  color: #8cf5d0;
  border: 1.5px solid rgba(140,245,208,0.3);
}
.rd-btn--teal:hover {
  background: rgba(140,245,208,0.2);
  border-color: rgba(140,245,208,0.55);
}

/* ── Big stats row ──────────────────────────────────────── */
.rd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  text-align: center;
}
@media (max-width: 700px) { .rd-stats { grid-template-columns: repeat(2, 1fr); } }

.rd-stat-num {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  display: block;
}
.rd-stat-label {
  font-size: 0.82rem;
  color: rgba(200,220,252,0.78);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
}

/* ── Divider line ────────────────────────────────────────── */
.rd-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0;
}

/* ── Feature list (simple dot) ──────────────────────────── */
.rd-flist {
  list-style: none;
  padding: 0;
  margin: clamp(24px, 3vw, 36px) 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rd-flist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: rgba(200,220,252,0.85);
  line-height: 1.65;
}
.rd-flist li:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.rd-flist li strong { color: #ffffff; font-weight: 700; }
.rd-flist--dot li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5ac8fa;
  flex-shrink: 0;
  margin-top: 9px;
}
.rd-flist--check li::before {
  content: '✓';
  color: #8cf5d0;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Numbered steps ─────────────────────────────────────── */
.rd-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(32px, 4vw, 48px);
}
.rd-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rd-step:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.rd-step-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(26,140,255,0.50);
  flex-shrink: 0;
  width: 80px;
  text-align: right;
  white-space: nowrap;
}
.rd-step-body {}
.rd-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}
.rd-step-text {
  font-size: 0.9rem;
  color: rgba(200,220,252,0.82);
  line-height: 1.7;
}

/* ── Callout / shield block ─────────────────────────────── */
.rd-callout {
  padding: clamp(24px, 3vw, 36px) clamp(24px, 4vw, 44px);
  border-radius: 20px;
  border: 1px solid;
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.rd-callout--blue  { background: rgba(26,140,255,.07); border-color: rgba(26,140,255,.2); }
.rd-callout--teal  { background: rgba(140,245,208,.07); border-color: rgba(140,245,208,.2); }
.rd-callout--purple{ background: rgba(168,85,247,.07); border-color: rgba(168,85,247,.2); }
.rd-callout-icon { flex-shrink: 0; margin-top: 2px; }
.rd-callout-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.rd-callout-blue .rd-callout-title   { color: #63b3ed; }
.rd-callout-teal .rd-callout-title   { color: #8cf5d0; }
.rd-callout-purple .rd-callout-title { color: #c084fc; }
.rd-callout-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(200,220,252,0.82);
}

/* ── Product grid (ecosystem) ───────────────────────────── */
.rd-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: clamp(48px, 6vw, 72px);
}
@media (max-width: 640px) { .rd-product-grid { grid-template-columns: 1fr; } }

.rd-product-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.28s;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.rd-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.28s;
  border-radius: inherit;
}
.rd-product-card--blue::before  { background: radial-gradient(ellipse at 0% 0%, rgba(26,140,255,.08), transparent 70%); }
.rd-product-card--teal::before  { background: radial-gradient(ellipse at 0% 0%, rgba(140,245,208,.08), transparent 70%); }
.rd-product-card--purple::before{ background: radial-gradient(ellipse at 0% 0%, rgba(168,85,247,.08), transparent 70%); }
.rd-product-card--gold::before  { background: radial-gradient(ellipse at 0% 0%, rgba(251,191,36,.08), transparent 70%); }
.rd-product-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.14); }
.rd-product-card:hover::before { opacity: 1; }

.rd-product-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.rd-product-icon--blue   { background: rgba(26,140,255,.15); }
.rd-product-icon--teal   { background: rgba(140,245,208,.15); }
.rd-product-icon--purple { background: rgba(168,85,247,.15); }
.rd-product-icon--gold   { background: rgba(251,191,36,.15); }

.rd-product-name {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.rd-product-desc {
  font-size: 0.9rem;
  color: rgba(200,220,252,0.80);
  line-height: 1.7;
}
.rd-product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  margin-top: 18px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.rd-product-link:hover { opacity: 1; }

/* ── Contrast split (privacy section) ──────────────────── */
.rd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: clamp(40px, 5vw, 60px);
}
@media (max-width: 600px) { .rd-split { grid-template-columns: 1fr; } }
.rd-split-card {
  padding: clamp(24px, 3.5vw, 40px);
  border-radius: 18px;
  border: 1px solid;
}
.rd-split-card--yes { background: rgba(140,245,208,.05); border-color: rgba(140,245,208,.2); }
.rd-split-card--no  { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.08); }
.rd-split-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rd-split-card--yes .rd-split-label { color: #8cf5d0; }
.rd-split-card--no  .rd-split-label { color: rgba(255,255,255,0.58); }
.rd-split-items {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rd-split-items li {
  font-size: 0.92rem;
  color: rgba(200,220,252,0.82);
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 1.5;
}
.rd-split-items li span { font-size: 1rem; }

/* ── SEPA visual ────────────────────────────────────────── */
.rd-sepa-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rd-sepa-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-radius: 12px;
  background: rgba(140,245,208,.06);
  border: 1px solid rgba(140,245,208,.15);
  font-size: 0.88rem;
}
.rd-sepa-month { color: rgba(99,230,190,.85); font-weight: 600; }
.rd-sepa-amount { color: #63e6be; font-weight: 800; font-size: 1rem; }
.rd-sepa-status {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(140,245,208,.15);
  color: #63e6be;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── GDPR 3 points ──────────────────────────────────────── */
.rd-gdpr-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: clamp(32px, 4vw, 48px);
}
.rd-gdpr-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 26px;
  border-radius: 16px;
  background: rgba(99,179,237,.05);
  border: 1px solid rgba(99,179,237,.15);
}
.rd-gdpr-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(99,179,237,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rd-gdpr-title { font-size: 0.97rem; font-weight: 700; color: #5ac8fa; margin-bottom: 5px; }
.rd-gdpr-text  { font-size: 0.87rem; color: rgba(200,220,252,0.82); line-height: 1.65; }

/* ── Score visual ───────────────────────────────────────── */
.rd-score-visual {
  position: relative;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
}
.rd-score-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(90,200,250,.18), transparent 70%);
  pointer-events: none;
}
.rd-score-big {
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  background: linear-gradient(105deg, #5ac8fa 0%, #ffffff 45%, #63e6be 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rd-score-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(140,245,208,.6);
  margin-top: 4px;
}
.rd-score-bars {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rd-score-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(200,220,252,0.80);
}
.rd-score-bar-track {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
}
.rd-score-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #5ac8fa, #63e6be);
}
.rd-score-bar-name { width: 110px; text-align: right; }
.rd-score-bar-val  { width: 32px; text-align: right; color: #63e6be; font-weight: 700; }

/* ── Final CTA section ──────────────────────────────────── */
.rd-cta-section {
  text-align: center;
  padding: clamp(96px, 14vw, 160px) 0;
  background: #030508;
  position: relative;
  overflow: hidden;
}
.rd-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26,140,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.rd-cta-eyebrow { color: #5ac8fa; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; display: block; }
.rd-cta-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: #eaf3ff;
  margin: 0 0 clamp(20px, 3vw, 32px);
}
.rd-cta-sub { font-size: clamp(1rem, 1.4vw, 1.2rem); color: rgba(180,205,245,.6); max-width: 480px; margin: 0 auto clamp(32px, 4vw, 48px); line-height: 1.75; }
.rd-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Reveal animations ──────────────────────────────────── */
[data-rd-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-rd-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-rd-reveal][data-rd-delay="1"] { transition-delay: 0.1s; }
[data-rd-reveal][data-rd-delay="2"] { transition-delay: 0.2s; }
[data-rd-reveal][data-rd-delay="3"] { transition-delay: 0.35s; }
[data-rd-reveal][data-rd-delay="4"] { transition-delay: 0.5s; }

/* ── Product-page overrides (all product pages) ─────────── */
.pp-section-title {
  font-size: clamp(2.8rem, 6.5vw, 6rem) !important;
  letter-spacing: -0.04em !important;
  line-height: 0.97 !important;
  font-weight: 900 !important;
}
.pp-section-desc {
  font-size: clamp(1rem, 1.4vw, 1.2rem) !important;
  max-width: 620px !important;
}
.pp-agency-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem) !important;
  letter-spacing: -0.035em !important;
  line-height: 1.0 !important;
}
.pp-sepa-title {
  font-size: clamp(2.5rem, 5.5vw, 5rem) !important;
  letter-spacing: -0.04em !important;
  line-height: 1.0 !important;
}

/* ── Rentalvetrina hero override ─────────────────────────── */
.rv-hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 6rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  line-height: 0.97 !important;
}
.rv-hero p {
  font-size: clamp(1rem, 1.4vw, 1.25rem) !important;
  margin-top: 16px !important;
}

/* ── Mobile tweaks ──────────────────────────────────────── */
@media (max-width: 600px) {
  .rd-h1, .rd-h2 { letter-spacing: -0.03em; line-height: 1.0; }
  .rd-steps { gap: 0; }
  .rd-step-num { font-size: 2rem; width: 48px; }
  .rd-gdpr-item { flex-direction: column; gap: 12px; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE — Tablet ≤ 900px
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .rd-two-col--60-40 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE — Smartphone ≤ 768px
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Section spacing — drastically reduced */
  .rd-section        { padding: clamp(52px, 10vw, 72px) 0; }
  .rd-section--sm    { padding: clamp(36px, 8vw, 52px) 0; }

  /* Headlines — smaller on mobile */
  .rd-h1   { font-size: clamp(2rem, 9vw, 3rem) !important; line-height: 1.05 !important; letter-spacing: -0.03em !important; }
  .rd-h2   { font-size: clamp(1.9rem, 8.5vw, 2.8rem) !important; line-height: 1.05 !important; letter-spacing: -0.03em !important; }
  .rd-h2--med { font-size: clamp(1.5rem, 7vw, 2.2rem) !important; }
  .rd-h3   { font-size: clamp(1.15rem, 5vw, 1.5rem) !important; }

  /* Lead text full-width */
  .rd-lead { font-size: 1rem; max-width: 100%; margin-top: 14px; line-height: 1.7; }
  .rd-lead--wide { max-width: 100%; }

  /* Eyebrow */
  .rd-eyebrow { margin-bottom: 12px; }

  /* Buttons — stack full width */
  .rd-btn-row {
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }
  .rd-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  /* Stats row — 2x2 grid */
  .rd-stats { gap: clamp(16px, 4vw, 24px); }
  .rd-stat-num { font-size: clamp(2.4rem, 12vw, 3.8rem); }
  .rd-stat-label { font-size: 0.72rem; margin-top: 6px; }

  /* Two column — always single on mobile */
  .rd-two-col,
  .rd-two-col--60-40 {
    grid-template-columns: 1fr !important;
    gap: clamp(32px, 8vw, 48px) !important;
  }
  /* Remove reverse on mobile — natural flow */
  .rd-two-col--reverse .rd-col:first-child { order: 0; }
  .rd-two-col--reverse .rd-col:last-child  { order: 0; }

  /* Steps — compact */
  .rd-step { gap: 14px; padding: 18px 0; }
  .rd-step-num { font-size: clamp(1.8rem, 8vw, 2.8rem); width: 44px; }
  .rd-step-title { font-size: 0.97rem; }
  .rd-step-text  { font-size: 0.85rem; }

  /* Feature list — readable */
  .rd-flist li { font-size: 0.9rem; gap: 10px; padding: 13px 0; }

  /* Score visual — contained */
  .rd-score-visual { padding: 24px; }
  .rd-score-big { font-size: clamp(3rem, 14vw, 5rem) !important; }
  .rd-score-label { font-size: 0.7rem; margin-top: 2px; }
  .rd-score-bar-name { width: 90px; font-size: 0.76rem; }
  .rd-score-bar-val  { font-size: 0.78rem; }

  /* SEPA rows */
  .rd-sepa-visual { gap: 8px; }
  .rd-sepa-row { flex-wrap: wrap; gap: 6px; padding: 12px 16px; }
  .rd-sepa-month  { font-size: 0.8rem; flex: 1; }
  .rd-sepa-amount { font-size: 0.88rem; font-weight: 800; }
  .rd-sepa-status { font-size: 0.68rem; padding: 3px 8px; }

  /* GDPR items */
  .rd-gdpr-grid { gap: 10px; }
  .rd-gdpr-item { gap: 14px; padding: 18px 20px; }
  .rd-gdpr-icon { width: 36px; height: 36px; flex-shrink: 0; }
  .rd-gdpr-title { font-size: 0.9rem; }
  .rd-gdpr-text  { font-size: 0.82rem; }

  /* Callout */
  .rd-callout { flex-direction: column; gap: 12px; padding: 20px; }

  /* Split cards */
  .rd-split { grid-template-columns: 1fr; gap: 10px; }
  .rd-split-card { padding: 20px; }
  .rd-split-items li { font-size: 0.87rem; }

  /* Product grid — single column */
  .rd-product-grid { grid-template-columns: 1fr; gap: 14px; }
  .rd-product-card { padding: 24px; }
  .rd-product-name { font-size: 1.2rem; }
  .rd-product-desc { font-size: 0.87rem; }

  /* CTA section */
  .rd-cta-section { padding: clamp(64px, 12vw, 96px) 0; }
  .rd-cta-title { font-size: clamp(2rem, 9vw, 3.2rem) !important; line-height: 1.0 !important; letter-spacing: -0.03em !important; }
  .rd-cta-sub   { font-size: 0.97rem; }
  .rd-cta-btns  { flex-direction: column; gap: 10px; align-items: stretch; }
  .rd-cta-btns .rd-btn { font-size: 1rem !important; padding: 16px 24px !important; width: 100%; justify-content: center; }

  /* Intelligence section override */
  .ai-statement { font-size: clamp(1.9rem, 8.5vw, 3rem) !important; letter-spacing: -0.03em !important; }
  .ai-statement-wrap { margin-bottom: clamp(32px, 5vw, 48px); }
  .ai-inner { grid-template-columns: 1fr !important; gap: 32px; max-width: 100%; }
  .ai-headline { font-size: clamp(1.5rem, 6vw, 2.2rem) !important; }

  /* Product-page section titles */
  .pp-section-title { font-size: clamp(1.9rem, 8.5vw, 3rem) !important; }
  .pp-sepa-title    { font-size: clamp(1.9rem, 8.5vw, 3rem) !important; }
  .pp-agency-title  { font-size: clamp(1.6rem, 7vw, 2.4rem) !important; }
  .pp-section-desc  { font-size: 0.97rem !important; }

  /* Rentalvetrina hero */
  .rv-hero { padding: clamp(80px, 14vw, 120px) 20px clamp(48px, 8vw, 72px); }
  .rv-hero h1 { font-size: clamp(2rem, 9vw, 3.2rem) !important; }
  .rv-hero p  { font-size: 1rem !important; }
  .rv-hero-stats { gap: 16px; padding: 12px 20px; }
  .rv-hero-stat-num { font-size: 1.1rem; }
  .rv-hero-stat-label { font-size: 0.62rem; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE — Small phone ≤ 480px
   ═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .rd-h1  { font-size: clamp(1.75rem, 9vw, 2.4rem) !important; }
  .rd-h2  { font-size: clamp(1.65rem, 8.5vw, 2.2rem) !important; }
  .rd-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .rd-stat-num { font-size: clamp(2rem, 11vw, 3rem); }
  .ai-statement { font-size: clamp(1.65rem, 8.5vw, 2.4rem) !important; }
  .rd-cta-title { font-size: clamp(1.75rem, 9vw, 2.4rem) !important; }
  .rd-product-grid { gap: 10px; }
  .rd-step-num { font-size: 1.6rem; width: 36px; }
  .rv-hero-stats { gap: 10px; padding: 10px 14px; }
  .rv-hero-stat-sep { display: none; }
}


/* ════════════════════════════════════════════════════════════════════
   LIGHT SECTIONS — Apple-style alternating dark / light
   Analogia: come il sito Apple — sezioni scure e chiare si alternano.
   bg: #f5f5f7  testo: #1d1d2e  body: #424b6a
   ════════════════════════════════════════════════════════════════════ */

/* ── Sezione chiara base ────────────────────────────────────────────── */
.rd-light {
  background: #f5f5f7;
  color: #1d1d2e;
}

/* ── Titoli → gradiente scuro (vetro che riceve luce dal basso) ─────── */
.rd-light .rd-h1,
.rd-light .rd-h2,
.rd-light .rd-h2--med,
.rd-light .rd-h3 {
  background: linear-gradient(175deg, #0a0e1a 0%, #1e3560 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* remove dark-mode glass gradient */
.rd-light .rd-h1,
.rd-light .rd-h2,
.rd-light .rd-h2--med,
.rd-light .rd-h3 { -webkit-text-fill-color: transparent; }

/* ── Body text ──────────────────────────────────────────────────────── */
.rd-light .rd-lead  { color: #424b6a; }
.rd-light .rd-eyebrow { color: #1a6fcc; background: rgba(26,111,204,0.06); border-color: rgba(26,111,204,0.20); }
.rd-light .section-kicker { color: #0055bb; }

/* ── Gradient accent words — versioni scure per sfondo chiaro ────────── */
/* All stops checked: contrast ≥ 4.5:1 on #f5f5f7 */
.rd-light .rd-g-blue {
  background: linear-gradient(105deg, #003d80 0%, #0055bb 55%, #3b3faa 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rd-light .rd-g-teal {
  background: linear-gradient(105deg, #006b5e 0%, #0079a8 55%, #0055bb 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rd-light .rd-g-purple {
  background: linear-gradient(105deg, #6d28d9 0%, #7c3aed 50%, #4f46e5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rd-light .rd-g-full {
  background: linear-gradient(105deg, #003d80 0%, #6d28d9 50%, #0055bb 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: rdShimmer 8s linear infinite;
}

/* ── Feature lists ───────────────────────────────────────────────────── */
.rd-light .rd-flist li {
  color: #424b6a;
  border-color: rgba(0,0,0,0.08);
}
.rd-light .rd-flist li:first-child { border-top-color: rgba(0,0,0,0.08); }
.rd-light .rd-flist li strong { color: #0a0e1a; }
.rd-light .rd-flist--dot  li::before { background: #0055bb; }
.rd-light .rd-flist--check li::before { color: #0055bb; }

/* ── Steps ───────────────────────────────────────────────────────────── */
.rd-light .rd-step          { border-color: rgba(0,0,0,0.09); }
.rd-light .rd-step:first-child { border-top-color: rgba(0,0,0,0.09); }
.rd-light .rd-step-num      { color: rgba(0,85,187,0.38); }
.rd-light .rd-step-title    { color: #0a0e1a; }
.rd-light .rd-step-text     { color: #424b6a; }

/* ── Score visual ────────────────────────────────────────────────────── */
.rd-light .rd-score-visual {
  background: rgba(255,255,255,0.92);
  border-color: rgba(0,0,0,0.09);
  box-shadow: 0 24px 64px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.04);
}
.rd-light .rd-score-big {
  background: linear-gradient(105deg, #0055bb 0%, #006b5e 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rd-light .rd-score-label   { color: rgba(0,100,80,0.7); }
.rd-light .rd-score-bar     { color: #424b6a; }
.rd-light .rd-score-bar-track { background: rgba(0,0,0,0.07); }
.rd-light .rd-score-bar-fill  { background: linear-gradient(90deg, #0055bb, #006b5e); }
.rd-light .rd-score-bar-val   { color: #006b5e; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.rd-light .rd-btn--ghost {
  color: #0a0e1a;
  border-color: rgba(0,0,0,0.20);
}
.rd-light .rd-btn--ghost:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.35);
}
.rd-light .rd-btn--primary {
  background: linear-gradient(135deg, #003d80 0%, #0055bb 100%);
  box-shadow: 0 8px 20px rgba(0,85,187,0.28);
}

/* ── Callout ─────────────────────────────────────────────────────────── */
.rd-light .rd-callout--blue {
  background: rgba(0,85,187,0.06);
  border-color: rgba(0,85,187,0.18);
}
.rd-light .rd-callout-title { color: #0055bb; }
.rd-light .rd-callout-text  { color: #424b6a; }

/* ── Mini stat cards (§6 proprietari) ───────────────────────────────── */
.rd-stat-mini {
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
}
.rd-stat-mini-num {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.rd-stat-mini-label {
  font-size: 0.75rem;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.rd-light .rd-stat-mini {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.rd-light .rd-stat-mini-num   { color: #0a0e1a; }
.rd-light .rd-stat-mini-label { color: #6a7a9a; }
.rd-light .rd-stat-mini-num--teal { color: #006b5e; }

/* ── Dividers — hidden (background change = separator, Apple style) ── */
.rd-divider { display: none; }

/* ── Transition strip between dark→light & light→dark ───────────────── */
/* Apple adds no strip; clean cut with shadow */
.rd-light {
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.05), inset 0 -1px 0 rgba(0,0,0,0.05);
}

/* ── Dossier mockup containment */
.ai-visual { min-width: 0; }
.dossier-mockup { width: 100%; max-width: 100%; box-sizing: border-box; }

/* ══════════════════════════════════════════════════════════════
   SPLIT CARDS  on .rd-light background  (Privacy section)
   ══════════════════════════════════════════════════════════════ */
.rd-light .rd-split-card {
  border-color: rgba(0,0,0,0.08);
}
.rd-light .rd-split-card--yes {
  background: rgba(26,143,111,0.07);
  border-color: rgba(26,143,111,0.18);
}
.rd-light .rd-split-card--no {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.07);
}
.rd-light .rd-split-label { color: #1a3a5c; }
.rd-light .rd-split-card--yes .rd-split-label { color: #1a6e52; }
.rd-light .rd-split-card--no  .rd-split-label { color: #5a3a2e; }
.rd-light .rd-split-items li { color: #2a3550; border-bottom-color: rgba(0,0,0,0.06); }
.rd-light .rd-split-items li span { color: #1a8f6f; }

/* ✕ icon in "Non vede mai" column */
.rd-split-no-icon { color: #b03030; font-style: normal; }
.rd-light .rd-split-no-icon { color: #b03030; }


/* ════════════════════════════════════════════════════════════════════════════
   GLOBAL SECTION OVERRIDE — Product pages mobile fix
   The legacy styles.css rule `section { height: 100vh; display: flex; }`
   clips content on ALL product pages. This overrides it for product-page body.
   ════════════════════════════════════════════════════════════════════════════ */
body.product-page section {
  height: auto !important;
  min-height: 0 !important;
  display: block !important;
  justify-content: initial !important;
  align-items: initial !important;
  scroll-snap-align: none !important;
}
/* rd-cta-section uses padding-based height — restore it */
body.product-page .rd-cta-section {
  display: block !important;
}
