/* ═══════════════════════════════════════════════════════════════
   CINEMATIC EFFECTS — RapidFab OS
   Layered on top of main.css. No overrides, only enhancements.
   BUG FIX: All cin-reveal classes REMOVED. GSAP handles scroll
   animations exclusively — no CSS-based reveal classes.
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1. Cursor Glow (desktop only) ─── */
.cin-cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 86, 80, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.6s;
}
.cin-cursor-glow.active { opacity: 1; }
@media (max-width: 768px) { .cin-cursor-glow { display: none; } }

/* ─── 2. Mesh Gradient Hero Background ─── */
.cin-mesh-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-desktop-wrap,
.hero-mobile-frame {
  position: relative;
  z-index: 2;
}
.hero-desktop-title,
.hero-mobile-title {
  position: relative;
}

/* ─── 3. Spotlight Border Cards ─── */

/* Advantage cards */
.advantage-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.25s;
}
.advantage-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    circle 200px at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(251, 86, 80, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}
.advantage-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle 180px at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(251, 86, 80, 0.04),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}
.advantage-card:hover::before,
.advantage-card:hover::after {
  opacity: 1;
}

.advantage-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(251, 86, 80, 0.55);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

/* Benefit cards */
.benefit-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    circle 220px at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(251, 86, 80, 0.06),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle 250px at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(251, 86, 80, 0.06),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.benefit-card:hover::before,
.benefit-card:hover::after {
  opacity: 1;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(251, 86, 80, 0.08);
}

/* Plan cards */
.plan-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.plan-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    circle 200px at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(251, 86, 80, 0.06),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.plan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle 250px at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(251, 86, 80, 0.05),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.plan-card:hover::before,
.plan-card:hover::after {
  opacity: 1;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

/* ─── 4. 3D Tilt on Advantage Cards ─── */
.advantage-card .advantage-card-content,
.advantage-card .advantage-card-icon {
  position: relative;
  z-index: 2;
}

/* ─── 5. Animated Gradient Text ─── */
.cin-gradient-text {
  background: linear-gradient(90deg, #fb5650, #ff8866, #5eadb5, #fb5650);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cin-gradient-flow 6s linear infinite;
}
@keyframes cin-gradient-flow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Gradient accent for section headings' span */
.features-heading h2 span,
.advantages-eyebrow {
  background: linear-gradient(90deg, #fb5650, #ff8866, #e85d3a, #fb5650);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cin-gradient-flow 6s linear infinite;
}

/* Final CTA gradient heading */
.final-cta-card h2 .txt-red {
  background: linear-gradient(90deg, #fb5650, #ff8866, #e85d3a, #fb5650);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cin-gradient-flow 4s linear infinite;
}

/* ─── 6. Flip Cards for Benefits ─── */
.cin-flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cin-flip-card {
  perspective: 800px;
  height: 340px;
  cursor: pointer;
}
.cin-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}
.cin-flip-card:hover .cin-flip-inner {
  transform: rotateY(180deg);
}
.cin-flip-front,
.cin-flip-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.cin-flip-front {
  background: #fff;
  border: 1px solid var(--border, #d9dde5);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  justify-content: flex-end;
}
.cin-flip-back {
  background: #fb5650;
  color: #fff;
  transform: rotateY(180deg);
  justify-content: center;
}
.cin-flip-front .cin-flip-icon {
  width: 48px;
  height: 48px;
  margin-bottom: auto;
}
.cin-flip-front h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
}
.cin-flip-front p {
  font-size: 14px;
  color: var(--text-muted, #6b6c7e);
  margin: 0;
  line-height: 1.5;
}
.cin-flip-back h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
}
.cin-flip-back p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .cin-flip-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .cin-flip-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── 7. Sticky Stack for Features ─── */
.cin-stack-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 120px;
}
.cin-stack-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.cin-stack-visual {
  position: sticky;
  top: 120px;
  height: fit-content;
}
.cin-mockup {
  background: #fff;
  border: 1px solid var(--border, #d9dde5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.cin-mockup-bar {
  height: 40px;
  background: #f5f5f7;
  border-bottom: 1px solid var(--border, #d9dde5);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}
.cin-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}
.cin-mockup-body {
  padding: 32px;
  min-height: 340px;
  position: relative;
}
.cin-mockup-state {
  position: absolute;
  inset: 0;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.cin-mockup-state.active {
  opacity: 1;
}
.cin-stack-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 0;
}
.cin-feature-card {
  padding: 36px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border, #d9dde5);
  opacity: 0.35;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.cin-feature-card.active {
  opacity: 1;
  transform: translateY(0);
  border-color: #fb5650;
  box-shadow: 0 8px 32px rgba(251, 86, 80, 0.1);
}
.cin-feature-num {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fb5650;
  font-weight: 600;
  margin-bottom: 8px;
}
.cin-feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text-main, #111116);
}
.cin-feature-card p {
  font-size: 15px;
  color: var(--text-muted, #6b6c7e);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .cin-stack-container {
    grid-template-columns: 1fr;
  }
  .cin-stack-visual {
    position: relative;
    top: auto;
  }
}

/* ─── 8. Coverflow Carousel (workflow & testimonials) ─── */
.cin-coverflow-section {
  padding: 40px 0 80px;
  perspective: 1200px;
  overflow: hidden;
}
.cin-coverflow-track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  position: relative;
  transform-style: preserve-3d;
}
.cin-coverflow-item,
.cin-workflow-item,
.cin-testi-item {
  position: absolute;
  left: 50%;
  width: 340px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cin-coverflow-item h3,
.cin-workflow-item h3,
.cin-testi-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
}
.cin-coverflow-item p,
.cin-workflow-item p,
.cin-testi-item p {
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
  line-height: 1.4;
}
.cin-coverflow-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.cin-coverflow-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border, #d9dde5);
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cin-coverflow-nav button:hover {
  background: #1e1e22;
}
/* Light section coverflow buttons */
.testimonials-section .cin-coverflow-nav button {
  color: #111116;
  border-color: #d9dde5;
}
.testimonials-section .cin-coverflow-nav button:hover {
  background: #f0f0f4;
}

.testimonials-section .cin-coverflow-section {
  width: 100%;
  max-width: 920px;
  padding: 24px 0 32px;
}

.testimonials-section .cin-coverflow-track {
  height: 340px;
}

.testimonials-section .cin-testi-item {
  width: 300px;
  height: 320px;
  padding: 24px;
}

.testimonials-section .cin-coverflow-nav {
  margin-top: 16px;
}
/* Dark section coverflow — more space */
.workflow-section .cin-coverflow-section {
  background: #0c0e1b;
  border-radius: 24px;
  padding: 48px 0 60px;
  margin-top: 24px;
}

.workflow-section .cin-coverflow-track {
  height: 480px;
}

.workflow-section .cin-workflow-item {
  width: 380px;
  height: 440px;
  justify-content: flex-start;
  padding: 24px;
}

.cin-workflow-step {
  color: #fb5650;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cin-workflow-image {
  width: 100%;
  height: 260px;
  margin: 10px 0 18px;
  object-fit: contain;
  object-position: center;
}

.workflow-section .cin-workflow-item h3 {
  font-size: 24px;
}

.workflow-section .cin-workflow-item p {
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 480px) {
  .cin-coverflow-section {
    padding: 24px 0 48px;
  }

  .workflow-section .cin-coverflow-section {
    padding: 32px 0 44px;
    border-radius: 18px;
  }

  .cin-coverflow-track {
    height: 360px;
  }

  .cin-coverflow-item,
  .cin-workflow-item,
  .cin-testi-item {
    width: calc(100vw - 64px);
    max-width: 300px;
    height: 340px;
    padding: 22px;
  }

  .cin-workflow-image {
    height: 180px;
    margin: 8px 0 14px;
  }

  .workflow-section .cin-workflow-item h3 {
    font-size: 20px;
  }

  .workflow-section .cin-workflow-item p {
    font-size: 13px;
  }
}

/* ─── 9. Horizontal Scroll (workflow section) ─── */
.cin-hscroll-section {
  overflow: hidden;
}
.cin-hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cin-hscroll-track {
  display: flex;
  gap: 32px;
  padding: 0 5vw;
  will-change: transform;
}
.cin-hscroll-card {
  flex-shrink: 0;
  width: clamp(300px, 35vw, 440px);
  height: 55vh;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cin-hscroll-card:hover {
  transform: translateY(-4px);
}
.cin-hscroll-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.cin-hscroll-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(12, 14, 27, 0.9) 0%, transparent 60%);
}
.cin-hscroll-card-content {
  position: relative;
  z-index: 2;
}
.cin-hscroll-num {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fb5650;
  font-weight: 600;
  margin-bottom: 8px;
}
.cin-hscroll-progress {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}
.cin-hscroll-progress.visible {
  opacity: 1;
}
.cin-hscroll-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  overflow: hidden;
}
.cin-hscroll-fill {
  width: 0%;
  height: 100%;
  background: #fb5650;
  transition: width 0.1s linear;
}
.cin-hscroll-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

/* ─── 10. Particle / Confetti Effects ─── */
.cin-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}
.cin-confetti {
  position: fixed;
  width: 6px;
  height: 12px;
  pointer-events: none;
  z-index: 9999;
  border-radius: 2px;
}
.cin-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  border: 2px solid;
  opacity: 0;
}

/* ─── 11. Text Scramble ─── */
.cin-scramble .cin-char {
  display: inline-block;
  transition: color 0.1s;
}
.cin-scramble .cin-char.resolved {
  color: inherit;
}
.cin-scramble .cin-char.scrambling {
  color: rgba(251, 86, 80, 0.4);
}
/* Dark section scramble */
.advantages-section .cin-scramble .cin-char.scrambling {
  color: rgba(251, 86, 80, 0.5);
}

/* ─── 12. Typewriter Cursor ─── */
.cin-type-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: #fb5650;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cin-blink 0.6s step-end infinite;
}
@keyframes cin-blink {
  50% { opacity: 0; }
}

/* ─── 13. Odometer Stats ─── */
.cin-stats-section {
  padding: 60px 0;
  background: #0c0e1b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.cin-stat-item {
  padding: 24px 16px;
}
.cin-odometer {
  font-family: 'SF-Pro-Bold', 'SF Pro Display', -apple-system, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fb5650;
  letter-spacing: -0.03em;
  overflow: hidden;
  height: 1.15em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cin-odo-digit {
  display: inline-block;
  overflow: hidden;
  height: 1.15em;
  position: relative;
}
.cin-odo-strip {
  display: flex;
  flex-direction: column;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cin-odo-strip span {
  display: block;
  height: 1.15em;
  line-height: 1.15;
}
.cin-stat-suffix {
  font-family: 'SF-Pro-Bold', 'SF Pro Display', -apple-system, sans-serif;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
  color: #fb5650;
  vertical-align: top;
}
.cin-stat-label {
  font-size: 14px;
  color: #d3d6e0;
  margin-top: 8px;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .cin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ─── 14. Enhanced Hover Effects ─── */

/* CTA Button Glow */
.hero-desktop-btn-primary,
.hero-get-demo-btn,
.final-cta-btn-primary,
.plan-btn-primary {
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}
.hero-desktop-btn-primary:hover,
.hero-get-demo-btn:hover,
.final-cta-btn-primary:hover,
.plan-btn-primary:hover {
  box-shadow: 0 8px 30px rgba(251, 86, 80, 0.3);
}

/* Workflow card hover lift */
.workflow-card-item {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.workflow-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Testimonial card polish */
.testimonial-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* Feature item hover */
.feature-item {
  transition: background 0.2s, transform 0.2s;
  border-radius: 8px;
}
.feature-item:hover {
  transform: translateX(4px);
}

/* Feature box hover */
.feature-box {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-box:hover {
  transform: translateY(-2px);
}

/* FAQ item smooth */
.faq-item {
  transition: background 0.3s, box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* ─── 15. Advantages Tab Glow ─── */
.advantages-tab.active {
  position: relative;
}
.advantages-tab.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fb5650, transparent);
  border-radius: 1px;
}

/* ─── 16. Footer Glow ─── */
.vendor-footer {
  position: relative;
  overflow: hidden;
}
.vendor-footer::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(251, 86, 80, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── 17. Kinetic Marquee Enhancement ─── */
.clients-logo-row {
  will-change: transform;
}

/* ─── 18. Color Shift Section Transitions ─── */
[data-cin-bg] {
  transition: background-color 0.6s ease, color 0.6s ease;
}
[data-cin-bg="dark"] {
  background-color: var(--dark, #0c0e1b);
  color: #fff;
}
[data-cin-bg="light"] {
  background-color: var(--surface, #f7f8f9);
  color: var(--text-main, #111116);
}
[data-cin-bg="white"] {
  background-color: #fff;
  color: var(--text-main, #111116);
}
.benefits-section,
.feature-clusters-section,
.positioning-section,
.testimonials-section,
.pricing-section,
.faq-section,
.final-cta-section {
  transition: opacity 0.3s;
}

/* ─── 19. Sticky Feature Cards ─── */
.cin-sticky-cards-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 24px 72px;
}
.cin-sticky-card {
  position: sticky;
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 32px;
  min-height: 340px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.1s ease;
  will-change: transform;
}
.cin-sticky-card:nth-child(1) { top: 60px;  background: #1a1a1f; color: #eae7e2; z-index: 1; }
.cin-sticky-card:nth-child(2) { top: 80px;  background: #0d2a2e; color: #e0f0f2; z-index: 2; }
.cin-sticky-card:nth-child(3) { top: 100px; background: #2a1510; color: #f2e8e0; z-index: 3; }
.cin-sticky-card:nth-child(4) { top: 120px; background: #1a1a2e; color: #e0e0f2; z-index: 4; }
.cin-sticky-card:nth-child(5) { top: 140px; background: #2e1a2a; color: #f2e0ec; z-index: 5; }
.cin-sticky-card:nth-child(6) { top: 160px; background: #ffffff; color: #111116; border: 1px solid #d9dde5; z-index: 6; }

.cin-sticky-card-num {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  font-weight: 400;
  margin-bottom: 12px;
}
.cin-sticky-card h3 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.2;
}
.cin-sticky-card > p {
  font-size: 15px;
  opacity: 0.7;
  margin: 0 0 24px;
  line-height: 1.5;
}
.cin-sticky-card-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.cin-sticky-card-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 0;
}
.cin-sticky-card-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fb5650;
  flex-shrink: 0;
  margin-top: 6px;
}
.cin-sticky-card-item strong {
  font-weight: 600;
}
.cin-sticky-card-item span {
  opacity: 0.65;
  font-size: 13px;
}
/* Last card (white bg) item dots */
.cin-sticky-card:nth-child(6) .cin-sticky-card-item::before {
  background: #fb5650;
}
@media (max-width: 768px) {
  .cin-sticky-card:nth-child(n) {
    top: 72px;
  }

  .cin-sticky-card {
    padding: 32px 24px;
    min-height: 280px;
    margin-bottom: 24px;
  }

  .cin-sticky-card-items {
    grid-template-columns: 1fr;
  }
}

/* ─── 20. Gradient Stroke on Pricing Heading ─── */
.pricing-section [data-cin-scramble] span,
.pricing-section .cin-gradient-text {
  background: linear-gradient(90deg, #fb5650, #ff8866, #5eadb5, #fb5650);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cin-gradient-flow 6s linear infinite;
}

/* ─── 20. Smooth Page Baseline ─── */
html {
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
