/* ============================================================================
   CODESCRIPTUM LANDING PAGES — Services for Fitness Industry
   Modern dark design · Animations · Glassmorphism · Grid overlays
   Prefix: cslp- (CodeScriptum Landing Page)
   ============================================================================ */

/* ─── VARIABLES ─── */
:root {
  --cslp-accent: #e11d48;
  --cslp-accent-light: #fb7185;
  --cslp-accent-dark: #be123c;
  --cslp-blue: #3b82f6;
  --cslp-violet: #8b5cf6;
  --cslp-emerald: #10b981;
  --cslp-amber: #f59e0b;
  --cslp-cyan: #06b6d4;
  --cslp-dark: #0b0f1a;
  --cslp-dark-2: #111827;
  --cslp-dark-3: #1e293b;
  --cslp-glass: rgba(255,255,255,0.04);
  --cslp-glass-border: rgba(255,255,255,0.08);
  --cslp-text: #f1f5f9;
  --cslp-text-muted: #94a3b8;
  --cslp-radius: 16px;
  --cslp-radius-sm: 10px;
}

/* ─── KEYFRAMES ─── */
@keyframes cslpFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cslpPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(225,29,72,0.4); }
  50%      { opacity: 0.8; box-shadow: 0 0 0 12px rgba(225,29,72,0); }
}
@keyframes cslpFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes cslpGlow {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
@keyframes cslpSlideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes cslpSlideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes cslpScaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes cslpBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
@keyframes cslpCountUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cslpRingDraw {
  from { stroke-dashoffset: 327; }
}
@keyframes cslpGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes cslpMockupFloat {
  0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(0); }
  50%      { transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px); }
}
@keyframes cslpScrollHint {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50%      { opacity: 1; transform: translateY(8px); }
}
@keyframes cslpTimelineGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes cslpFloatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(3deg); }
}
@keyframes cslpFloatMed {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-2deg); }
}
@keyframes cslpFloatFast {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-8px) scale(1.05); }
}
@keyframes cslpDriftX {
  0%, 100% { transform: translateX(0) translateY(0); }
  25%      { transform: translateX(8px) translateY(-6px); }
  75%      { transform: translateX(-6px) translateY(4px); }
}
@keyframes cslpSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes cslpPopIn {
  from { opacity: 0; transform: scale(0.6) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ─── REVEAL SYSTEM ─── */
.cslp-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.cslp-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── GRADIENT TEXT ─── */
.cslp-gradient-text {
  background: linear-gradient(135deg, var(--cslp-accent), var(--cslp-violet), var(--cslp-blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cslpGradientShift 4s ease infinite;
  font-style: normal;
}

/* ─── BADGE ─── */
.cslp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 100px;
  color: var(--cslp-accent-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cslp-badge--glow {
  background: rgba(225, 29, 72, 0.12);
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.1);
}
.cslp-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cslp-accent);
  animation: cslpPulse 2s ease-in-out infinite;
}

/* ─── BUTTONS ─── */
.cslp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.cslp-btn--primary {
  background: linear-gradient(135deg, var(--cslp-accent), var(--cslp-accent-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.3);
}
.cslp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(225, 29, 72, 0.4);
}
.cslp-btn--ghost {
  background: var(--cslp-glass);
  color: var(--cslp-text);
  border: 1px solid var(--cslp-glass-border);
  backdrop-filter: blur(8px);
}
.cslp-btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.cslp-btn--outline {
  background: transparent;
  color: var(--cslp-text);
  border: 1px solid rgba(255,255,255,0.2);
}
.cslp-btn--outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--cslp-accent);
  color: var(--cslp-accent-light);
  transform: translateY(-2px);
}
.cslp-btn--lg {
  padding: 18px 40px;
  font-size: 1.0625rem;
}

/* ─── GRID OVERLAY (shared) ─── */
.cslp-hero__grid-overlay,
.cslp-features__grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

/* ─── SECTIONS ─── */
.cslp-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cslp-section--dark {
  background: var(--cslp-dark);
}
.cslp-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.cslp-section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--cslp-dark);
  margin: 16px 0 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cslp-section__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cslp-accent), var(--cslp-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cslp-section__title--light {
  color: var(--cslp-text);
}
.cslp-section__sub {
  font-size: 1.0625rem;
  color: #64748b;
  margin: 16px 0 0;
  line-height: 1.7;
}
.cslp-section__sub--light {
  color: var(--cslp-text-muted);
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.cslp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.cslp-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #070b14 0%, #0d1321 30%, #101729 60%, #0a0e1a 100%);
}
.cslp-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(225, 29, 72, 0.08), transparent),
    radial-gradient(ellipse 600px 500px at 80% 30%, rgba(99, 102, 241, 0.06), transparent),
    radial-gradient(ellipse 400px 300px at 60% 80%, rgba(59, 130, 246, 0.04), transparent);
}
.cslp-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.cslp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}
.cslp-hero__content {
  animation: cslpFadeUp 0.8s ease-out;
}
.cslp-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 24px 0;
  letter-spacing: -0.03em;
}
.cslp-hero__sub {
  font-size: 1.125rem;
  color: var(--cslp-text-muted);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 520px;
}
.cslp-hero__cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cslp-hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cslp-hero__trust-label {
  font-size: 0.75rem;
  color: var(--cslp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.cslp-hero__trust-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cslp-hero__trust-items span {
  padding: 4px 12px;
  background: var(--cslp-glass);
  border: 1px solid var(--cslp-glass-border);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--cslp-text-muted);
  font-weight: 500;
}
.cslp-hero__visual {
  display: flex;
  justify-content: center;
  animation: cslpFadeUp 1s ease-out 0.3s both;
}
.cslp-hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--cslp-text-muted);
  animation: cslpScrollHint 2s ease infinite;
}

/* ─── Hero Floating Elements ─── */
.cslp-hero__floaters {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.cslp-floater {
  position: absolute;
  opacity: 0;
  animation: cslpPopIn 0.8s ease-out forwards;
}
.cslp-floater--chart {
  animation: cslpPopIn 0.8s 0.4s ease-out forwards, cslpFloatSlow 7s 1.2s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(225,29,72,0.1));
}
.cslp-floater--arrow {
  animation: cslpPopIn 0.8s 0.6s ease-out forwards, cslpFloatMed 6s 1.4s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(16,185,129,0.1));
}
.cslp-floater--code {
  font-family: 'Courier New', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(139,92,246,0.25);
  animation: cslpPopIn 0.8s 0.8s ease-out forwards, cslpDriftX 9s 1.6s ease-in-out infinite;
}
.cslp-floater--ring {
  animation: cslpPopIn 0.8s 1s ease-out forwards, cslpFloatFast 5s 1.8s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(225,29,72,0.08));
}
.cslp-floater--dumbbell {
  animation: cslpPopIn 0.8s 1.2s ease-out forwards, cslpFloatSlow 8s 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(245,158,11,0.08));
}
.cslp-floater--heartbeat {
  animation: cslpPopIn 0.8s 0.5s ease-out forwards, cslpFloatMed 7s 1.3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(225,29,72,0.06));
}

/* ─── Mockup Stats ─── */
.cslp-hero__mockup {
  position: relative;
}
.cslp-mockup-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 4;
  opacity: 0;
}
.cslp-mockup-stat--top {
  top: 20%;
  right: -30px;
  animation: cslpPopIn 0.6s 1.4s ease-out forwards, cslpFloatFast 5s 2s ease-in-out infinite;
}
.cslp-mockup-stat--bottom {
  bottom: 18%;
  left: -25px;
  animation: cslpPopIn 0.6s 1.7s ease-out forwards, cslpFloatMed 6s 2.3s ease-in-out infinite;
}

/* ─── Section Background Icons ─── */
.cslp-section__bg-icon {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  animation: cslpFloatSlow 12s ease-in-out infinite;
}
.cslp-section__bg-icon--right {
  top: 10%;
  right: -60px;
}
.cslp-section__bg-icon--left {
  bottom: 10%;
  left: -60px;
}

/* ─── Section Canvas Backgrounds ─── */
.cslp-section__wave,
.cslp-section__bars-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ─── Browser Mockup ─── */
.cslp-mockup {
  width: 420px;
  background: var(--cslp-dark-3);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 100px rgba(225, 29, 72, 0.05);
  animation: cslpMockupFloat 5s ease-in-out infinite;
}
.cslp-mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cslp-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cslp-mockup__dot--red    { background: #ef4444; }
.cslp-mockup__dot--yellow { background: #f59e0b; }
.cslp-mockup__dot--green  { background: #22c55e; }
.cslp-mockup__url {
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--cslp-text-muted);
  background: rgba(255,255,255,0.05);
  padding: 3px 12px;
  border-radius: 4px;
}
.cslp-mockup__screen {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
}
.cslp-mockup__nav {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  width: 60%;
}
.cslp-mockup__hero-block {
  height: 80px;
  background: linear-gradient(135deg, rgba(225,29,72,0.15), rgba(99,102,241,0.1));
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.cslp-mockup__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.cslp-mockup__card {
  height: 60px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.04);
}
.cslp-mockup__cta-block {
  height: 40px;
  background: linear-gradient(135deg, rgba(225,29,72,0.2), rgba(225,29,72,0.1));
  border-radius: 8px;
  margin-top: auto;
}

/* ══════════════════════════════════════════════
   TYPES — card grid
   ══════════════════════════════════════════════ */
.cslp-types { background: #f8fafc; }
.cslp-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cslp-type-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--cslp-radius);
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cslp-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(225, 29, 72, 0.2);
}
.cslp-type-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cslp-type-card__icon--blue    { background: rgba(59,130,246,0.1); color: var(--cslp-blue); }
.cslp-type-card__icon--rose    { background: rgba(225,29,72,0.1); color: var(--cslp-accent); }
.cslp-type-card__icon--emerald { background: rgba(16,185,129,0.1); color: var(--cslp-emerald); }
.cslp-type-card__icon--violet  { background: rgba(139,92,246,0.1); color: var(--cslp-violet); }
.cslp-type-card__icon--amber   { background: rgba(245,158,11,0.1); color: var(--cslp-amber); }
.cslp-type-card__icon--cyan    { background: rgba(6,182,212,0.1); color: var(--cslp-cyan); }
.cslp-type-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--cslp-dark);
  margin: 0 0 10px;
}
.cslp-type-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════
   FEATURES — numbered list
   ══════════════════════════════════════════════ */
.cslp-features {
  background: var(--cslp-dark);
}
.cslp-features__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cslp-feature {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
}
.cslp-feature:last-child {
  border-bottom: none;
}
.cslp-feature__number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cslp-accent);
  opacity: 0.3;
  line-height: 1;
  min-width: 50px;
  font-variant-numeric: tabular-nums;
}
.cslp-feature__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cslp-text);
  margin: 0 0 8px;
}
.cslp-feature__content p {
  font-size: 0.9375rem;
  color: var(--cslp-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════════
   STATS — animated rings + counters
   ══════════════════════════════════════════════ */
.cslp-stats { background: #f8fafc; }
.cslp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.cslp-stat__chart {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
}
.cslp-stat__ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.cslp-stat__ring-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 6;
}
.cslp-stat__ring-fill {
  fill: none;
  stroke: var(--cslp-accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cslp-stat__value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 900;
  color: var(--cslp-dark);
  font-variant-numeric: tabular-nums;
}
.cslp-stat__plus,
.cslp-stat__percent,
.cslp-stat__unit {
  position: absolute;
  top: 50%;
  left: calc(50% + 22px);
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cslp-accent);
}
.cslp-stat__label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   WHY — advantage cards
   ══════════════════════════════════════════════ */
.cslp-why { background: #fff; }
.cslp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cslp-why-card {
  padding: 32px;
  border: 1px solid #e2e8f0;
  border-radius: var(--cslp-radius);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fff;
}
.cslp-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-color: rgba(225, 29, 72, 0.2);
}
.cslp-why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(225,29,72,0.08), rgba(99,102,241,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cslp-accent);
}
.cslp-why-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--cslp-dark);
  margin: 0 0 8px;
}
.cslp-why-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════
   TECH — technology grid
   ══════════════════════════════════════════════ */
.cslp-tech__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.cslp-tech__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--cslp-glass);
  border: 1px solid var(--cslp-glass-border);
  border-radius: var(--cslp-radius-sm);
  color: var(--cslp-text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cslp-tech__item:hover {
  background: rgba(255,255,255,0.08);
  color: var(--cslp-text);
  border-color: rgba(225,29,72,0.2);
}
.cslp-tech__icon {
  color: var(--cslp-accent);
  font-size: 0.5rem;
}

/* ══════════════════════════════════════════════
   PROCESS — timeline
   ══════════════════════════════════════════════ */
.cslp-process { background: #f8fafc; }
.cslp-process__timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.cslp-process__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cslp-accent), var(--cslp-violet), var(--cslp-blue));
  transform: translateX(-50%);
  transform-origin: top;
}
.cslp-process__step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  padding-right: calc(50% + 40px);
  position: relative;
}
.cslp-process__step--right {
  padding-right: 0;
  padding-left: calc(50% + 40px);
  flex-direction: row-reverse;
  text-align: right;
}
.cslp-process__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cslp-accent), var(--cslp-accent-dark));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(225,29,72,0.3);
  z-index: 2;
}
.cslp-process__card {
  background: #fff;
  padding: 24px;
  border-radius: var(--cslp-radius);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  flex: 1;
}
.cslp-process__card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--cslp-dark);
  margin: 0 0 8px;
}
.cslp-process__card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════
   PRICING — dark cards
   ══════════════════════════════════════════════ */
.cslp-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.cslp-price-card {
  background: var(--cslp-dark-2);
  border: 1px solid var(--cslp-glass-border);
  border-radius: var(--cslp-radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
}
.cslp-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225,29,72,0.2);
}
.cslp-price-card--featured {
  background: linear-gradient(160deg, #1a1030, #1e1040, #12082a);
  border-color: rgba(225,29,72,0.3);
  box-shadow: 0 0 60px rgba(225,29,72,0.08);
  transform: scale(1.04);
}
.cslp-price-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}
.cslp-price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--cslp-accent), var(--cslp-violet));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
}
.cslp-price-card__header h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--cslp-text);
  margin: 0;
}
.cslp-price-card__desc {
  font-size: 0.875rem;
  color: var(--cslp-text-muted);
  margin: 6px 0 0;
}
.cslp-price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cslp-price-card__from {
  font-size: 0.8125rem;
  color: var(--cslp-text-muted);
}
.cslp-price-card__amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cslp-price-card__currency {
  font-size: 0.875rem;
  color: var(--cslp-text-muted);
}
.cslp-price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.cslp-price-card__features li {
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--cslp-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cslp-price-card__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(225,29,72,0.12);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23e11d48' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.cslp-price-card .cslp-btn {
  width: 100%;
  justify-content: center;
}

/* ══════════════════════════════════════════════
   FAQ — accordion
   ══════════════════════════════════════════════ */
.cslp-faq { background: #fff; }
.cslp-faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.cslp-faq__item {
  border-bottom: 1px solid #e2e8f0;
}
.cslp-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cslp-dark);
  transition: color 0.2s;
}
.cslp-faq__question:hover {
  color: var(--cslp-accent);
}
.cslp-faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--cslp-text-muted);
}
.cslp-faq__item--open .cslp-faq__chevron {
  transform: rotate(180deg);
  color: var(--cslp-accent);
}
.cslp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s ease;
  padding: 0;
}
.cslp-faq__item--open .cslp-faq__answer {
  max-height: 300px;
  padding: 0 0 22px;
}
.cslp-faq__answer p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════════
   CONTACT — CTA section
   ══════════════════════════════════════════════ */
.cslp-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cslp-contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.cslp-contact__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cslp-text-muted);
  font-size: 0.9375rem;
}
.cslp-contact__info-item a {
  color: var(--cslp-text);
  text-decoration: none;
  transition: color 0.2s;
}
.cslp-contact__info-item a:hover {
  color: var(--cslp-accent-light);
}
.cslp-contact__info-item svg {
  color: var(--cslp-accent);
  flex-shrink: 0;
}
/* ─── Contact Heading ─── */
.cslp-contact__heading {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--cslp-text);
  margin: 0 0 8px;
}

/* ─── Contact Note Box ─── */
.cslp-contact__note-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 18px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: var(--cslp-radius-sm);
  color: var(--cslp-text-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}
.cslp-contact__note-box svg {
  color: var(--cslp-emerald);
  flex-shrink: 0;
}

/* ─── Form ─── */
.cslp-form {
  background: var(--cslp-glass);
  border: 1px solid var(--cslp-glass-border);
  border-radius: var(--cslp-radius);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
  position: relative;
}
.cslp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cslp-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cslp-form__group--full {
  margin-bottom: 16px;
}
.cslp-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cslp-text-muted);
  letter-spacing: 0.01em;
}
.cslp-form__input {
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--cslp-radius-sm);
  color: var(--cslp-text);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.cslp-form__input::placeholder {
  color: rgba(148,163,184,0.5);
}
.cslp-form__input:focus {
  border-color: rgba(225,29,72,0.4);
  box-shadow: 0 0 0 3px rgba(225,29,72,0.08);
}
.cslp-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}
.cslp-form__select option {
  background: var(--cslp-dark-2);
  color: var(--cslp-text);
}
.cslp-form__textarea {
  resize: vertical;
  min-height: 100px;
}
.cslp-form__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cslp-form__submit {
  min-width: 220px;
}
.cslp-form__submit-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cslp-form__note {
  font-size: 0.8125rem;
  color: var(--cslp-text-muted);
}

/* ─── Spinner ─── */
.cslp-spinner {
  animation: cslpSpin 0.8s linear infinite;
}

/* ─── Form Success ─── */
.cslp-form__success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cslp-dark-2);
  border-radius: var(--cslp-radius);
  text-align: center;
  padding: 40px;
  z-index: 5;
  animation: cslpScaleIn 0.5s ease-out;
}
.cslp-form__success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cslp-text);
  margin: 0;
}
.cslp-form__success p {
  font-size: 1rem;
  color: var(--cslp-text-muted);
  margin: 0;
  max-width: 300px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cslp-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cslp-hero__sub { margin-left: auto; margin-right: auto; }
  .cslp-hero__cta { justify-content: center; }
  .cslp-hero__trust { justify-content: center; }
  .cslp-hero__visual { order: -1; }
  .cslp-mockup { width: 340px; }
  .cslp-types__grid,
  .cslp-why__grid { grid-template-columns: repeat(2, 1fr); }
  .cslp-pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .cslp-price-card--featured { transform: none; }
  .cslp-price-card--featured:hover { transform: translateY(-4px); }
  .cslp-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cslp-tech__grid { grid-template-columns: repeat(3, 1fr); }
  .cslp-contact__inner { grid-template-columns: 1fr; text-align: center; }
  .cslp-contact__info { align-items: center; }
  .cslp-hero__floaters { display: none; }
  .cslp-mockup-stat { display: none; }
  .cslp-section__bg-icon { display: none; }

  .cslp-process__step,
  .cslp-process__step--right {
    padding-left: 60px;
    padding-right: 0;
    flex-direction: row;
    text-align: left;
  }
  .cslp-process__dot {
    left: 0;
    transform: none;
  }
  .cslp-process__line {
    left: 19px;
  }
}

@media (max-width: 640px) {
  .cslp-section { padding: 64px 0; }
  .cslp-section__header { margin-bottom: 40px; }
  .cslp-hero { padding: 100px 0 60px; min-height: auto; }
  .cslp-hero__title { font-size: 1.75rem; }
  .cslp-mockup { width: 280px; }
  .cslp-types__grid,
  .cslp-why__grid { grid-template-columns: 1fr; }
  .cslp-stats__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cslp-tech__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cslp-hero__cta { flex-direction: column; align-items: center; }
  .cslp-btn { width: 100%; justify-content: center; }
  .cslp-form { padding: 28px 20px; }
  .cslp-form__row { grid-template-columns: 1fr; }
  .cslp-form__footer { flex-direction: column; align-items: stretch; text-align: center; }
  .cslp-form__submit { width: 100%; min-width: auto; }
  .cslp-feature { gap: 16px; }
  .cslp-feature__number { font-size: 1.5rem; min-width: 36px; }
}
