/* ============================================================
   Credify Elementor Widgets v2.0 — Full Design System
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --cdfw-brand900: #0a3d2b;
  --cdfw-brand800: #0a3d2b;
  --cdfw-brand700: #0f5540;
  --cdfw-brand600: #1a8a66;
  --cdfw-brand500: #22a87e;
  --cdfw-brand400: #3dbd94;
  --cdfw-brand200: #a8e6cf;
  --cdfw-brand100: #d4f4e8;
  --cdfw-brand50:  #edfaf4;
  --cdfw-ink:      #0d1f18;
  --cdfw-ink2:     #2a4038;
  --cdfw-ink3:     #527060;
  --cdfw-ink4:     #8aaa9a;
  --cdfw-smoke:    #f4f7f5;
  --cdfw-border:   #dde8e3;
  --cdfw-red:      #c0392b;
  --cdfw-amber:    #fbbf24;
  --cdfw-serif:    'Instrument Serif', Georgia, serif;
  --cdfw-sans:     'Sora', system-ui, sans-serif;
  --cdfw-t:        0.18s ease;
}

/* ══════════════════════════════════════════
   MARQUEE TICKER
══════════════════════════════════════════ */
.cdfw-trust-ticker {
  background: var(--cdfw-brand800);
  color: var(--cdfw-brand100);
  padding: 11px 0;
  overflow: hidden;
  position: relative;
}
.cdfw-trust-ticker.cdfw-fade-edges {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}
.cdfw-ticker-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: cdfw-ticker 68s linear infinite;
  will-change: transform;
}
.cdfw-trust-ticker.cdfw-pause-on-hover:hover .cdfw-ticker-track {
  animation-play-state: paused;
}
.cdfw-ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
  font-family: var(--cdfw-sans);
}
.cdfw-ticker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cdfw-brand400);
  flex-shrink: 0;
}
@keyframes cdfw-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   DASHBOARD CARD
══════════════════════════════════════════ */
.cdfw-dash-outer {
  background: var(--cdfw-brand800);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.cdfw-dash-wrap {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
  animation: cdfw-fadeUp 0.6s 0.2s ease both;
}
.cdfw-dash-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0,0,0,0.45);
}
.cdfw-dash-topbar {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.04);
}
.cdfw-dash-topbar-title { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85); font-family: var(--cdfw-sans); }
.cdfw-live-badge {
  display: flex; align-items: center; gap: 5px;
  background: rgba(34,168,126,0.18);
  color: var(--cdfw-brand400);
  font-size: 10.5px; font-weight: 600;
  padding: 3px 9px; border-radius: 20px;
  font-family: var(--cdfw-sans);
}
.cdfw-live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cdfw-brand400);
  flex-shrink: 0;
  animation: cdfw-pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(61,189,148,0.25);
}
.cdfw-dash-metrics {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
}
.cdfw-dm { background: rgba(15,30,23,0.6); padding: 14px 12px; }
.cdfw-dm-val { font-size: 20px; font-weight: 700; color: white; line-height: 1; margin-bottom: 3px; font-family: var(--cdfw-sans); }
.cdfw-dm-lbl { font-size: 10px; color: rgba(255,255,255,0.38); font-family: var(--cdfw-sans); }
.cdfw-dm-delta { font-size: 10px; margin-top: 2px; color: var(--cdfw-brand400); font-family: var(--cdfw-sans); }
.cdfw-dash-body { padding: 14px 18px; background: rgba(10,20,16,0.5); }
.cdfw-dash-section-lbl {
  font-size: 9.5px; font-weight: 600; color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 9px;
  font-family: var(--cdfw-sans);
}
.cdfw-prov-row { display: flex; align-items: center; gap: 9px; padding: 4px 0; }
.cdfw-prov-name { font-size: 10.5px; color: rgba(255,255,255,0.45); width: 52px; flex-shrink: 0; font-family: var(--cdfw-sans); }
.cdfw-prov-bar-track { flex: 1; height: 3px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }
.cdfw-prov-bar-fill { height: 100%; background: var(--cdfw-brand500); border-radius: 2px; width: 0; transition: width 1.4s cubic-bezier(0.22,1,0.36,1); }
.cdfw-prov-bar-fill.cdfw-loaded { width: var(--pfill, 0%); }
.elementor-editor-active .cdfw-prov-bar-fill { width: var(--pfill, 70%) !important; }
.cdfw-prov-pct { font-size: 10.5px; font-weight: 600; color: var(--cdfw-brand400); width: 28px; text-align: right; flex-shrink: 0; font-family: var(--cdfw-sans); }
.cdfw-cap-row { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.cdfw-cap-bar-track { height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.cdfw-cap-bar-fill { height: 100%; background: rgba(251,191,36,0.55); border-radius: 3px; width: 0; transition: width 1.6s cubic-bezier(0.22,1,0.36,1); }
.cdfw-cap-bar-fill.cdfw-loaded { width: var(--cfill, 0%); }
.elementor-editor-active .cdfw-cap-bar-fill { width: var(--cfill, 31%) !important; }
.cdfw-cap-label { font-size: 10.5px; color: rgba(255,255,255,0.36); line-height: 1.5; font-family: var(--cdfw-sans); }
.cdfw-act-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.cdfw-act-row:last-child { border-bottom: none; }
.cdfw-act-icon { width: 28px; height: 28px; border-radius: 7px; background: rgba(34,168,126,0.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cdfw-act-main { flex: 1; min-width: 0; }
.cdfw-act-title { font-size: 11.5px; color: rgba(255,255,255,0.82); font-weight: 500; line-height: 1.3; font-family: var(--cdfw-sans); }
.cdfw-act-sub { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 1px; font-family: var(--cdfw-sans); }
.cdfw-act-amount { font-size: 12px; font-weight: 700; color: var(--cdfw-brand400); white-space: nowrap; flex-shrink: 0; font-family: var(--cdfw-sans); }

/* ══════════════════════════════════════════
   SECTION HEADING
══════════════════════════════════════════ */
.cdfw-section-heading { }
.cdfw-section-tag {
  display: inline-block;
  background: var(--cdfw-brand50);
  color: var(--cdfw-brand700);
  border: 1px solid var(--cdfw-brand100);
  padding: 4px 13px; border-radius: 100px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--cdfw-sans);
}
.cdfw-section-tag.cdfw-tag-dark {
  background: rgba(61,189,148,0.15);
  color: var(--cdfw-brand400);
  border-color: rgba(61,189,148,0.25);
}
.cdfw-section-tag.cdfw-tag-white {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: transparent;
}
.cdfw-section-h2 {
  font-family: var(--cdfw-serif);
  font-size: 40px; font-weight: 400; line-height: 1.12;
  color: var(--cdfw-ink); margin-bottom: 10px;
}
.cdfw-section-h2.cdfw-h2-white { color: white; }
.cdfw-section-h2 em { font-style: italic; color: var(--cdfw-brand600); }
.cdfw-section-h2.cdfw-h2-white em { color: var(--cdfw-brand400); }
.cdfw-section-sub {
  font-size: 15px; color: var(--cdfw-ink3);
  line-height: 1.65; max-width: 560px;
  margin-bottom: 40px;
  font-family: var(--cdfw-sans);
}
.cdfw-section-sub.cdfw-sub-white { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════
   EYEBROW BADGE
══════════════════════════════════════════ */
.cdfw-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cdfw-brand50);
  border: 1px solid var(--cdfw-brand100);
  color: var(--cdfw-brand700);
  padding: 5px 13px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 22px; width: fit-content;
  font-family: var(--cdfw-sans);
}
.cdfw-eyebrow-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cdfw-brand500);
  animation: cdfw-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   BUTTON
══════════════════════════════════════════ */
.cdfw-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--cdfw-sans);
  font-weight: 600; font-size: 14px;
  border-radius: 9px; padding: 13px 24px;
  text-decoration: none; cursor: pointer;
  transition: background var(--cdfw-t), transform var(--cdfw-t), border-color var(--cdfw-t), box-shadow var(--cdfw-t);
  border: none; line-height: 1;
}
.cdfw-btn-primary {
  background: var(--cdfw-brand600); color: white;
  box-shadow: 0 2px 12px rgba(26,138,102,0.25);
}
.cdfw-btn-primary:hover { background: var(--cdfw-brand700); transform: translateY(-1px); color: white; }
.cdfw-btn-outline {
  background: white; color: var(--cdfw-ink2);
  border: 1.5px solid var(--cdfw-border); font-weight: 500;
}
.cdfw-btn-outline:hover { border-color: var(--cdfw-ink4); background: var(--cdfw-smoke); color: var(--cdfw-ink2); }
.cdfw-btn-white {
  background: white; color: var(--cdfw-brand700); font-weight: 700;
}
.cdfw-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); color: var(--cdfw-brand700); }
.cdfw-btn-ghost {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.3); font-weight: 500;
}
.cdfw-btn-ghost:hover { border-color: rgba(255,255,255,0.75); color: white; }
.cdfw-btn-dark {
  background: var(--cdfw-ink); color: white;
}
.cdfw-btn-dark:hover { background: var(--cdfw-ink2); transform: translateY(-1px); color: white; }
/* Size variants */
.cdfw-btn-sm { font-size: 12px; padding: 8px 16px; }
.cdfw-btn-lg { font-size: 16px; padding: 16px 32px; border-radius: 11px; }

/* ══════════════════════════════════════════
   EHR BAR
══════════════════════════════════════════ */
.cdfw-ehr-bar {
  padding: 18px 48px;
  border-bottom: 1px solid #eaf0ec;
  display: flex; align-items: center; gap: 16px;
  background: white; flex-wrap: wrap;
}
.cdfw-ehr-lbl {
  font-size: 10.5px; font-weight: 600; color: var(--cdfw-ink4);
  text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
  font-family: var(--cdfw-sans);
}
.cdfw-ehr-logos { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cdfw-ehr-pill {
  background: var(--cdfw-smoke); border-radius: 6px;
  padding: 4px 12px; font-size: 11.5px; font-weight: 500;
  color: var(--cdfw-ink3); border: 1px solid var(--cdfw-border);
  font-family: var(--cdfw-sans);
  transition: background var(--cdfw-t), border-color var(--cdfw-t);
}
.cdfw-ehr-pill:hover { background: var(--cdfw-brand50); border-color: var(--cdfw-brand200); }

/* ══════════════════════════════════════════
   GAIN CARDS
══════════════════════════════════════════ */
.cdfw-gains-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 2px; background: var(--cdfw-border);
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--cdfw-border);
}
.cdfw-gain-card {
  background: white; padding: 28px 20px;
  transition: background var(--cdfw-t), transform var(--cdfw-t);
  cursor: default;
}
.cdfw-gain-card:hover { background: var(--cdfw-brand50); transform: translateY(-2px); }
.cdfw-gain-num {
  font-size: 26px; font-weight: 700; color: var(--cdfw-brand600);
  margin-bottom: 10px;
  font-family: var(--cdfw-serif); font-style: italic;
}
.cdfw-gain-title { font-size: 13px; font-weight: 600; color: var(--cdfw-ink); line-height: 1.4; font-family: var(--cdfw-sans); }

/* ══════════════════════════════════════════
   FEATURE GRID (RCM style)
══════════════════════════════════════════ */
.cdfw-feature-grid-wrap {
  display: grid; grid-template-columns: 5fr 7fr; min-height: 480px;
}
.cdfw-feature-left {
  background: var(--cdfw-brand800);
  padding: 64px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.cdfw-feature-left::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 20% 80%, rgba(61,189,148,0.15) 0%, transparent 60%);
}
.cdfw-feature-left-content { position: relative; z-index: 1; }
.cdfw-feature-left-bottom  { position: relative; z-index: 1; }
.cdfw-feature-h2 {
  font-family: var(--cdfw-serif); font-size: 34px; font-weight: 400;
  color: white; line-height: 1.15; margin-bottom: 14px;
}
.cdfw-feature-sub { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 32px; font-family: var(--cdfw-sans); }
.cdfw-feature-price-box {
  background: rgba(61,189,148,0.08);
  border: 1px solid rgba(61,189,148,0.18);
  border-radius: 12px; padding: 22px 24px; margin-bottom: 20px;
}
.cdfw-feature-price-val {
  font-family: var(--cdfw-serif); font-size: 36px;
  color: var(--cdfw-brand400); line-height: 1; margin-bottom: 7px;
}
.cdfw-feature-price-lbl { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.55; font-family: var(--cdfw-sans); }
.cdfw-feature-badge {
  display: inline-block;
  background: rgba(61,189,148,0.18); color: var(--cdfw-brand400);
  font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 16px;
  font-family: var(--cdfw-sans);
}
.cdfw-feature-right {
  background: white;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background-color: var(--cdfw-border); align-content: start;
}
.cdfw-rcm-card {
  background: white; padding: 30px 26px;
  transition: background var(--cdfw-t), transform var(--cdfw-t);
  cursor: default;
}
.cdfw-rcm-card:hover { background: var(--cdfw-brand50); }
.cdfw-rcm-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--cdfw-brand50); border: 1px solid var(--cdfw-brand100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background var(--cdfw-t), border-color var(--cdfw-t);
}
.cdfw-rcm-card:hover .cdfw-rcm-icon { background: var(--cdfw-brand100); border-color: var(--cdfw-brand200); }
.cdfw-rcm-card-title { font-size: 15px; font-weight: 700; color: var(--cdfw-ink); margin-bottom: 8px; font-family: var(--cdfw-sans); }
.cdfw-rcm-card-desc { font-size: 13px; color: var(--cdfw-ink3); line-height: 1.65; font-family: var(--cdfw-sans); }

/* ══════════════════════════════════════════
   REVENUE LEAK
══════════════════════════════════════════ */
.cdfw-leak-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.cdfw-leak-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--cdfw-red); margin-bottom: 16px;
  font-family: var(--cdfw-sans);
}
.cdfw-leak-h2 {
  font-family: var(--cdfw-serif); font-size: 38px; font-weight: 400;
  color: var(--cdfw-ink); line-height: 1.15; margin-bottom: 16px;
}
.cdfw-leak-body { font-size: 14.5px; color: var(--cdfw-ink3); line-height: 1.7; font-family: var(--cdfw-sans); }
.cdfw-leak-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.cdfw-leak-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid rgba(26,138,102,0.12);
  font-size: 14px; color: var(--cdfw-ink2); font-family: var(--cdfw-sans);
  transition: color var(--cdfw-t), padding-left var(--cdfw-t);
}
.cdfw-leak-item:last-child { border-bottom: none; }
.cdfw-leak-item:hover { color: var(--cdfw-ink); padding-left: 6px; }
.cdfw-leak-item-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cdfw-brand600); flex-shrink: 0; }

/* ══════════════════════════════════════════
   PROOF STATS
══════════════════════════════════════════ */
.cdfw-proof-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: rgba(255,255,255,0.06);
  border-radius: 12px; overflow: hidden; margin-bottom: 0;
}
.cdfw-proof-stat {
  background: rgba(255,255,255,0.04); padding: 32px 20px; text-align: center;
  transition: background var(--cdfw-t);
}
.cdfw-proof-stat:hover { background: rgba(255,255,255,0.08); }
.cdfw-proof-num {
  font-family: var(--cdfw-serif); font-size: 44px;
  color: var(--cdfw-brand400); line-height: 1; margin-bottom: 8px;
}
.cdfw-proof-desc { font-size: 12.5px; color: rgba(255,255,255,0.4); line-height: 1.5; font-family: var(--cdfw-sans); }

/* ── Trust Scores ── */
.cdfw-trust-scores-wrap { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.cdfw-trust-score { display: flex; align-items: center; gap: 16px; }
.cdfw-trust-score-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cdfw-trust-score-icon-tp { background: #00b67a; }
.cdfw-trust-score-icon-g  { background: white; border: 1px solid rgba(0,0,0,0.08); }
.cdfw-trust-score-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 3px;
  font-family: var(--cdfw-sans);
}
.cdfw-trust-score-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 4px; font-family: var(--cdfw-sans); }
.cdfw-trust-stars { display: flex; align-items: center; gap: 3px; }
.cdfw-trust-star { width: 16px; height: 16px; color: #f59e0b; }
.cdfw-trust-star svg { width: 16px; height: 16px; fill: #f59e0b; }
.cdfw-trust-score-div { width: 1px; height: 48px; background: rgba(255,255,255,0.08); }

/* ══════════════════════════════════════════
   TESTIMONIAL CARD
══════════════════════════════════════════ */
.cdfw-proof-t {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 22px;
  transition: background var(--cdfw-t), border-color var(--cdfw-t), transform var(--cdfw-t);
}
.cdfw-proof-t:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}
.cdfw-proof-t-q {
  font-size: 13.5px; color: rgba(255,255,255,0.72);
  line-height: 1.65; font-style: italic; margin-bottom: 16px;
  font-family: var(--cdfw-sans);
}
.cdfw-proof-t-author { display: flex; align-items: center; gap: 10px; }
.cdfw-proof-t-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(34,168,126,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 700; color: var(--cdfw-brand400);
  flex-shrink: 0; font-family: var(--cdfw-sans);
}
.cdfw-proof-t-name { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.82); font-family: var(--cdfw-sans); }
.cdfw-proof-t-role { font-size: 10.5px; color: rgba(255,255,255,0.32); margin-top: 1px; font-family: var(--cdfw-sans); }

/* ── Light variant testimonial ── */
.cdfw-proof-t-light {
  background: white;
  border: 1px solid var(--cdfw-border);
  border-radius: 12px; padding: 22px;
  transition: border-color var(--cdfw-t), transform var(--cdfw-t), box-shadow var(--cdfw-t);
}
.cdfw-proof-t-light:hover {
  border-color: var(--cdfw-brand400);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,138,102,0.12);
}
.cdfw-proof-t-light .cdfw-proof-t-q { color: var(--cdfw-ink2); }
.cdfw-proof-t-light .cdfw-proof-t-name { color: var(--cdfw-ink); }
.cdfw-proof-t-light .cdfw-proof-t-role { color: var(--cdfw-ink4); }
.cdfw-proof-t-light .cdfw-proof-t-av { background: var(--cdfw-brand100); color: var(--cdfw-brand700); }

/* ══════════════════════════════════════════
   GOOGLE REVIEW CARD
══════════════════════════════════════════ */
.cdfw-review-card {
  background: white;
  border: 1px solid var(--cdfw-border);
  border-radius: 14px; padding: 24px;
  transition: border-color var(--cdfw-t), transform var(--cdfw-t), box-shadow var(--cdfw-t);
}
.cdfw-review-card:hover {
  border-color: var(--cdfw-brand400);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,138,102,0.12);
}
.cdfw-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cdfw-review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cdfw-brand100);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--cdfw-brand700);
  flex-shrink: 0; font-family: var(--cdfw-sans);
}
.cdfw-review-meta { flex: 1; }
.cdfw-review-name { font-size: 13.5px; font-weight: 700; color: var(--cdfw-ink); font-family: var(--cdfw-sans); margin-bottom: 2px; }
.cdfw-review-date { font-size: 11px; color: var(--cdfw-ink4); font-family: var(--cdfw-sans); }
.cdfw-review-google-icon { flex-shrink: 0; }
.cdfw-review-stars { display: flex; align-items: center; gap: 2px; margin-bottom: 10px; }
.cdfw-review-star { width: 15px; height: 15px; fill: #f59e0b; }
.cdfw-review-text {
  font-size: 13.5px; color: var(--cdfw-ink3);
  line-height: 1.65; font-family: var(--cdfw-sans);
}
.cdfw-review-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #f0f7ff; border: 1px solid #c8dff9;
  border-radius: 6px; padding: 4px 10px; margin-top: 12px;
  font-size: 10.5px; font-weight: 600; color: #1a73e8;
  font-family: var(--cdfw-sans);
}

/* ══════════════════════════════════════════
   PRICING CARD
══════════════════════════════════════════ */
.cdfw-pricing-card {
  background: white; border: 1px solid var(--cdfw-border);
  border-radius: 14px; padding: 30px 26px;
  transition: border-color var(--cdfw-t), transform var(--cdfw-t), box-shadow var(--cdfw-t);
  position: relative;
}
.cdfw-pricing-card:hover {
  border-color: var(--cdfw-brand400);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,138,102,0.1);
}
.cdfw-pricing-card.cdfw-pricing-featured {
  border: 2px solid var(--cdfw-brand500);
  box-shadow: 0 8px 32px rgba(34,168,126,0.2);
}
.cdfw-pricing-card.cdfw-pricing-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(34,168,126,0.28);
}
.cdfw-featured-badge {
  position: absolute; top: -1px; right: 22px;
  background: var(--cdfw-brand600); color: white;
  font-size: 10.5px; font-weight: 600;
  padding: 4px 11px; border-radius: 0 0 8px 8px;
  font-family: var(--cdfw-sans);
}
.cdfw-pricing-card-tag {
  font-size: 10.5px; font-weight: 700; color: var(--cdfw-brand600);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 12px; font-family: var(--cdfw-sans);
}
.cdfw-pricing-title { font-size: 17px; font-weight: 700; color: var(--cdfw-ink); margin-bottom: 10px; font-family: var(--cdfw-sans); }
.cdfw-pricing-one-liner {
  font-size: 13px; font-weight: 600; color: var(--cdfw-brand600);
  margin-bottom: 10px; font-style: italic; font-family: var(--cdfw-sans);
}
.cdfw-pricing-desc { font-size: 13.5px; color: var(--cdfw-ink3); line-height: 1.65; font-family: var(--cdfw-sans); }

/* ══════════════════════════════════════════
   OBJECTION CARD
══════════════════════════════════════════ */
.cdfw-obj-card {
  background: var(--cdfw-smoke);
  border: 1px solid var(--cdfw-border);
  border-radius: 14px; padding: 26px 22px;
  transition: border-color var(--cdfw-t), background var(--cdfw-t), transform var(--cdfw-t);
}
.cdfw-obj-card:hover {
  background: white;
  border-color: var(--cdfw-brand200);
  transform: translateY(-2px);
}
.cdfw-obj-q { font-size: 14.5px; font-weight: 700; color: var(--cdfw-ink); margin-bottom: 10px; font-style: italic; font-family: var(--cdfw-sans); }
.cdfw-obj-a { font-size: 13.5px; color: var(--cdfw-ink3); line-height: 1.65; font-family: var(--cdfw-sans); }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cdfw-cta-wrap { position: relative; overflow: hidden; }
.cdfw-cta-radial {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(61,189,148,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cdfw-cta-inner { position: relative; z-index: 1; }
.cdfw-cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15); color: white;
  padding: 4px 13px; border-radius: 100px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 18px; font-family: var(--cdfw-sans);
}
.cdfw-cta-h2 {
  font-family: var(--cdfw-serif); font-size: 44px;
  color: white; font-weight: 400; line-height: 1.1; margin-bottom: 14px;
}
.cdfw-cta-p {
  font-size: 15px; color: rgba(255,255,255,0.72);
  max-width: 480px; margin: 0 auto 28px; line-height: 1.65;
  font-family: var(--cdfw-sans);
}
.cdfw-cta-bullets {
  display: grid; grid-template-columns: repeat(2,auto);
  gap: 8px 36px; justify-content: center; margin-bottom: 32px;
}
.cdfw-cta-bullet {
  font-size: 13px; color: rgba(255,255,255,0.72);
  display: flex; align-items: center; gap: 7px;
  font-family: var(--cdfw-sans);
}
.cdfw-cta-check { color: var(--cdfw-brand200); font-size: 13px; }
.cdfw-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   HERO BLOCKQUOTE
══════════════════════════════════════════ */
.cdfw-hero-blockquote {
  border-left: 3px solid var(--cdfw-brand400);
  padding: 12px 18px;
  background: var(--cdfw-brand50);
  border-radius: 0 8px 8px 0;
  font-size: 13.5px; font-style: italic;
  color: var(--cdfw-ink2); line-height: 1.6;
  font-family: var(--cdfw-sans);
}

/* ══════════════════════════════════════════
   HERO BULLETS
══════════════════════════════════════════ */
.cdfw-we-help-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cdfw-ink4);
  margin-bottom: 10px; font-family: var(--cdfw-sans);
}
.cdfw-hero-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.cdfw-hbullet { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--cdfw-ink3); font-family: var(--cdfw-sans); }
.cdfw-hbullet-icon {
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--cdfw-brand100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--cdfw-t);
}
.cdfw-hbullet:hover .cdfw-hbullet-icon { background: var(--cdfw-brand200); }

/* ══════════════════════════════════════════
   SHARED ANIMATIONS
══════════════════════════════════════════ */
@keyframes cdfw-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.85); }
}
@keyframes cdfw-fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes cdfw-fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

/* Intersection observer animation classes */
.cdfw-anim-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.cdfw-anim-ready.cdfw-anim-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  /* Feature Grid — stack vertically */
  .cdfw-feature-grid-wrap {
    flex-direction: column;
  }
  .cdfw-feature-left,
  .cdfw-feature-right {
    width: 100%;
  }
  .cdfw-feature-right {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Gains Grid — max 3 cols */
  .cdfw-gains-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* Revenue Leak — stack */
  .cdfw-leak-wrap {
    flex-direction: column;
  }

  /* Proof Stats */
  .cdfw-proof-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Trust scores */
  .cdfw-trust-scores-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Dashboard Card */
  .cdfw-dash-outer {
    padding: 40px 24px;
  }

  /* Section heading */
  .cdfw-section-h2 {
    font-size: 32px !important;
  }

  /* CTA heading */
  .cdfw-cta-h2 {
    font-size: 30px !important;
  }

  /* Footer line */
  .cdfw-footer-line {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Buttons */
  .cdfw-cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 767px)
   ============================================================ */
@media (max-width: 767px) {

  /* Feature Grid */
  .cdfw-feature-grid-wrap {
    flex-direction: column;
  }
  .cdfw-feature-right {
    grid-template-columns: 1fr !important;
  }

  /* Gains Grid — 2 cols on mobile */
  .cdfw-gains-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Gain card */
  .cdfw-gain-card {
    padding: 18px 14px;
  }

  /* Revenue Leak */
  .cdfw-leak-wrap {
    flex-direction: column;
    gap: 32px;
  }
  .cdfw-leak-list {
    padding-left: 0;
  }

  /* Proof Stats — 1 col on very small, 2 col OK */
  .cdfw-proof-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Section heading */
  .cdfw-section-h2 {
    font-size: 26px !important;
    line-height: 1.18 !important;
  }
  .cdfw-section-sub {
    font-size: 14px !important;
    max-width: 100% !important;
  }

  /* CTA */
  .cdfw-cta-h2 {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }
  .cdfw-cta-p {
    font-size: 14px !important;
  }
  .cdfw-cta-bullets {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .cdfw-cta-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .cdfw-cta-btns .cdfw-btn {
    width: 100%;
    justify-content: center;
  }

  /* Pricing card */
  .cdfw-pricing-title {
    font-size: 20px !important;
  }

  /* Feature grid left heading */
  .cdfw-feature-h2 {
    font-size: 24px !important;
  }

  /* Dashboard card */
  .cdfw-dash-outer {
    padding: 24px 16px;
  }
  .cdfw-dash-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Ticker — reduce font on mobile */
  .cdfw-ticker-item {
    font-size: 11.5px;
  }

  /* EHR Bar */
  .cdfw-ehr-bar {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 20px;
  }
  .cdfw-ehr-logos {
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Footer line */
  .cdfw-footer-line {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .cdfw-footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Testimonial card */
  .cdfw-proof-t {
    padding: 20px 16px !important;
  }

  /* Google review card */
  .cdfw-review-card {
    padding: 20px 16px !important;
  }

  /* Objection card */
  .cdfw-obj-card {
    padding: 20px 16px !important;
  }

  /* Button — full width option on mobile */
  .cdfw-btn {
    white-space: normal;
    word-break: break-word;
  }
}

/* ============================================================
   FOOTER BOTTOM LINE
   ============================================================ */
.cdfw-footer-line-wrap {
  background: var(--cdfw-brand800);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.cdfw-footer-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 48px;
}
.cdfw-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--cdfw-sans);
}
.cdfw-footer-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.cdfw-footer-nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-family: var(--cdfw-sans);
  transition: color var(--cdfw-t);
}
.cdfw-footer-nav a:hover {
  color: var(--cdfw-brand400);
}
.cdfw-footer-nav-sep {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  margin: 0 4px;
  font-family: var(--cdfw-sans);
}
