.real-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 860px) {
  .real-grid {
    grid-template-columns: 1fr;
  }
}

.real-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.real-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.6);
}

.real-card.rc-popular {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.12);
}

.real-browser {
  position: relative;
}

.real-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: #161616;
  border-bottom: 1px solid #222;
}

.real-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.real-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}

.real-dots span:nth-child(1) {
  background: #ff5f56;
}

.real-dots span:nth-child(2) {
  background: #ffbd2e;
}

.real-dots span:nth-child(3) {
  background: #27c93f;
}

.real-url {
  flex: 1;
  background: #222;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.65rem;
  color: #4a4a4a;
  text-align: center;
  font-family: monospace;
  letter-spacing: 0.01em;
}

.real-formula-pill {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.real-meta {
  padding: 16px 20px 20px;
}

.real-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.real-sector {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.71rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.real-formula-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
}

.real-client {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.real-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 11px;
  line-height: 1.55;
}

.real-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 13px;
}

.real-tags span {
  font-size: 0.69rem;
  background: var(--dark4);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 20px;
}

.real-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.real-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}

.real-cta:hover {
  gap: 9px;
}

.real-delivery {
  font-size: 0.71rem;
  color: var(--text-muted);
}

/* ── Secteur badges ── */
.real-sector-plombier {
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.22);
  color: #1d4ed8;
}
.real-sector-restaurant {
  background: rgba(80, 112, 101, 0.1);
  border: 1px solid rgba(80, 112, 101, 0.25);
  color: #507065;
}
.real-sector-portrait {
  background: rgba(110, 192, 211, 0.1);
  border: 1px solid rgba(110, 192, 211, 0.25);
  color: #6ec0d3;
}
.real-sector-ecommerce {
  background: rgba(190, 166, 124, 0.1);
  border: 1px solid rgba(190, 166, 124, 0.22);
  color: #bea67c;
}

/* ── Formula badges ── */
.real-formula-starter {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.28);
  color: #60a5fa;
}
.real-formula-pro {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.32);
  color: var(--gold);
}
.real-formula-premium {
  background: rgba(190, 166, 124, 0.1);
  border: 1px solid rgba(190, 166, 124, 0.28);
  color: #bea67c;
}

/* ── Formula pills (dans real-bar) ── */
.real-formula-pill-starter {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #93c5fd;
}
.real-formula-pill-pro {
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #fcd34d;
}
.real-formula-pill-portrait {
  background: rgba(110, 192, 211, 0.15);
  border: 1px solid rgba(110, 192, 211, 0.35);
  color: #6ec0d3;
}
.real-formula-pill-premium {
  background: rgba(190, 166, 124, 0.15);
  border: 1px solid rgba(190, 166, 124, 0.4);
  color: #bea67c;
}

/* ── Real browser URL overflow mask ── */
.real-url-mask {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 28px;
  pointer-events: none;
}
.real-url-mask-dark {
  background: linear-gradient(90deg, transparent, #161616);
}

/* ── Mini browser sections communes ── */
.mini-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mini-nav-bar-light {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.mini-section-label {
  font-size: 0.38rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mini-divider-h {
  height: 1px;
  background: #f0f0f0;
}
.mini-divider-v {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.25);
}
.mini-text-line-lg {
  height: 8px;
  border-radius: 3px;
  margin-bottom: 3px;
}
.mini-text-line-sm {
  height: 3px;
  border-radius: 2px;
  margin-bottom: 2px;
}
.mini-text-line-md {
  height: 5px;
  border-radius: 2px;
  margin-bottom: 2px;
}
.mini-cta-btn {
  border-radius: 4px;
  padding: 4px 9px;
  font-size: 0.42rem;
  font-weight: 700;
  white-space: nowrap;
}
.mini-cta-btn-outline {
  border-radius: 4px;
  padding: 4px 9px;
  font-size: 0.42rem;
  white-space: nowrap;
  background: transparent;
}
.mini-badge-absolute {
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 2px;
  padding: 1px 3px;
  font-size: 0.33rem;
  font-weight: 800;
  z-index: 1;
}
.mini-trust-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 8px;
}
.mini-trust-item {
  text-align: center;
}
.mini-trust-label {
  font-size: 0.34rem;
  color: rgba(255, 255, 255, 0.5);
}
.mini-trust-value {
  font-size: 0.6rem;
  font-weight: 900;
}
.mini-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 6px 10px;
}
.mini-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.mini-svc-card {
  border-radius: 5px;
  padding: 5px 3px;
  text-align: center;
}
.mini-svc-icon {
  font-size: 0.62rem;
  margin-bottom: 2px;
}
.mini-svc-label {
  font-size: 0.33rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.mini-svc-bar {
  width: 20px;
  height: 2px;
  border-radius: 1px;
  margin: 0 auto;
}

/* ── Ownership band ── */
.ownership-band {
  margin: 28px 0 36px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.07) 0%, rgba(201, 168, 76, 0.02) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ownership-band-icon {
  font-size: 1.6rem;
}
.ownership-band-text {
  flex: 1;
  min-width: 200px;
}
.ownership-band-text strong {
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
  font-size: 0.97rem;
}
.ownership-band-text span {
  color: var(--text-muted);
  font-size: 0.84rem;
}
.ownership-band-stats {
  display: flex;
  gap: 18px;
  text-align: center;
  flex-shrink: 0;
}
.ownership-stat-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}
.ownership-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ── Section head center ── */
.section-head-center {
  text-align: center;
}
.section-head-center .eyebrow {
  justify-content: center;
}
.section-desc-centered {
  max-width: 540px;
  margin: 0 auto;
}

/* ── CTA bottom block ── */
.cta-bottom-block {
  text-align: center;
  margin-top: 40px;
}
.cta-bottom-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Real card footer ── */
.real-foot-delivery-starter {
  color: #60a5fa;
}
.real-foot-delivery-pro {
  color: var(--gold);
}
.real-foot-delivery-premium {
  color: #bea67c;
}

/* ── Promo bar ── */
.mini-promo-bar {
  padding: 3px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.44rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* ── Mini product card ── */
.mini-product-card {
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.mini-product-thumb {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.mini-product-info {
  padding: 3px 5px;
}
.mini-product-price {
  font-size: 0.44rem;
  font-weight: 700;
}
.mini-product-price-old {
  font-size: 0.36rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.2);
}

/* ── Lighthouse bar ── */
#lighthouseBar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation: lighthouseGrow 1.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

@keyframes lighthouseGrow {
  to {
    width: 94%;
  }
}
