/* ───────── Comparison table ───────── */
.cmp {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cmp-head, .cmp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.cmp-head {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.cmp-head > div, .cmp-row > div {
  padding: 20px 24px;
  font-size: 14px;
  display: flex; align-items: center;
}
.cmp-head > div {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  color: var(--text-muted);
}
.cmp-head .col-cranes { color: var(--text); }
.cmp-row {
  border-top: 1px solid var(--border);
  transition: background 160ms ease;
}
.cmp-row:hover { background: #FCFCFD; }
.cmp-row .cell-feat { font-weight: 500; }
.cmp-row .col-cranes { background: rgba(199, 242, 90, 0.06); position: relative; }
.cmp-row .col-cranes::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 2px;
  background: var(--highlight);
}
.mark {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.mark .x, .mark .ok {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
  transform: scale(0.6); opacity: 0;
  transition: transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 280ms ease;
}
.mark .x { background: rgba(239,68,68,0.10); color: var(--danger); }
.mark .ok { background: rgba(16,185,129,0.12); color: var(--success); }
.cmp.revealed .mark .x, .cmp.revealed .mark .ok { transform: scale(1); opacity: 1; }

@media (max-width: 720px) {
  .cmp-head { display: none; }
  .cmp-row {
    grid-template-columns: 1fr;
    padding: 16px 4px;
  }
  .cmp-row > div { padding: 8px 20px; }
  .cmp-row .cell-feat {
    font-size: 13px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
  }
  .cmp-row .col-alone::before { content: "Alone — "; color: var(--text-muted); font-size: 13px; margin-right: 6px; }
  .cmp-row .col-cranes::before { display: none; }
  .cmp-row .col-cranes::after { content: "With Cranes — "; color: var(--text-muted); font-size: 13px; margin-right: 6px; }
  .cmp-row .col-cranes { background: transparent; }
}

/* ───── Packages / pricing ───── */
.pricing-head { text-align: center; margin-bottom: 56px; }
.pricing-head p { color: var(--text-muted); margin-top: 14px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(10,10,10,0.18), 0 0 0 1px rgba(199, 242, 90, 0.4), 0 0 80px rgba(199, 242, 90, 0.2);
}
.price-card.featured:hover { transform: translateY(-16px); }
.pp-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--highlight);
  color: var(--accent);
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(199,242,90,0.45);
}
.pp-tag {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
}
.price-card.featured .pp-tag { color: rgba(255,255,255,0.55); }
.pp-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px; letter-spacing: -0.02em;
  margin: 8px 0 6px;
}
.pp-desc { font-size: 14px; color: var(--text-muted); min-height: 42px; }
.price-card.featured .pp-desc { color: rgba(255,255,255,0.7); }
.pp-price {
  display: flex; align-items: baseline; gap: 8px;
  margin: 24px 0 4px;
}
.pp-price .amt {
  font-family: var(--font-display);
  font-weight: 600; font-variant-numeric: tabular-nums;
  font-size: clamp(40px, 4vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pp-price .per { font-size: 14px; color: var(--text-muted); }
.price-card.featured .pp-price .per { color: rgba(255,255,255,0.6); }
.pp-anchor {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pp-anchor s { color: var(--text-muted); }
.pp-anchor .save {
  margin-left: 6px;
  background: rgba(16,185,129,0.12); color: var(--success);
  padding: 2px 8px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
}
.price-card.featured .pp-anchor { color: rgba(255,255,255,0.7); }
.price-card.featured .pp-anchor s { color: rgba(255,255,255,0.5); }
.pp-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
  flex-grow: 1;
}
.pp-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; line-height: 1.45;
}
.pp-features li .tick {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(16,185,129,0.14); color: var(--success);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  margin-top: 2px;
}
.price-card.featured .pp-features li .tick {
  background: rgba(199,242,90,0.25); color: var(--highlight);
}
.pp-cta {
  width: 100%;
  background: var(--surface-alt);
  color: var(--text);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 500; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 180ms ease, transform 180ms ease;
  min-height: 50px;
}
.pp-cta:hover { background: #ECECEE; }
.price-card.featured .pp-cta {
  background: var(--highlight);
  color: var(--accent);
  font-weight: 600;
}
.price-card.featured .pp-cta:hover { background: #B6E545; }
.pp-foot {
  text-align: center;
  margin-top: 14px;
  font-size: 12px; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.price-card.featured .pp-foot { color: rgba(255,255,255,0.6); }
.pp-social {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  font-family: var(--font-mono);
  background: rgba(255,255,255,0.10);
  color: var(--highlight);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.pp-social .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--highlight);
  box-shadow: 0 0 0 0 rgba(199,242,90, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(199,242,90, 0.6); }
  100% { box-shadow: 0 0 0 8px rgba(199,242,90, 0); }
}
.pricing-guarantee {
  margin-top: 40px;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
  padding: 18px 24px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  font-size: 13px; color: var(--text-muted);
  background: var(--surface);
}
.pricing-guarantee b { color: var(--text); font-weight: 500; }
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card.featured { transform: none; order: -1; }
  .price-card.featured:hover { transform: translateY(-4px); }
}

/* ───── Results / second slider area ───── */
.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px;
}
.shot {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease;
  position: relative;
}
.shot:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }
.shot .shot-meta {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-muted);
}
.shot .shot-meta .gain { color: var(--success); font-weight: 600; }
@media (max-width: 820px) { .results-grid { grid-template-columns: 1fr; } }

/* ───── Reviews ───── */
.reviews-grid {
  columns: 3 320px;
  column-gap: 16px;
}
.review {
  break-inside: avoid;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 0 0 16px;
  transition: border-color 180ms ease, transform 180ms ease;
}
.review:hover { border-color: #c8c8cd; transform: translateY(-2px); }
.r-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.r-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface-alt);
  color: var(--text);
  display: grid; place-items: center;
  font-weight: 600; font-size: 14px;
  flex-shrink: 0;
}
.r-name { font-weight: 500; font-size: 14px; }
.r-meta { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.r-verified { color: var(--success); font-size: 12px; }
.r-stars { color: #F59E0B; letter-spacing: 1px; font-size: 13px; margin-bottom: 10px; }
.review p { font-size: 14px; color: var(--text); line-height: 1.55; }
.reviews-more { text-align: center; margin-top: 16px; }

/* ───── FAQ ───── */
.faq-wrap {
  max-width: 800px; margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
  transition: color 180ms ease;
}
.faq-q:hover { color: #000; }
.faq-q .plus {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 280ms cubic-bezier(0.2,0.7,0.2,1), background 200ms ease;
  font-size: 14px;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.faq-a > div {
  overflow: hidden;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  padding: 0 4px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}

/* ───── Final CTA ───── */
.final-cta {
  position: relative;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 96px) clamp(28px, 5vw, 64px);
  overflow: hidden;
  margin: 0 auto;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
}
.final-cta-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.final-cta h2 { color: #fff; }
.final-cta h2 .accent { color: var(--highlight); }
.final-cta p { color: rgba(255,255,255,0.7); margin-top: 18px; }
.final-cta .hero-ctas { justify-content: center; margin-top: 32px; }
.final-cta .btn-primary {
  background: var(--highlight); color: var(--accent);
}
.final-cta .btn-primary:hover { background: #B6E545; }
.final-cta .btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.18);
}
.final-cta .btn-ghost:hover { border-color: rgba(255,255,255,0.4); }
.final-cta .hero-trust { justify-content: center; color: rgba(255,255,255,0.6); margin-top: 28px; }
.final-cta .hero-trust .sep { background: rgba(255,255,255,0.25); }

/* ───── Footer ───── */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 72px 0 32px;
  margin-top: 64px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.foot-brand p { font-size: 14px; color: var(--text-muted); margin-top: 12px; max-width: 32ch; }
.foot-col h4 {
  font-size: 12px; font-family: var(--font-mono); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 16px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: var(--text); transition: color 160ms ease; }
.foot-col a:hover { color: var(--text-muted); }
.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--text-muted);
  flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ───── Scroll reveal ───── */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 700ms cubic-bezier(0.2,0.7,0.2,1), transform 700ms cubic-bezier(0.2,0.7,0.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(12px); transition: opacity 540ms cubic-bezier(0.2,0.7,0.2,1), transform 540ms cubic-bezier(0.2,0.7,0.2,1); }
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.stagger.in > *:nth-child(2) { transition-delay: 60ms; }
.stagger.in > *:nth-child(3) { transition-delay: 120ms; }
.stagger.in > *:nth-child(4) { transition-delay: 180ms; }
.stagger.in > *:nth-child(5) { transition-delay: 240ms; }
.stagger.in > *:nth-child(6) { transition-delay: 300ms; }
.stagger.in > *:nth-child(7) { transition-delay: 360ms; }
.stagger.in > *:nth-child(8) { transition-delay: 420ms; }
.stagger.in > *:nth-child(9) { transition-delay: 480ms; }
.stagger.in > *:nth-child(10) { transition-delay: 540ms; }
.stagger.in > *:nth-child(11) { transition-delay: 600ms; }
.stagger.in > *:nth-child(12) { transition-delay: 660ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
