/* ============================================================
   ClaimDone — Design Enhancements v2
   Layered on top of main.css for richer visuals
   ============================================================ */

/* ── Keyframe animations ──────────────────────────────────── */
@keyframes cd-float {
  0%, 100% { transform: translateY(0px) translateX(-50%); }
  50%       { transform: translateY(-24px) translateX(-50%); }
}
@keyframes cd-float2 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes cd-pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes cd-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes cd-glow-rotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes cd-fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cd-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes cd-scale-in {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes cd-slide-left {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes cd-slide-right {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes cd-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122,0,223,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(122,0,223,0); }
}
@keyframes cd-aurora {
  0%   { opacity: 0.4; transform: translateX(-50%) scale(1) rotate(0deg); }
  33%  { opacity: 0.6; transform: translateX(-48%) scale(1.1) rotate(2deg); }
  66%  { opacity: 0.3; transform: translateX(-52%) scale(0.95) rotate(-2deg); }
  100% { opacity: 0.4; transform: translateX(-50%) scale(1) rotate(0deg); }
}
@keyframes cd-btn-shine {
  from { left: -100%; }
  to   { left: 120%; }
}

/* ── Scroll-reveal utility classes ──────────────────────────
   JS adds .is-visible once element enters the viewport        */
.cd-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.cd-reveal.is-visible { opacity: 1; transform: none; }
.cd-reveal--delay-1 { transition-delay: 0.1s; }
.cd-reveal--delay-2 { transition-delay: 0.2s; }
.cd-reveal--delay-3 { transition-delay: 0.3s; }
.cd-reveal--delay-4 { transition-delay: 0.4s; }
.cd-reveal--delay-5 { transition-delay: 0.5s; }
.cd-reveal--scale { transform: scale(0.95); }
.cd-reveal--scale.is-visible { transform: scale(1); }
.cd-reveal--left { transform: translateX(-28px); }
.cd-reveal--left.is-visible { transform: none; }
.cd-reveal--right { transform: translateX(28px); }
.cd-reveal--right.is-visible { transform: none; }

/* ── Hero — enhanced ─────────────────────────────────────── */
.cd-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Animated aurora orb */
.cd-hero::before {
  content: '';
  position: absolute;
  top: -280px; left: 50%;
  width: 1000px; height: 1000px;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(122,0,223,0.0),
    rgba(122,0,223,0.18),
    rgba(168,85,247,0.12),
    rgba(192,132,252,0.08),
    rgba(122,0,223,0.0)
  );
  border-radius: 50%;
  pointer-events: none;
  animation: cd-aurora 10s ease-in-out infinite;
}

/* Secondary glow blob */
.cd-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Noise texture overlay */
.cd-hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.5;
}

/* Animated badge */
.cd-hero__badge {
  animation: cd-badge-pulse 2.5s ease-in-out infinite;
  border: 1px solid rgba(122,0,223,0.4);
  background: rgba(122,0,223,0.1);
  color: var(--purple-light);
}

/* Gradient line under heading */
.cd-hero__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  margin: 24px auto 0;
  border-radius: 2px;
}

/* Proof bar enhanced */
.cd-hero__proof {
  background: rgba(26,26,26,0.7);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(122,0,223,0.2);
  box-shadow: 0 0 40px rgba(122,0,223,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}
.cd-hero__proof-item strong {
  background: linear-gradient(135deg, #ffffff 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shimmer on CTA primary button */
.cd-btn--primary {
  position: relative;
  overflow: hidden;
}
.cd-btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.cd-btn--primary:hover::after {
  animation: cd-btn-shine 0.7s ease forwards;
}

/* ── VS DIY — enhanced ───────────────────────────────────── */
.cd-vsdiy {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.cd-vsdiy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(122,0,223,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cd-vsdiy__item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cd-vsdiy__item:hover {
  transform: translateY(-3px);
}
.cd-vsdiy--good {
  background: linear-gradient(145deg, rgba(122,0,223,0.08) 0%, var(--card) 100%);
}
.cd-vsdiy--good:hover {
  box-shadow: 0 16px 48px rgba(122,0,223,0.2);
}
.cd-vsdiy__vs {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
}

/* ── Service cards — glass + gradient border ─────────────── */
.cd-services {
  position: relative;
  overflow: hidden;
}
.cd-services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,0,223,0.5), transparent);
}

.cd-service-card {
  position: relative;
  background: rgba(26,26,26,0.8);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

/* Gradient top border on every card */
.cd-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light), #c084fc);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius) var(--radius) 0 0;
}
.cd-service-card:hover::before { opacity: 1; }

/* Featured card always has top gradient */
.cd-service-card--featured::before { opacity: 1; }

.cd-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(122,0,223,0.25), 0 4px 16px rgba(0,0,0,0.4);
}

.cd-service-card__icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(122,0,223,0.12);
  border-radius: 12px;
  border: 1px solid rgba(122,0,223,0.2);
}

.cd-service-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.cd-service-card:hover .cd-service-card__cta { gap: 10px; }

/* ── How it works — enhanced ─────────────────────────────── */
.cd-how { position: relative; }
.cd-how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(122,0,223,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cd-how__step {
  background: rgba(26,26,26,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.cd-how__step:hover {
  border-color: rgba(122,0,223,0.4);
  box-shadow: 0 8px 40px rgba(122,0,223,0.1);
}

.cd-how__step-num {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(122,0,223,0.2), rgba(168,85,247,0.1));
  border: 1px solid rgba(122,0,223,0.3);
  border-radius: var(--radius);
  font-size: 28px;
  font-weight: 900;
  color: var(--purple-light);
  flex-shrink: 0;
}

.cd-how__connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(122,0,223,0.4), rgba(122,0,223,0.1));
  margin: 0 auto;
  position: relative;
}

.cd-how__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

/* ── Pricing — enhanced ──────────────────────────────────── */
.cd-pricing { position: relative; overflow: hidden; }
.cd-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(122,0,223,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(168,85,247,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cd-pricing-card {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}
.cd-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.cd-pricing-card--featured {
  transform: scale(1.03);
  background: linear-gradient(145deg, rgba(26,26,26,1), rgba(122,0,223,0.12));
  position: relative;
  z-index: 1;
}
.cd-pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }

/* Animated gradient border on featured card */
.cd-pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light), #c084fc, var(--purple));
  background-size: 300% 300%;
  animation: cd-shimmer 3s linear infinite;
  border-radius: calc(var(--radius) + 1px);
  z-index: -1;
}
.cd-pricing-card--featured::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: linear-gradient(145deg, #1a1a1a, rgba(122,0,223,0.12));
  border-radius: calc(var(--radius) - 1px);
  z-index: -1;
}

.cd-pricing-card__price {
  font-size: 52px;
}

.cd-pricing__note {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  background: rgba(122,0,223,0.06);
  border: 1px solid rgba(122,0,223,0.15);
  border-radius: var(--radius);
  padding: 16px 24px;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Trust section — enhanced ────────────────────────────── */
.cd-trust {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cd-trust::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(122,0,223,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cd-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cd-trust__item {
  background: rgba(26,26,26,0.6);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cd-trust__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,0,223,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.cd-trust__item:hover {
  transform: translateY(-4px);
  border-color: rgba(122,0,223,0.3);
  box-shadow: 0 12px 40px rgba(122,0,223,0.1);
}
.cd-trust__item:hover::before { opacity: 1; }

.cd-trust__icon {
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(122,0,223,0.2), rgba(168,85,247,0.1));
  border: 1px solid rgba(122,0,223,0.25);
  border-radius: 12px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.cd-trust__item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.cd-trust__item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA band — enhanced ─────────────────────────────────── */
.cd-cta-band {
  padding: 120px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cd-cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(122,0,223,0.18) 0%, rgba(122,0,223,0.04) 50%, transparent 70%);
  pointer-events: none;
}
.cd-cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 L60 0' stroke='rgba(122,0,223,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}
.cd-cta-band > * { position: relative; z-index: 1; }
.cd-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.cd-cta-band p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cd-cta-band__sub {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.3px;
}

/* Glowing CTA button */
.cd-cta-band .cd-btn--primary {
  padding: 20px 56px;
  font-size: 17px;
  box-shadow: 0 0 0 0 rgba(122,0,223,0);
  transition: all 0.3s ease;
}
.cd-cta-band .cd-btn--primary:hover {
  box-shadow: 0 0 60px rgba(122,0,223,0.5), 0 8px 32px rgba(122,0,223,0.4);
  transform: translateY(-2px) scale(1.02);
}

/* ── Header scrolled state ───────────────────────────────── */
.cd-header--scrolled {
  background: rgba(10,10,10,0.97) !important;
  border-bottom-color: rgba(122,0,223,0.2) !important;
}

/* ── Footer — enhanced ───────────────────────────────────── */
.cd-footer {
  position: relative;
  overflow: hidden;
}
.cd-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,0,223,0.5), transparent);
}

/* ── Disclaimer bar ──────────────────────────────────────── */
.cd-disclaimer-bar {
  background: rgba(15,15,15,0.8);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.cd-disclaimer-bar p {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}

/* ── Service single page — price card sticky ─────────────── */
.cd-svc-price-card {
  background: rgba(26,26,26,0.9);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(122,0,223,0.3);
  box-shadow: 0 0 40px rgba(122,0,223,0.1);
  position: relative;
  overflow: hidden;
}
.cd-svc-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light), #c084fc);
}

/* ── Intake wizard — enhanced ────────────────────────────── */
.cd-intake-step {
  background: rgba(26,26,26,0.8);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ── Mobile — responsive improvements ───────────────────── */
@media (max-width: 768px) {
  .cd-hero { padding: 120px 0 72px; }
  .cd-hero::before { width: 400px; height: 400px; top: -100px; }

  .cd-hero__proof {
    padding: 20px 16px;
    gap: 0;
  }
  .cd-hero__proof-item {
    padding: 0 16px;
  }
  .cd-hero__proof-item strong { font-size: 22px; }
  .cd-hero__proof-divider { height: 32px; }

  .cd-vsdiy__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
  .cd-vsdiy__vs {
    text-align: center;
    padding: 8px 0;
  }

  .cd-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cd-how__step {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 28px 24px;
  }
  .cd-how__step-num {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .cd-pricing__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  .cd-pricing-card--featured {
    transform: scale(1);
    order: -1;
  }
  .cd-pricing-card--featured:hover { transform: translateY(-4px); }

  .cd-trust__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cd-cta-band { padding: 80px 0; }
  .cd-cta-band .cd-btn--primary { padding: 16px 32px; font-size: 16px; width: 100%; justify-content: center; }

  /* Mobile sticky CTA */
  .cd-mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(122,0,223,0.3);
    padding: 12px 20px;
    z-index: 500;
    gap: 12px;
  }
  .cd-mobile-sticky-cta a { flex: 1; justify-content: center; }

  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .cd-hero__heading { letter-spacing: -1px; }
  .cd-hero__badge { font-size: 11px; padding: 6px 14px; }
  .cd-hero__proof { flex-wrap: wrap; }
  .cd-hero__proof-item { min-width: 80px; padding: 10px 12px; }
  .cd-hero__proof-divider:nth-child(4) { display: none; } /* hide last divider on very small */
}

@media (min-width: 768px) and (max-width: 1024px) {
  .cd-services__grid { grid-template-columns: repeat(2, 1fr); }
  .cd-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .cd-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .cd-pricing-card--featured { transform: scale(1); }

  .cd-how__step { padding: 32px; }
}

/* ── Hamburger animation ─────────────────────────────────── */
.cd-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.cd-hamburger.is-open span:nth-child(2) { opacity: 0; }
.cd-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Page-level hero for inner service pages ─────────────── */
.cd-inner-hero--service {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.cd-inner-hero--service::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(122,0,223,0.12) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

/* ── Gradient border utility ─────────────────────────────── */
.cd-gradient-border {
  position: relative;
}
.cd-gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light), #c084fc);
  border-radius: inherit;
  z-index: -1;
}

/* ── Blog archive ────────────────────────────────────────── */
.cd-blog-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.cd-blog-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(122,0,223,0.12) 0%, transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
}
.cd-blog-hero > * { position: relative; z-index: 1; }
.cd-blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 16px 0 20px;
}
.cd-blog-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.cd-blog-archive { padding: 80px 0 60px; }
.cd-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cd-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  position: relative;
}
.cd-blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.cd-blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(122,0,223,0.4);
  box-shadow: 0 16px 48px rgba(122,0,223,0.15);
}
.cd-blog-card:hover::before { opacity: 1; }

.cd-blog-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.cd-blog-card--featured::before { opacity: 1; }
.cd-blog-card--featured .cd-blog-card__inner { padding: 48px; }
.cd-blog-card--featured .cd-blog-card__title {
  font-size: clamp(22px, 3vw, 32px);
}
.cd-blog-card--featured .cd-blog-card__excerpt {
  font-size: 17px;
  max-width: 640px;
}

.cd-blog-card__inner { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.cd-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cd-blog-card__date {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cd-blog-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}
.cd-blog-card__excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.cd-blog-card__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-light);
  margin-top: auto;
  transition: color 0.2s, gap 0.2s;
}
.cd-blog-card:hover .cd-blog-card__cta { color: var(--white); }

.cd-blog-pagination {
  text-align: center;
  margin-top: 48px;
}
.cd-blog-pagination ul {
  display: inline-flex;
  gap: 8px;
  list-style: none;
}
.cd-blog-pagination .page-numbers {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.2s;
}
.cd-blog-pagination .page-numbers:hover,
.cd-blog-pagination .current {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

/* ── Tags ─────────────────────────────────────────────────── */
.cd-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--purple-light);
  background: rgba(122,0,223,0.1);
  border: 1px solid rgba(122,0,223,0.2);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

/* ── Single post ──────────────────────────────────────────── */
.cd-post-hero {
  padding: 140px 0 64px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.cd-post-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(122,0,223,0.1) 0%, transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
}
.cd-post-hero__inner { max-width: 800px; position: relative; z-index: 1; }
.cd-post-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.cd-post-hero__back {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-light);
  transition: color 0.2s;
}
.cd-post-hero__back:hover { color: var(--white); }
.cd-post-hero__date {
  font-size: 13px;
  color: var(--text-dim);
}
.cd-post-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.cd-post-hero__excerpt {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 680px;
}
.cd-post-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* Post layout */
.cd-post-body { padding: 64px 0 80px; }
.cd-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* Article content */
.cd-post-content {
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}
.cd-post-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin: 48px 0 16px;
  line-height: 1.25;
}
.cd-post-content h2:first-child { margin-top: 0; }
.cd-post-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 32px 0 12px;
}
.cd-post-content p { margin-bottom: 20px; }
.cd-post-content p:last-child { margin-bottom: 0; }
.cd-post-content ul, .cd-post-content ol {
  margin: 0 0 20px 0;
  padding-left: 0;
}
.cd-post-content ul li, .cd-post-content ol li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--text);
  line-height: 1.7;
}
.cd-post-content ul li::before {
  content: '';
  position: absolute;
  left: 8px; top: 16px;
  width: 6px; height: 6px;
  background: var(--purple-light);
  border-radius: 50%;
}
.cd-post-content ol { counter-reset: ol-counter; }
.cd-post-content ol li { counter-increment: ol-counter; }
.cd-post-content ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--purple-light);
  font-size: 15px;
}
.cd-post-content strong { color: var(--white); font-weight: 700; }
.cd-post-content em { color: var(--text-muted); font-style: italic; }
.cd-post-content a {
  color: var(--purple-light);
  text-decoration: underline;
  text-decoration-color: rgba(168,85,247,0.4);
  transition: color 0.2s;
}
.cd-post-content a:hover { color: var(--white); }
.cd-post-content blockquote {
  border-left: 3px solid var(--purple);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(122,0,223,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}

/* Sidebar */
.cd-post-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.cd-post-sidebar__cta {
  background: linear-gradient(145deg, rgba(122,0,223,0.15), rgba(26,26,26,0.9));
  border: 1px solid rgba(122,0,223,0.3);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.cd-post-sidebar__cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}
.cd-post-sidebar__cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple-light);
  margin-bottom: 10px;
}
.cd-post-sidebar__cta h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.cd-post-sidebar__cta p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.cd-post-sidebar__cta-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
}

.cd-post-sidebar__services {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.cd-post-sidebar__services h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.cd-post-sidebar__service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  gap: 8px;
  transition: color 0.2s;
}
.cd-post-sidebar__service-link:last-child { border-bottom: none; }
.cd-post-sidebar__service-link:hover { color: var(--white); }
.cd-post-sidebar__service-link strong {
  font-size: 13px;
  color: var(--purple-light);
  white-space: nowrap;
}
.cd-post-sidebar__service-link span { font-size: 16px; }

.cd-post-sidebar__disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  padding: 16px;
  background: rgba(26,26,26,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.cd-post-sidebar__disclaimer strong { color: var(--text-muted); }

/* Related posts */
.cd-post-related { padding: 80px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.cd-post-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cd-post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}
.cd-post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122,0,223,0.4);
  box-shadow: 0 12px 32px rgba(122,0,223,0.12);
}
.cd-post-card__meta {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cd-post-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.cd-post-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.cd-post-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-light);
}

/* Blog mobile */
@media (max-width: 768px) {
  .cd-blog-grid { grid-template-columns: 1fr; }
  .cd-blog-card--featured { flex-direction: column; }
  .cd-blog-card--featured .cd-blog-card__inner { padding: 28px; }

  .cd-post-layout { grid-template-columns: 1fr; gap: 48px; }
  .cd-post-sidebar { position: static; }
  .cd-post-related__grid { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cd-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-blog-card--featured { grid-column: 1 / -1; }
  .cd-post-layout { grid-template-columns: 1fr 280px; gap: 40px; }
  .cd-post-related__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Loading skeleton ────────────────────────────────────── */
.cd-skeleton {
  background: linear-gradient(90deg, var(--card), var(--card-hover), var(--card));
  background-size: 200% 100%;
  animation: cd-shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ── Contract Reviewer — NEW nav pill ─────────────────────
   Prominent highlighted link in main header + mobile drawer.
   Pulsing gradient background + "NEW" badge to grab attention. */
.cd-header__nav .cd-nav-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(122, 0, 223, 0.18), rgba(176, 132, 240, 0.14));
  border: 1px solid rgba(176, 132, 240, 0.4);
  border-radius: 999px;
  color: #e8ddff !important;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  transition: all 0.2s ease;
}
.cd-header__nav .cd-nav-new:hover {
  background: linear-gradient(135deg, rgba(122, 0, 223, 0.35), rgba(176, 132, 240, 0.25));
  border-color: rgba(176, 132, 240, 0.7);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(122, 0, 223, 0.3);
  color: #fff !important;
}
.cd-nav-new-badge {
  background: linear-gradient(135deg, #7a00df, #b084f0);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  line-height: 1;
  animation: cd-new-pulse 2s ease-in-out infinite;
}
@keyframes cd-new-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176, 132, 240, 0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(176, 132, 240, 0); }
}

/* Mobile drawer variant */
.cd-drawer__nav .cd-drawer__nav-new {
  background: linear-gradient(135deg, rgba(122, 0, 223, 0.15), rgba(176, 132, 240, 0.08));
  border-left: 3px solid #b084f0 !important;
  position: relative;
}
.cd-drawer__new-badge {
  display: inline-block;
  background: linear-gradient(135deg, #7a00df, #b084f0);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 8px;
}

/* ══════════════════════════════════════════════════════════
   Launch promo banner (sitewide, dismissible, countdown)
   ══════════════════════════════════════════════════════════ */
.cd-promo-banner {
  background: linear-gradient(90deg, #1a0a2a 0%, #2a0a4a 50%, #1a0a2a 100%);
  border-bottom: 1px solid rgba(176, 132, 240, 0.3);
  color: #e8ddff;
  font-size: 14px;
  position: relative;
  z-index: 1001;
}
.cd-promo-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.cd-promo-banner__label { font-weight: 700; color: #b084f0; }
.cd-promo-banner__text code {
  background: rgba(176, 132, 240, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.cd-promo-banner__countdown {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.cd-promo-banner__cta {
  background: #fff;
  color: #1a0a2a !important;
  padding: 6px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: transform 0.2s;
}
.cd-promo-banner__cta:hover { transform: translateY(-1px); }
.cd-promo-banner__close {
  background: transparent;
  border: 0;
  color: #b084f0;
  font-size: 24px;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
}
.cd-promo-banner__close:hover { color: #fff; }
@media (max-width: 720px) {
  .cd-promo-banner__inner { gap: 10px; padding: 8px 12px; font-size: 12px; }
  .cd-promo-banner__countdown { display: none; }
}

/* ══════════════════════════════════════════════════════════
   Contract Reviewer dedicated hero on the homepage
   ══════════════════════════════════════════════════════════ */
.cd-cr-hero {
  padding: 60px 0 80px;
  background: radial-gradient(ellipse at top, rgba(122, 0, 223, 0.15), transparent 60%), #0a0a0f;
  border-top: 1px solid rgba(176, 132, 240, 0.15);
  border-bottom: 1px solid rgba(176, 132, 240, 0.15);
}
.cd-cr-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.cd-cr-hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(122, 0, 223, 0.25), rgba(176, 132, 240, 0.15));
  border: 1px solid rgba(176, 132, 240, 0.4);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #e8ddff;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.cd-cr-hero__headline {
  font-size: 52px;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
  font-weight: 800;
}
.cd-cr-hero__sub {
  font-size: 17px;
  line-height: 1.55;
  color: #c4c4cc;
  margin-bottom: 28px;
  max-width: 560px;
}
.cd-cr-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cd-cr-hero__meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #a1a1aa;
}
/* Hero card — designed as a PDF/document mockup, not a terminal screenshot.
   White paper, soft drop shadow, severity-coloured stat tiles, and
   muted divider rows so it reads as "the actual report you'll receive". */
.cd-cr-hero__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -15px rgba(15, 23, 42, 0.18),
    0 8px 20px -8px rgba(15, 23, 42, 0.10),
    0 0 0 1px rgba(168, 85, 247, 0.06);
}
.cd-cr-hero__card-link:hover .cd-cr-hero__card {
  box-shadow:
    0 36px 72px -15px rgba(15, 23, 42, 0.22),
    0 10px 24px -8px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(168, 85, 247, 0.18);
  transform: translateY(-2px);
}
.cd-cr-hero__card { transition: box-shadow .25s ease, transform .25s ease; }

.cd-cr-hero__card-head {
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f7 100%);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.cd-cr-hero__card-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: #f3e8ff;
  color: #7c3aed;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid #e9d5ff;
  flex-shrink: 0;
}
.cd-cr-hero__card-title {
  flex: 1;
  font-size: 13.5px;
  color: #18181b;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.1px;
}
.cd-cr-hero__card-pages {
  font-size: 11px;
  color: #6b7280;
  font-weight: 600;
  flex-shrink: 0;
}

.cd-cr-hero__card-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px 20px 18px;
  background: #ffffff;
}
.cd-cr-hero__stat {
  background: #f9fafb;
  border-radius: 12px;
  padding: 18px 10px;
  text-align: center;
  border: 1px solid #e5e7eb;
}
.cd-cr-hero__stat strong {
  display: block;
  font-size: 32px;
  color: #18181b;
  font-weight: 800;
  line-height: 1;
}
.cd-cr-hero__stat small {
  display: block;
  margin-top: 8px;
  font-size: 10.5px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
}
.cd-cr-hero__stat--good {
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.cd-cr-hero__stat--good strong { color: #047857; }
.cd-cr-hero__stat--fair {
  background: #f9fafb;
  border-color: #e5e7eb;
}
.cd-cr-hero__stat--fair strong { color: #4b5563; }
.cd-cr-hero__stat--warn {
  background: #fffbeb;
  border-color: #fcd34d;
}
.cd-cr-hero__stat--warn strong { color: #d97706; }

.cd-cr-hero__card-items-label {
  padding: 4px 20px 8px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #6b7280;
  background: #ffffff;
}
.cd-cr-hero__card-items {
  list-style: none;
  margin: 0;
  padding: 0 20px 18px;
  background: #ffffff;
}
.cd-cr-hero__card-items li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid #f3f4f6;
  font-size: 13.5px;
  color: #18181b;
  line-height: 1.45;
  align-items: flex-start;
}
.cd-cr-hero__card-items li:first-child { border-top: 1px solid #e5e7eb; }
.cd-cr-hero__card-items li span {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fcd34d;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
  font-family: -apple-system, system-ui, sans-serif;
}
.cd-cr-hero__card-footer {
  padding: 14px 20px 16px;
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #fafafa, #f4f4f7);
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: #7c3aed;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .cd-cr-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .cd-cr-hero__headline { font-size: 36px; }
}

/* ══════════════════════════════════════════════════════════
   Contract Reviewer trust signals (service page)
   ══════════════════════════════════════════════════════════ */
.cd-cr-trust {
  padding: 40px 0 20px;
}
.cd-cr-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.cd-cr-trust__item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.cd-cr-trust__icon { font-size: 28px; margin-bottom: 8px; }
.cd-cr-trust__label { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.cd-cr-trust__value { font-size: 26px; color: #18181b; font-weight: 800; margin: 4px 0; }
.cd-cr-trust__sub { font-size: 12px; color: #6b7280; }

.cd-cr-sample {
  background: linear-gradient(135deg, #f5f3ff, #ecfdf5);
  border: 1px solid #ddd6fe;
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}
.cd-cr-sample__text { flex: 1; }
.cd-cr-sample__text h3 { color: #18181b; font-size: 22px; margin: 0 0 6px; }
.cd-cr-sample__text p { color: #4b5563; font-size: 14px; margin: 0; line-height: 1.5; }

.cd-cr-guarantee {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}
.cd-cr-guarantee__badge {
  font-size: 32px;
  flex-shrink: 0;
  color: #047857;
}
.cd-cr-guarantee__text {
  color: #065f46;
  font-size: 14px;
  line-height: 1.55;
}
.cd-cr-guarantee__text strong { color: #047857; }

.cd-cr-disclaimer {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}
.cd-cr-disclaimer strong { color: #374151; }

@media (max-width: 900px) {
  .cd-cr-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .cd-cr-sample { flex-direction: column; text-align: center; align-items: stretch; }
}

/* ══════════════════════════════════════════════════════════
   Exit-intent modal
   ══════════════════════════════════════════════════════════ */
.cd-exit-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100000;
}
.cd-exit-modal.is-visible { display: flex; align-items: center; justify-content: center; }
.cd-exit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.cd-exit-modal__card {
  position: relative;
  background: linear-gradient(135deg, #1a0a2a, #0f0a1f);
  border: 1px solid rgba(176, 132, 240, 0.3);
  border-radius: 16px;
  padding: 44px 40px 36px;
  max-width: 500px;
  width: calc(100% - 40px);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  animation: cd-exit-pop 0.3s ease-out;
}
@keyframes cd-exit-pop {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cd-exit-modal__close {
  position: absolute;
  top: 12px; right: 16px;
  background: transparent;
  border: 0;
  color: #888;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
.cd-exit-modal__close:hover { color: #fff; }
.cd-exit-modal__icon { font-size: 44px; margin-bottom: 12px; }
.cd-exit-modal__card h2 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 10px;
  font-weight: 800;
}
.cd-exit-modal__card p {
  color: #c4c4cc;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.cd-exit-modal__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.cd-exit-modal__form input[type=email] {
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
}
.cd-exit-modal__form input[type=email]:focus {
  outline: none;
  border-color: #7a00df;
}
.cd-exit-modal__footnote {
  color: #888;
  font-size: 12px;
  margin: 0;
}
.cd-exit-modal__footnote a { color: #b084f0; }
.cd-exit-modal__success {
  display: none;
  background: #0f1f14;
  border: 1px solid #22c55e;
  border-radius: 10px;
  padding: 16px;
  color: #22c55e;
  font-weight: 600;
  font-size: 14px;
}

/* ══════════════════════════════════════════════════════════
   E-E-A-T "Reviewed by" author block on service pages.
   Visible to humans, machine-readable as Article + Person schema
   via itemprop attributes. Drives Google YMYL trust signal + AI
   answer-engine attribution.
   ══════════════════════════════════════════════════════════ */
.cd-svc-author {
  padding: 40px 0 50px;
  background: #fafafa;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.cd-svc-author__card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: start;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px 28px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.cd-svc-author__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a00df, #a855f7);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.cd-svc-author__body { min-width: 0; }
.cd-svc-author__label {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 4px;
}
.cd-svc-author__body strong {
  display: block;
  font-size: 18px;
  color: #18181b;
  margin-bottom: 2px;
}
.cd-svc-author__body > span {
  display: block;
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 8px;
}
.cd-svc-author__body p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #374151;
  margin: 0 0 10px;
}
.cd-svc-author__link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #7c3aed;
  text-decoration: none;
}
.cd-svc-author__link:hover { color: #6d28d9; }
.cd-svc-author__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11.5px;
  color: #6b7280;
  text-align: right;
  min-width: 180px;
}
.cd-svc-author__reviewed { font-weight: 600; color: #374151; }
.cd-svc-author__disclaimer { font-style: italic; line-height: 1.35; }
@media (max-width: 720px) {
  .cd-svc-author__card { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .cd-svc-author__avatar { width: 52px; height: 52px; font-size: 18px; }
  .cd-svc-author__meta { text-align: left; min-width: 0; }
}

/* ══════════════════════════════════════════════════════════
   Sample report page
   ══════════════════════════════════════════════════════════ */
.cd-sample-page {
  background: #f9fafb;
  min-height: 100vh;
  padding: 60px 0;
}
.cd-sample-page .cd-container { max-width: 860px; }
.cd-sample-page__preamble {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.cd-sample-page__preamble h1 {
  color: #18181b;
  font-size: 28px;
  margin: 0 0 10px;
}
.cd-sample-page__preamble p {
  color: #4b5563;
  margin: 0 0 18px;
}
.cd-sample-report {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 60px 70px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.18), 0 8px 20px -8px rgba(15, 23, 42, 0.08);
  color: #1a1a1a;
}
.cd-sample-report h1, .cd-sample-report h2, .cd-sample-report h3, .cd-sample-report h4 {
  color: #1a1a1a;
  font-family: Georgia, serif;
}
.cd-sample-report__header {
  text-align: center;
  border-bottom: 3px solid #7a00df;
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.cd-sample-report__brand {
  color: #7a00df;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.cd-sample-report__brand-sub {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 10px;
  color: #888;
  margin-top: 4px;
}
.cd-sample-report h1 { font-size: 36px; margin: 32px 0 8px; line-height: 1.2; }
.cd-sample-report__subtitle { font-size: 16px; color: #7a00df; margin-bottom: 32px; }
.cd-sample-report__meta {
  background: #f6f0ff;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 13px;
  color: #333;
  margin: 24px 0;
}
.cd-sample-report__meta p { margin: 4px 0; }
.cd-sample-report__summary {
  background: #f6f0ff;
  border-left: 4px solid #7a00df;
  padding: 20px 24px;
  border-radius: 8px;
  margin: 24px 0;
}
.cd-sample-report__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
}
.cd-sample-report__stat {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.cd-sample-report__stat strong { display: block; font-size: 42px; font-weight: 800; line-height: 1; }
.cd-sample-report__stat small { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-top: 6px; }
.cd-sample-report__stat--good { background: #f0f9f1; }
.cd-sample-report__stat--good strong { color: #22c55e; }
.cd-sample-report__stat--fair { background: #f0f2f9; }
.cd-sample-report__stat--fair strong { color: #3b82f6; }
.cd-sample-report__stat--watch { background: #fdf4ea; }
.cd-sample-report__stat--watch strong { color: #f59e0b; }
.cd-sample-report h2 {
  font-size: 22px;
  margin-top: 36px;
  padding-left: 12px;
  border-left: 4px solid #7a00df;
}
.cd-sample-report__card {
  border: 1px solid #eee;
  border-left: 4px solid #eee;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 10px 0;
}
.cd-sample-report__card strong { display: block; font-size: 14px; color: #1a1a1a; margin-bottom: 4px; }
.cd-sample-report__card span { font-size: 13px; color: #555; line-height: 1.5; }
.cd-sample-report__card--good { border-left-color: #22c55e; background: #fafffb; }
.cd-sample-report__card--fair { border-left-color: #3b82f6; background: #fafbff; }
.cd-sample-report__card--watch { border-left-color: #f59e0b; background: #fffbf4; }
.cd-sample-report__card--fee { border-left-color: #ef4444; background: #fff8f8; }
.cd-sample-report ol { padding-left: 22px; color: #333; }
.cd-sample-report ol li { margin: 8px 0; }
.cd-sample-report__nextstep {
  background: #f0f9f1;
  border-left: 4px solid #22c55e;
  padding: 12px 16px;
  border-radius: 6px;
  margin: 8px 0;
  color: #1a3a24;
  font-size: 14px;
}
.cd-sample-report__disclaimer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 11px;
  color: #888;
  text-align: center;
  line-height: 1.6;
}
.cd-sample-page__cta {
  text-align: center;
  margin-top: 44px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(122, 0, 223, 0.15), rgba(176, 132, 240, 0.05));
  border-radius: 14px;
  border: 1px solid rgba(176, 132, 240, 0.3);
}
.cd-sample-page__cta h3 { color: #fff; font-size: 24px; margin: 0 0 10px; }
.cd-sample-page__cta p { color: #c4c4cc; margin: 0 0 20px; }

@media (max-width: 720px) {
  .cd-sample-report { padding: 32px 24px; }
  .cd-sample-report h1 { font-size: 26px; }
  .cd-sample-report__stats { grid-template-columns: 1fr; gap: 10px; }
}
