/* ═══════════════════════════════════════════════════════════
   CLEWLY ELEMENTOR WIDGETS — Frontend Stylesheet v1.0.0
   All styles scoped to .clewly-* to avoid theme conflicts.
═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables (overridden per-widget via inline style) */
.clewly-widget {
  --cw-primary:   #2f5972;
  --cw-secondary: #4CBFBF;
  --cw-cream:     #f5f0e4;
  --cw-light:     #f8f8f8;
  --cw-dark:      #1a3545;
  --cw-text:      #1e2d38;
  --cw-muted:     #6b7a87;
  --cw-white:     #ffffff;
  --cw-border:    rgba(47,89,114,0.14);
  --cw-accent:    #4CBFBF;
  --cw-heading-color: #1e2d38;
  --cw-body-color:    #6b7a87;
  --cw-bg:        #f5f0e4;
  --cw-btn-bg:    #4CBFBF;
  --cw-btn-color: #ffffff;
  --cw-btn-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
}
.clewly-widget *, .clewly-widget *::before, .clewly-widget *::after { box-sizing: border-box; }

/* ─── Reveal animation base */
.clewly-reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.clewly-reveal.clewly-in { opacity: 1; transform: translateY(0); }

/* ─── Shared utilities */
.clewly-section-label { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--cw-muted); display: block; margin-bottom: 10px; }
.clewly-teal-rule { display: block; width: 64px; height: 3px; background: var(--cw-secondary); border-radius: 2px; margin: 12px 0 24px; }
.clewly-heading { font-family: 'Nunito', sans-serif; font-weight: 900; color: var(--cw-heading-color); line-height: 1.1; margin: 0 0 8px; }
.clewly-body-text { color: var(--cw-body-color); line-height: 1.8; font-size: 16px; margin-bottom: 16px; }
.clewly-pill { display: inline-flex; align-items: center; padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; background: rgba(76,191,191,.18); color: var(--cw-secondary); }

.clewly-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px; border-radius: var(--cw-btn-radius); font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px; line-height: 1; text-decoration: none; cursor: pointer; border: none; transition: transform .25s, box-shadow .25s, background .2s; background: var(--cw-btn-bg); color: var(--cw-btn-color); }
.clewly-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.15); }
.clewly-btn--outline { background: transparent; border: 2px solid var(--cw-btn-bg); color: var(--cw-btn-bg); }
.clewly-btn--outline:hover { background: var(--cw-btn-bg); color: var(--cw-btn-color); }

.clewly-check-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.clewly-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--cw-text); line-height: 1.5; }
.clewly-check-list li::before { content: ''; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%234CBFBF'/%3E%3Cpath d='M5.5 10l3 3 6-6' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ─── HERO ──────────────────────────────────────────────── */
.clewly-hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--cw-primary); padding: 100px 40px 80px; text-align: center; position: relative; overflow: hidden; }
.clewly-hero__circle { position: absolute; border-radius: 50%; border: 1.5px solid rgba(76,191,191,.22); pointer-events: none; }
.clewly-hero__circle--1 { width: 760px; height: 760px; top: -200px; right: -200px; }
.clewly-hero__circle--2 { width: 520px; height: 520px; bottom: -160px; left: -160px; }
.clewly-hero__inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.clewly-hero__wordmark { margin: 0 auto 28px; }
.clewly-hero__wordmark svg { width: min(560px, 88vw); height: auto; }
.clewly-hero__tagline { font-family: 'Nunito', sans-serif; font-style: italic; font-weight: 700; font-size: clamp(18px, 2.6vw, 26px); color: rgba(255,255,255,.75); line-height: 1.4; margin-bottom: 20px; }
.clewly-hero__rule { width: 80px; height: 3px; background: var(--cw-secondary); border-radius: 2px; margin: 0 auto 28px; }
.clewly-hero__subtitle { font-size: clamp(14px, 1.5vw, 17px); color: rgba(255,255,255,.55); line-height: 1.75; max-width: 540px; margin: 0 auto 36px; }
.clewly-hero__ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.clewly-hero__trust { font-size: 11px; color: rgba(255,255,255,.38); letter-spacing: .12em; text-transform: uppercase; }
.clewly-hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(0,0,0,.25); color: var(--cw-secondary); font-size: 12px; font-weight: 600; margin-bottom: 28px; }
.clewly-hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cw-secondary); animation: cwPulse 2s infinite; }
@keyframes cwPulse { 0%,100%{box-shadow:0 0 0 0 rgba(76,191,191,.4)} 50%{box-shadow:0 0 0 6px rgba(76,191,191,0)} }

/* ─── MARQUEE ────────────────────────────────────────────── */
.clewly-marquee { height: 76px; display: flex; align-items: center; overflow: hidden; background: var(--cw-primary); }
.clewly-marquee__label { flex-shrink: 0; padding: 0 28px; white-space: nowrap; font-size: 12px; font-style: italic; color: rgba(255,255,255,.45); border-right: 1px solid rgba(255,255,255,.12); }
.clewly-marquee__track { flex: 1; overflow: hidden; }
.clewly-marquee__inner { display: flex; width: max-content; animation: cwMarquee var(--cw-marquee-speed, 30s) linear infinite; }
.clewly-marquee__inner:hover { animation-play-state: paused; }
.clewly-marquee__item { display: flex; align-items: center; gap: 22px; padding: 0 22px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: var(--cw-secondary); white-space: nowrap; }
.clewly-marquee__item::after { content: '·'; opacity: .5; }
@keyframes cwMarquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ─── OVERVIEW ───────────────────────────────────────────── */
.clewly-overview { padding: 96px 0; background: var(--cw-bg); }
.clewly-overview .clewly-overview__wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.clewly-overview__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0; }
.clewly-overview__h2 { font-size: clamp(34px, 4.5vw, 58px); }
.clewly-overview__body { font-size: 17px; line-height: 1.8; color: var(--cw-body-color); max-width: 860px; margin-bottom: 44px; }
.clewly-overview__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 0; }
.clewly-ov-card { background: var(--cw-white); border-top: 5px solid var(--cw-secondary); padding: 28px 24px 32px; transition: transform .3s, box-shadow .3s; }
.clewly-ov-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.clewly-ov-card__badge { width: 58px; height: 58px; border-radius: 50%; background: var(--cw-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 22px; color: var(--cw-secondary); }
.clewly-ov-card__title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 16px; color: var(--cw-heading-color); margin-bottom: 10px; }
.clewly-ov-card__body { font-size: 14px; line-height: 1.7; color: var(--cw-muted); }
.clewly-overview__trust { background: var(--cw-primary); padding: 14px 32px; display: flex; align-items: center; justify-content: center; gap: 6px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; color: var(--cw-secondary); letter-spacing: .04em; margin-top: 44px; }

/* ─── DEMO ────────────────────────────────────────────────── */
.clewly-demo { padding: 96px 0; background: var(--cw-bg); }
.clewly-demo__wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.clewly-demo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.clewly-demo__h2 { font-size: clamp(28px, 3.5vw, 46px); margin-bottom: 16px; }
.clewly-browser { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 70px rgba(0,0,0,.18); border: 1px solid rgba(0,0,0,.08); }
.clewly-browser__bar { background: #2a2a2a; padding: 11px 16px; display: flex; align-items: center; gap: 10px; }
.clewly-browser__dots { display: flex; gap: 5px; }
.clewly-browser__dot { width: 10px; height: 10px; border-radius: 50%; }
.clewly-browser__dot--r { background: #ff5f57; }
.clewly-browser__dot--y { background: #febc2e; }
.clewly-browser__dot--g { background: #28c840; }
.clewly-browser__url { flex: 1; text-align: center; font-size: 11px; color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); border-radius: 4px; padding: 4px 10px; }
.clewly-browser__content { background: #eef2f5; padding: 24px; min-height: 380px; display: flex; align-items: center; justify-content: center; position: relative; }
.clewly-demo__reset { display: block; text-align: center; margin-top: 10px; font-size: 12px; color: var(--cw-muted); cursor: pointer; text-decoration: none; }
.clewly-demo__reset:hover { color: var(--cw-secondary); }

/* Widget popup */
.cw-popup { background: #fff; border-radius: 14px; box-shadow: 0 10px 50px rgba(0,0,0,.2); width: 100%; max-width: 340px; overflow: hidden; font-family: 'DM Sans', sans-serif; }
.cw-state { transition: opacity .3s, transform .3s; }
.cw-state.cw-hidden { opacity: 0; transform: translateY(10px); pointer-events: none; position: absolute; width: 100%; }
.cw-state.cw-visible { opacity: 1; transform: none; position: relative; }
.cw-head { padding: 16px 16px 12px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(47,89,114,.12); }
.cw-head-text { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px; color: #1e2d38; line-height: 1.35; }
.cw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
.cw-treat { border: 1.5px solid rgba(47,89,114,.14); border-radius: 8px; padding: 9px 11px; font-size: 12px; font-weight: 500; color: #1e2d38; text-align: left; cursor: pointer; transition: border-color .2s, background .2s; background: #fff; }
.cw-treat:hover { border-color: #4CBFBF; background: rgba(76,191,191,.07); }
.cw-foot { padding: 8px 14px; border-top: 1px solid rgba(47,89,114,.1); text-align: center; font-size: 10px; color: #6b7a87; }
.cw-foot em { color: #4CBFBF; font-style: normal; font-weight: 600; }
.cw-detail { padding: 16px; }
.cw-back { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #6b7a87; cursor: pointer; margin-bottom: 13px; background: none; border: none; font-family: inherit; }
.cw-back:hover { color: #4CBFBF; }
.cw-tname { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 18px; color: #1e2d38; margin-bottom: 7px; }
.cw-tdesc { font-size: 13px; line-height: 1.65; color: #6b7a87; margin-bottom: 11px; }
.cw-tprice { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 21px; color: #4CBFBF; margin-bottom: 4px; }
.cw-tsuit { font-size: 11px; color: #6b7a87; margin-bottom: 16px; }
.cw-cta { display: block; width: 100%; padding: 11px; text-align: center; background: #4CBFBF; color: #fff; border: none; border-radius: 100px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; margin-bottom: 8px; transition: background .2s; }
.cw-cta:hover { background: #2f5972; }
.cw-link { display: block; text-align: center; font-size: 12px; color: #6b7a87; cursor: pointer; background: none; border: none; font-family: inherit; width: 100%; }
.cw-link:hover { color: #4CBFBF; }
.cw-wrap { position: relative; display: flex; align-items: center; justify-content: center; min-height: 340px; }

/* ─── STATS ───────────────────────────────────────────────── */
.clewly-stats { padding: 68px 0; background: var(--cw-primary); }
.clewly-stats__wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.clewly-stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.clewly-stat { text-align: center; padding: 24px; position: relative; }
.clewly-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,.15); }
.clewly-stat__num { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(40px, 5vw, 64px); color: var(--cw-secondary); line-height: 1; margin-bottom: 8px; }
.clewly-stat__label { font-size: 13px; color: rgba(255,255,255,.6); letter-spacing: .04em; }

/* ─── FEATURES ────────────────────────────────────────────── */
.clewly-feat { padding: 96px 0; background: var(--cw-bg); }
.clewly-feat__wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.clewly-feat__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.clewly-feat__grid--rev .clewly-feat__text { order: 2; }
.clewly-feat__grid--rev .clewly-feat__visual { order: 1; }
.clewly-feat__h2 { font-size: clamp(26px, 3.2vw, 42px); margin-bottom: 16px; }
.clewly-feat__link { display: inline-flex; align-items: center; gap: 6px; color: var(--cw-secondary); font-weight: 600; font-size: 14px; margin-top: 18px; text-decoration: none; transition: gap .2s; }
.clewly-feat__link:hover { gap: 10px; }
.clewly-code-box { background: #151f2c; border-radius: 12px; padding: 26px; position: relative; }
.clewly-code-box__lbl { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 12px; }
.clewly-code-box__code { font-family: 'Courier New', monospace; font-size: 13px; line-height: 1.8; color: #9db8d2; word-break: break-all; }
.clewly-code-box__code .cw-tag { color: #7fbbb3; }
.clewly-code-box__code .cw-attr { color: #d8a657; }
.clewly-code-box__code .cw-val { color: #a9b665; }
.clewly-code-box__copy { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,.08); border: none; color: rgba(255,255,255,.6); padding: 5px 12px; border-radius: 4px; font-size: 11px; cursor: pointer; transition: background .2s; }
.clewly-code-box__copy:hover { background: rgba(76,191,191,.25); }
.clewly-code-box__status { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: #a9b665; margin-top: 12px; }
.clewly-code-box__status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #a9b665; }
.clewly-flow-diag { background: #fff; border-radius: 12px; padding: 26px; box-shadow: 0 4px 20px rgba(0,0,0,.08); border: 1px solid rgba(47,89,114,.12); }
.clewly-flow-diag__title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px; color: #1e2d38; margin-bottom: 18px; }
.clewly-flow-step { display: flex; align-items: flex-start; gap: 13px; padding: 13px 0; border-bottom: 1px dashed rgba(47,89,114,.13); }
.clewly-flow-step:last-child { border-bottom: none; }
.clewly-flow-num { width: 32px; height: 32px; min-width: 32px; border-radius: 50%; background: #4CBFBF; color: #fff; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.clewly-flow-step-title { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; color: #1e2d38; margin-bottom: 3px; }
.clewly-flow-step-sub { font-size: 12px; color: #6b7a87; line-height: 1.5; }
.clewly-dash { background: #151f2c; border-radius: 12px; overflow: hidden; box-shadow: 0 12px 50px rgba(0,0,0,.25); }
.clewly-dash__top { background: #0d1520; padding: 11px 16px; display: flex; align-items: center; justify-content: space-between; }
.clewly-dash__top-title { color: rgba(255,255,255,.7); font-size: 12px; }
.clewly-dash__top-dot { width: 7px; height: 7px; border-radius: 50%; background: #4CBFBF; }
.clewly-dash__body { display: flex; min-height: 220px; }
.clewly-dash__side { width: 52px; background: #0a1118; padding: 12px 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.clewly-dash__icon { width: 28px; height: 28px; border-radius: 6px; background: rgba(76,191,191,.12); display: flex; align-items: center; justify-content: center; }
.clewly-dash__icon--on { background: #4CBFBF; }
.clewly-dash__main { flex: 1; padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.clewly-dash__card { background: rgba(255,255,255,.05); border-radius: 8px; padding: 11px; }
.clewly-dash__card-lbl { font-size: 9px; color: rgba(255,255,255,.32); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.clewly-dash__card-val { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 22px; color: #4CBFBF; }
.clewly-dash__card-sub { font-size: 10px; color: rgba(255,255,255,.28); margin-top: 2px; }
.clewly-dash__list { background: rgba(255,255,255,.05); border-radius: 8px; padding: 11px; grid-column: 1 / -1; }
.clewly-dash__list-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.clewly-dash__list-row:last-child { border-bottom: none; }
.clewly-dash__list-name { font-size: 11px; color: rgba(255,255,255,.6); }
.clewly-dash__list-val { font-size: 11px; color: #4CBFBF; font-weight: 600; }

/* ─── ADD-ONS ─────────────────────────────────────────────── */
.clewly-addons { padding: 96px 0; background: var(--cw-bg); }
.clewly-addons__wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.clewly-addons__header { display: flex; align-items: flex-start; justify-content: space-between; }
.clewly-addons__h2 { font-size: clamp(34px, 4.5vw, 60px); }
.clewly-addons__sub { font-style: italic; font-size: 16px; color: var(--cw-muted); margin-bottom: 36px; }
.clewly-addons__grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(47,89,114,.12); }
.clewly-addon-card { padding: 30px 26px 22px; border: 1px solid rgba(47,89,114,.1); background: #fff; position: relative; transition: background .2s; }
.clewly-addon-card:hover { background: #fafaf8; }
.clewly-addon-card__strip { height: 5px; position: absolute; top: 0; left: 0; right: 0; }
.clewly-addon-badge { display: inline-flex; padding: 2px 10px; border-radius: 100px; font-size: 10px; font-weight: 600; letter-spacing: .05em; margin-bottom: 12px; }
.clewly-addon-badge--v1 { background: rgba(76,191,191,.15); color: #4CBFBF; }
.clewly-addon-badge--v2 { background: rgba(107,122,135,.12); color: #6b7a87; }
.clewly-addon-card__title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 16px; margin-bottom: 12px; }
.clewly-addon-card__body { font-size: 13px; line-height: 1.7; color: #6b7a87; margin-bottom: 0; }
.clewly-addon-card__price-row { background: rgba(76,191,191,.12); margin: 18px -26px -22px; padding: 11px 26px; text-align: center; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: #4CBFBF; }
.clewly-addons__v2 { margin-top: 18px; padding: 36px; background: var(--cw-primary); display: flex; align-items: flex-start; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.clewly-addons__v2 h3 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 26px; color: #fff; margin-bottom: 8px; }
.clewly-addons__v2 p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 460px; }
.clewly-addons__v2-feats { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.clewly-addons__v2-feat { background: rgba(255,255,255,.1); border-radius: 100px; padding: 4px 13px; font-size: 12px; color: rgba(255,255,255,.8); }

/* ─── TESTIMONIAL ─────────────────────────────────────────── */
.clewly-testimonial { padding: 96px 0; background: var(--cw-bg); }
.clewly-testimonial__wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.clewly-testimonial__inner { max-width: 740px; margin: 0 auto; text-align: center; }
.clewly-testimonial__stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 9px; }
.clewly-testimonial__rating { font-size: 13px; color: var(--cw-muted); margin-bottom: 30px; }
.clewly-testimonial__quote { font-family: 'Nunito', sans-serif; font-style: italic; font-weight: 700; font-size: clamp(19px, 2.8vw, 28px); line-height: 1.55; color: var(--cw-heading-color); margin-bottom: 34px; }
.clewly-testimonial__quote::before { content: '\201C'; color: var(--cw-secondary); }
.clewly-testimonial__quote::after  { content: '\201D'; color: var(--cw-secondary); }
.clewly-testimonial__avatar { width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 10px; }
.clewly-testimonial__name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px; color: var(--cw-heading-color); }
.clewly-testimonial__role { font-size: 13px; color: var(--cw-muted); margin-top: 2px; }

/* ─── PRICING ─────────────────────────────────────────────── */
.clewly-pricing { padding: 96px 0; background: var(--cw-bg); }
.clewly-pricing__wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.clewly-pricing__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0; }
.clewly-pricing__h2 { font-size: clamp(34px, 4.5vw, 60px); }
.clewly-pricing__sub { font-size: 16px; color: var(--cw-muted); margin-bottom: 44px; line-height: 1.7; }
.clewly-pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.clewly-pricing-card { background: #fff; border: 1px solid rgba(47,89,114,.12); border-radius: 4px; display: flex; flex-direction: column; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.clewly-pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.clewly-pricing-card--popular { box-shadow: 0 8px 32px rgba(76,191,191,.25); }
.clewly-pricing-card__banner { padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.clewly-pricing-card__name { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 18px; letter-spacing: .02em; }
.clewly-pricing-card__badge { display: inline-flex; padding: 2px 10px; border-radius: 100px; background: rgba(255,255,255,.25); font-size: 10px; font-weight: 600; letter-spacing: .06em; }
.clewly-pricing-card__body { padding: 26px 22px; flex: 1; display: flex; flex-direction: column; }
.clewly-pricing-card__tagline { font-size: 13px; color: var(--cw-muted); margin-bottom: 16px; line-height: 1.5; }
.clewly-pricing-card__price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 22px; }
.clewly-pricing-card__price { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(32px, 3.5vw, 48px); color: var(--cw-heading-color); line-height: 1; }
.clewly-pricing-card__period { font-size: 14px; color: var(--cw-muted); font-weight: 500; }
.clewly-pricing-card__feats { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.clewly-pricing-card__feat { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--cw-text); line-height: 1.45; }
.clewly-pricing-card__feat::before { content: ''; flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--cw-secondary); margin-top: 5px; }
.clewly-pricing-card__cta { display: block; width: 100%; padding: 12px; text-align: center; border-radius: 3px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px; text-decoration: none; transition: transform .25s, box-shadow .25s; }
.clewly-pricing-card__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.15); }
/* Add-ons table */
.clewly-pricing__addons { max-width: 740px; margin: 0 auto; }
.clewly-pricing__addons-label { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--cw-muted); text-align: center; margin-bottom: 16px; font-weight: 600; }
.clewly-pricing__addon-table { border: 1px solid rgba(47,89,114,.12); border-radius: 4px; overflow: hidden; }
.clewly-pricing__addon-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 20px; font-size: 14px; }
.clewly-pricing__addon-row:not(:last-child) { border-bottom: 1px solid rgba(47,89,114,.08); }
.clewly-pricing__addon-name { color: var(--cw-text); }
.clewly-pricing__addon-price { font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--cw-secondary); font-size: 13px; }

/* ─── WORKFLOW ────────────────────────────────────────────── */
.clewly-workflow { padding: 92px 0; background: var(--cw-primary); }
.clewly-workflow__wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.clewly-workflow__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 56px; }
.clewly-workflow__h2 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(28px, 3.8vw, 48px); color: #fff; line-height: 1.15; margin: 10px 0 0; }
.clewly-workflow__sub { font-size: 16px; color: rgba(255,255,255,.6); margin-top: 16px; line-height: 1.7; }
.clewly-workflow__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.clewly-wf-step { text-align: center; padding: 28px 20px 32px; background: rgba(255,255,255,.05); border-radius: 8px; position: relative; }
.clewly-wf-step__icon-wrap { display: flex; flex-direction: column; align-items: center; position: relative; }
.clewly-wf-step__num { width: 52px; height: 52px; border-radius: 50%; background: transparent; border: 2px solid var(--cw-secondary); color: var(--cw-secondary); font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.clewly-workflow__connector { display: none; /* handled via grid gap on mobile / JS on desktop */ }
.clewly-wf-step__icon { font-size: 32px; margin-bottom: 14px; }
.clewly-wf-step__title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 16px; color: #fff; margin-bottom: 9px; }
.clewly-wf-step__body { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ─── CTA ─────────────────────────────────────────────────── */
.clewly-cta { padding: 112px 40px; background: var(--cw-dark); text-align: center; position: relative; overflow: hidden; }
.clewly-cta__circle { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.06); pointer-events: none; }
.clewly-cta__circle--1 { width: 580px; height: 580px; top: -200px; right: -140px; }
.clewly-cta__circle--2 { width: 380px; height: 380px; bottom: -100px; left: -90px; }
.clewly-cta__circle--3 { width: 240px; height: 240px; top: 40%; left: 5%; }
.clewly-cta__inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.clewly-cta__wordmark { display: flex; justify-content: center; margin-bottom: 32px; }
.clewly-cta__wordmark svg { width: min(360px, 80vw); height: auto; }
.clewly-cta__heading { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(30px, 4.5vw, 56px); color: #fff; line-height: 1.15; margin-bottom: 18px; }
.clewly-cta__rule { width: 80px; height: 3px; background: var(--cw-secondary); border-radius: 2px; margin: 0 auto 28px; }
.clewly-cta__body { font-size: 17px; color: rgba(255,255,255,.6); max-width: 500px; margin: 0 auto 36px; line-height: 1.75; }
.clewly-cta__btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.clewly-cta__trust { font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: .1em; text-transform: uppercase; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .clewly-overview__cards { grid-template-columns: repeat(2, 1fr); }
  .clewly-demo__grid { grid-template-columns: 1fr; gap: 44px; }
  .clewly-feat__grid { grid-template-columns: 1fr; gap: 40px; }
  .clewly-feat__grid--rev .clewly-feat__text,
  .clewly-feat__grid--rev .clewly-feat__visual { order: unset; }
  .clewly-addons__grid { grid-template-columns: repeat(2, 1fr); }
  .clewly-pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .clewly-stats__grid { grid-template-columns: 1fr; }
  .clewly-stat:not(:last-child)::after { display: none; }
  .clewly-stat { border-bottom: 1px solid rgba(255,255,255,.1); }
  .clewly-workflow__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .clewly-hero { padding: 90px 20px 60px; }
  .clewly-overview__cards, .clewly-addons__grid { grid-template-columns: 1fr; }
  .clewly-overview__header, .clewly-addons__header, .clewly-pricing__header,
  .clewly-workflow__header { flex-direction: column; }
  .clewly-workflow__steps { grid-template-columns: 1fr; }
  .clewly-hero__ctas, .clewly-cta__btns { flex-direction: column; align-items: center; }
  .clewly-hero__ctas .clewly-btn, .clewly-cta__btns .clewly-btn { width: 100%; max-width: 280px; }
  .clewly-marquee__label { display: none; }
  .clewly-overview__wrap, .clewly-demo__wrap, .clewly-feat__wrap,
  .clewly-addons__wrap, .clewly-stats__wrap, .clewly-testimonial__wrap,
  .clewly-pricing__wrap, .clewly-workflow__wrap { padding: 0 20px; }
  .clewly-hero, .clewly-cta { padding-left: 20px; padding-right: 20px; }
  .clewly-pricing__grid { max-width: 100%; }
}
