/* ============================================
   Bouwsteenwinkel — home.css (v6)
   Max-conversion funnel homepage
   ============================================ */

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(180deg, #FFF8F4 0%, var(--bg-primary) 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-flash {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--text-primary);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 22px;
}

.hero-flash-dot {
  width: 6px;
  height: 6px;
  background: #FF4D3D;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero h1 {
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: -1.4px;
  margin-bottom: 18px;
  font-weight: 500;
}

.hero h1 em {
  font-style: normal;
  color: var(--brand-coral);
}

.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--brand-coral);
  color: var(--text-tertiary);
  font-size: 0.75em;
  font-weight: 400;
}

.hero-lead {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 14px;
  max-width: 500px;
}

.hero-lead b {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 16px;
  background: var(--text-primary);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-price-tag b {
  color: var(--amber-500);
  font-size: 15px;
  font-weight: 600;
}

.hero-cta-block {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-secondary-link {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  padding: 14px 10px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  transition: color var(--transition-fast);
}

.hero-secondary-link:hover { color: var(--brand-coral); }

.hero-micro-trust {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--text-secondary);
  align-items: center;
  flex-wrap: wrap;
}

.hero-micro-trust b {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-rating-inline {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.hero-rating-inline .stars { color: var(--amber-500); }

.hero-stock-alert {
  margin-top: 16px;
  padding: 10px 14px;
  background: var(--amber-50);
  border-left: 3px solid var(--amber-500);
  border-radius: 8px;
  font-size: 13px;
  color: var(--amber-900);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-stock-alert::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--amber-500);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-stock-alert b { font-weight: 600; }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 500px;
}

.hero-float {
  position: absolute;
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-xl), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.hero-float-main {
  top: 30px;
  left: 20px;
  right: 40px;
  bottom: 50px;
  background: var(--blue-50);
  transform: rotate(-3deg);
  z-index: 2;
}

.hero-float-main-inner {
  width: 100%;
  height: 68%;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-float-main .product-shape { width: 180px; height: 130px; }
.hero-float-main-inner img.product-img-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 14px;
  display: block;
}

.hero-float-tag-top {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand-coral);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-float-tag-top::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-float-tag-stock {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: var(--amber-900);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-float-tag-stock::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--amber-500);
  border-radius: 50%;
}

.hero-float-main-title {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-900);
}

.hero-float-main-meta {
  font-size: 11px;
  color: var(--blue-800);
  opacity: 0.7;
  margin-top: 3px;
}

.hero-float-main-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--text-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.hero-float-main-price b {
  color: var(--amber-500);
  font-size: 18px;
}

.hero-float-side-1 {
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  background: var(--brand-coral-light);
  transform: rotate(6deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-side-2 {
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: var(--amber-50);
  transform: rotate(-8deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   LIVE ACTIVITY BAR
   ============================================ */
.live-bar {
  background: var(--text-primary);
  color: #fff;
  padding: 14px 0;
  font-size: 13px;
  overflow: hidden;
}

.live-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.live-bar-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.live-bar b {
  color: var(--amber-500);
  font-weight: 600;
}

.live-bar-sep { opacity: 0.3; }

/* ============================================
   INSTANT START
   ============================================ */
.instant-action { padding: 56px 0; background: var(--bg-primary); }

.section-head-tight {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}

.section-head-tight h2 {
  font-size: 36px;
  letter-spacing: -0.6px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.section-head-tight p {
  font-size: 15px;
  color: var(--text-secondary);
}

.instant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.instant-card {
  position: relative;
  padding: 26px 22px 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.instant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.instant-card-1 { background: var(--brand-coral-light); }
.instant-card-2 { background: var(--blue-50); }
.instant-card-3 { background: var(--green-50); }
.instant-card-4 { background: var(--amber-50); }

.instant-shape {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
}

.instant-card-1 .instant-shape { background: var(--brand-coral); opacity: 0.25; }
.instant-card-2 .instant-shape { background: var(--blue-500);    opacity: 0.25; }
.instant-card-3 .instant-shape { background: var(--green-500);   opacity: 0.25; }
.instant-card-4 .instant-shape { background: var(--amber-500);   opacity: 0.35; }

.instant-card-body { position: relative; z-index: 2; }

.instant-card-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.instant-card-1 .instant-card-title { color: #4A1B0C; }
.instant-card-2 .instant-card-title { color: var(--blue-900); }
.instant-card-3 .instant-card-title { color: var(--green-900); }
.instant-card-4 .instant-card-title { color: var(--amber-900); }

.instant-card-sub {
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.8;
}

.instant-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  font-size: 12px;
}

.instant-card-count { opacity: 0.7; font-weight: 500; }

.instant-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  font-size: 14px;
  transition: transform var(--transition-fast);
}

.instant-card:hover .instant-card-arrow { transform: translateX(4px); }

/* ============================================
   WHY RENTING
   ============================================ */
.why-rent { padding: 56px 0; background: var(--bg-tertiary); }

.why-rent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}

.why-rent-card {
  padding: 28px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
}

.why-rent-big {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1;
  margin-bottom: 8px;
}

.why-rent-big-coral { color: var(--brand-coral); }
.why-rent-big-blue  { color: var(--blue-500); }
.why-rent-big-green { color: var(--green-500); }

.why-rent-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.why-rent-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.hiw { padding: 56px 0; background: var(--bg-primary); }

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hiw-step {
  padding: 22px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
}

.hiw-n {
  width: 30px;
  height: 30px;
  background: var(--text-primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hiw-step h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.hiw-step p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ============================================
   MEMBERSHIP (ACCESS) BLOCK
   ============================================ */
.access {
  padding: 64px 0;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.access-note {
  text-align: center;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.access-note .eyebrow { margin-bottom: 6px; }

.access-note h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.access-note p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}

.access-card {
  padding: 28px 24px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.access-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.access-card.featured {
  border: 2px solid var(--brand-coral);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.access-card.featured:hover { transform: scale(1.02) translateY(-3px); }

.access-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-coral);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.access-title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
}

.access-sub {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

.access-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.access-price-num {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.8px;
}

.access-price-sub {
  font-size: 12px;
  color: var(--text-tertiary);
}

.access-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  flex: 1;
}

.access-feature {
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 12px;
  line-height: 1.4;
}

.access-feature b { font-weight: 600; }

.access-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-50);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-check::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
}

.access-cta-label {
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: auto;
}

/* Bottom strong CTA */
.access-bottom-cta {
  text-align: center;
  margin-top: 32px;
}

/* ============================================
   PRODUCT TRIGGER
   ============================================ */
.trigger { padding: 56px 0; background: var(--bg-primary); }

.trigger-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 24px;
  gap: 24px;
  flex-wrap: wrap;
}

.trigger-head h2 {
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.price-week {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}

.price-week-highlight { color: var(--brand-coral); }

.price-week-per {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.rent-duration-chip {
  font-size: 10px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 3px 8px;
  border-radius: 6px;
  margin-top: 6px;
  display: inline-block;
}

.build-time-chip {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.build-time-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--text-tertiary);
  border-radius: 50%;
}

.trigger .product-img { aspect-ratio: 1; }

.trigger-foot {
  margin-top: 28px;
  text-align: center;
}

/* ============================================
   PROOF
   ============================================ */
.proof { padding: 56px 0; background: var(--bg-tertiary); }

.proof-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 28px;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-head h2 {
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.proof-rating-box {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px 18px;
  background: #fff;
  border-radius: 12px;
}

.proof-rating-score {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.proof-rating-right { font-size: 12px; color: var(--text-secondary); }
.proof-rating-right .stars { color: var(--amber-500); font-size: 13px; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proof-card {
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.proof-stars {
  color: var(--amber-500);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.proof-quote {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.proof-author {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.proof-author-name { font-size: 13px; font-weight: 500; }
.proof-author-meta { font-size: 11px; color: var(--text-tertiary); }

.verified-chip {
  margin-left: auto;
  font-size: 10px;
  padding: 3px 8px;
  background: var(--green-50);
  color: var(--green-800);
  border-radius: 6px;
  font-weight: 500;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.trust-row-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.trust-row-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-row-icon svg { width: 16px; height: 16px; }

.trust-row-text { font-size: 12px; line-height: 1.3; }
.trust-row-text b { font-weight: 600; }
.trust-row-sub { font-size: 11px; color: var(--text-tertiary); }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta { padding: 64px 0; background: var(--bg-primary); }

.final-cta-box {
  padding: 64px 48px;
  background: var(--text-primary);
  color: #fff;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-blob-1 {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: var(--brand-coral);
  border-radius: 50%;
  opacity: 0.25;
}

.final-cta-blob-2 {
  position: absolute;
  bottom: -100px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: var(--amber-500);
  border-radius: 50%;
  opacity: 0.18;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: 52px;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 14px;
  font-weight: 500;
}

.final-cta-content h2 em {
  font-style: normal;
  color: var(--amber-500);
}

.final-cta-content p {
  font-size: 16px;
  color: var(--dark-text);
  margin-bottom: 24px;
}

.final-cta-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  font-size: 12px;
  color: var(--dark-muted);
  flex-wrap: wrap;
}

.final-cta-trust span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.final-cta-trust span::before {
  content: "✓";
  color: var(--amber-500);
  font-weight: 600;
}

/* ============================================
   SEO
   ============================================ */
.seo {
  padding: 56px 0;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.seo-text h2 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.seo-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.seo-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.seo-links-col h3 {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.seo-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-links-col a {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  gap: 8px;
  transition: color var(--transition-fast);
}

.seo-links-col a:hover { color: var(--brand-coral); }

.seo-links-col a::before {
  content: "→";
  color: var(--text-tertiary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .hero { padding: 40px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero h1 { font-size: 42px; }
  .hero-visual { display: none; }

  .instant-action,
  .why-rent,
  .hiw,
  .access,
  .trigger,
  .proof,
  .final-cta,
  .seo { padding: 48px 0; }

  .section-head-tight h2,
  .trigger-head h2,
  .proof-head h2 { font-size: 26px; }
  .access-note h2 { font-size: 26px; }

  .instant-grid,
  .hiw-grid { grid-template-columns: 1fr 1fr; }
  .why-rent-grid,
  .access-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }

  .final-cta-box { padding: 40px 24px; }
  .final-cta-content h2 { font-size: 32px; }

  .seo-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 620px) {
  .hero h1 { font-size: 34px; }
  .instant-grid,
  .hiw-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .seo-links-grid { grid-template-columns: 1fr; }
}
