/* ═══════════════════════════════════════════════════════════════════
   WFCREATOR.CSS — WF Builder Solution Landing Page
   Prefix: wfc-
   ═══════════════════════════════════════════════════════════════════ */

/* ───────── COLOUR TOKENS ───────── */
:root {
  --wfc-accent: #f59e0b;
  --wfc-accent-light: #fbbf24;
  --wfc-accent-dim: rgba(245, 158, 11, .12);
  --wfc-accent-glow: rgba(245, 158, 11, .25);
  --wfc-surface: rgba(255, 255, 255, .03);
  --wfc-surface-2: rgba(255, 255, 255, .05);
  --wfc-border: rgba(255, 255, 255, .06);
  --wfc-border-2: rgba(255, 255, 255, .10);
}


/* ── Gradient text ── */
.wfc-tg {
  background: linear-gradient(135deg, var(--wfc-accent-light), var(--wfc-accent), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Badge ── */
.wfc-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .8rem;
  background: var(--wfc-accent-dim);
  color: var(--wfc-accent-light);
  border: 1px solid rgba(245, 158, 11, .2);
}


/* ═══════════════════════════════════════════════════════════════════
   HERO — FULL-WIDTH IMMERSIVE
   ═══════════════════════════════════════════════════════════════════ */
.wfc-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.wfc-hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.wfc-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .25;
}
.wfc-hero__orb--1 {
  width: 600px; height: 600px;
  background: var(--wfc-accent);
  top: -200px; left: -150px;
}
.wfc-hero__orb--2 {
  width: 450px; height: 450px;
  background: #f97316;
  bottom: -150px; right: -100px;
}
.wfc-hero__orb--3 {
  width: 300px; height: 300px;
  background: #ef4444;
  top: 50%; right: 10%;
  opacity: .1;
}

.wfc-hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .4;
}

.wfc-hero__center {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 820px; margin: 0 auto;
}

.wfc-hero__title {
  font-family: var(--wf-font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 1.2rem 0 .8rem;
  color: var(--wf-text-1);
}

.wfc-hero__tagline {
  font-size: 1.2rem;
  color: var(--wfc-accent-light);
  font-weight: 600;
  margin-bottom: .8rem;
}

.wfc-hero__desc {
  font-size: 1.1rem;
  color: var(--wf-text-2);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.wfc-hero__ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── KPI Strip ── */
.wfc-kpi-strip {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
}

.wfc-kpi {
  text-align: center;
}

.wfc-kpi__value {
  font-family: var(--wf-font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.wfc-kpi__value .wfc-tg {
  font-size: inherit;
}

.wfc-kpi__label {
  font-size: .82rem;
  color: var(--wf-text-3);
  margin-top: .3rem;
}

.wfc-kpi-strip__sep {
  width: 1px;
  height: 48px;
  background: var(--wfc-border-2);
  align-self: center;
}


/* ═══════════════════════════════════════════════════════════════════
   STORYTELLING — O DILEMA
   ═══════════════════════════════════════════════════════════════════ */

/* ── Two-column narrative layout (O dilema | A resposta) ── */
.wfc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .wfc-two-col {
    grid-template-columns: 1fr;
  }
}

.wfc-block {
  margin-bottom: 0;
}

.wfc-block--highlight {
  background: linear-gradient(135deg, rgba(245, 158, 11, .06), rgba(249, 115, 22, .03));
  border: 1px solid rgba(245, 158, 11, .12);
  border-radius: 20px;
  padding: 2.5rem;
}

.wfc-block__header {
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Narrative blocks (O dilema, A resposta) stay left-aligned */
.wfc-block .wfc-block__header {
  text-align: left;
}

.wfc-block__header h2,
.wfc-block__header h3 {
  font-family: var(--wf-font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--wf-text-1);
  margin-top: .8rem;
  line-height: 1.3;
}

.wfc-block__text {
  font-size: 1.05rem;
  color: var(--wf-text-2);
  line-height: 1.8;
  max-width: 800px;
}

/* ── Dilemma cards ── */
.wfc-dilemma {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 2rem;
}

.wfc-dilemma__card {
  flex: 1;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--wfc-border-2);
  background: var(--wfc-surface);
}

.wfc-dilemma__card--bad {
  border-color: rgba(239, 68, 68, .15);
  background: rgba(239, 68, 68, .04);
}

.wfc-dilemma__card i {
  font-size: 2rem;
  color: #f87171;
  margin-bottom: .8rem;
  display: block;
}

.wfc-dilemma__card h4 {
  font-family: var(--wf-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wf-text-1);
  margin-bottom: .5rem;
}

.wfc-dilemma__card p {
  font-size: .92rem;
  color: var(--wf-text-2);
  line-height: 1.7;
}

.wfc-dilemma__vs {
  font-family: var(--wf-font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--wf-text-3);
  text-transform: uppercase;
  letter-spacing: .05em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}


/* ═══════════════════════════════════════════════════════════════════
   TIMELINE — METODOLOGIA
   ═══════════════════════════════════════════════════════════════════ */
.wfc-timeline-section {
  margin-bottom: 4rem;
}

.wfc-timeline {
  position: relative;
  margin-top: 2.5rem;
  padding-left: 3rem;
}

.wfc-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--wfc-accent), transparent);
}

.wfc-timeline__step {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
}

.wfc-timeline__step:last-child {
  padding-bottom: 0;
}

.wfc-timeline__number {
  position: absolute;
  left: -3rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wfc-accent), #f97316);
  color: #000;
  font-family: var(--wf-font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--wfc-accent-glow);
  z-index: 1;
}

.wfc-timeline__content {
  flex: 1;
  background: var(--wfc-surface);
  border: 1px solid var(--wfc-border-2);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  transition: border-color 350ms ease;
}

.wfc-timeline__content:hover {
  border-color: rgba(245, 158, 11, .25);
}

.wfc-timeline__content h4 {
  font-family: var(--wf-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wf-text-1);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.wfc-timeline__content h4 i {
  color: var(--wfc-accent-light);
  font-size: 1.2rem;
}

.wfc-timeline__content p {
  font-size: .95rem;
  color: var(--wf-text-2);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════════
   PLATFORM GRID
   ═══════════════════════════════════════════════════════════════════ */
.wfc-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.wfc-platform-card {
  background: var(--wfc-surface);
  border: 1px solid var(--wfc-border-2);
  border-radius: 14px;
  padding: 1.8rem;
  transition: all 350ms ease;
}

.wfc-platform-card:hover {
  border-color: rgba(245, 158, 11, .2);
  transform: translateY(-3px);
}

.wfc-platform-card i {
  font-size: 1.8rem;
  color: var(--wfc-accent-light);
  margin-bottom: .8rem;
  display: block;
}

.wfc-platform-card h4 {
  font-family: var(--wf-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wf-text-1);
  margin-bottom: .4rem;
}

.wfc-platform-card p {
  font-size: .88rem;
  color: var(--wf-text-2);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════════
   HISTÓRIA E TIMELINE — #wfc-historia
   ═══════════════════════════════════════════════════════════════════ */

/* ── Intro explainer ── */
.wfc-origin-explainer {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
  margin: 2.5rem 0 3.5rem;
}

.wfc-origin-explainer__text p {
  color: var(--wf-text-2);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: .97rem;
}

.wfc-origin-explainer__text p:last-child { margin-bottom: 0; }

.wfc-origin-explainer__quote {
  background: rgba(245, 158, 11, .05);
  border: 1px solid rgba(245, 158, 11, .18);
  border-radius: 16px;
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}

.wfc-origin-explainer__quote blockquote {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--wf-text-1);
  border-left: 3px solid var(--wfc-accent-light);
  padding-left: .9rem;
}

.wfc-origin-explainer__clients {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.wfc-origin-explainer__clients span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--wfc-accent-light);
  background: rgba(245, 158, 11, .08);
  border: 1px solid rgba(245, 158, 11, .2);
  border-radius: 20px;
  padding: .2rem .7rem;
  white-space: nowrap;
}

/* ── Timeline ── */
.wfc-hline {
  position: relative;
  padding: 1rem 0 2rem;
}

.wfc-hline__spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg,
    rgba(245,158,11,.0) 0%,
    rgba(245,158,11,.35) 8%,
    rgba(245,158,11,.35) 92%,
    rgba(245,158,11,.0) 100%);
}

.wfc-hline__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.wfc-hline__item--left {
  flex-direction: row;
  padding-right: calc(50% + 24px);
}

.wfc-hline__item--right {
  flex-direction: row-reverse;
  padding-left: calc(50% + 24px);
}

.wfc-hline__dot {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(245,158,11,.4);
  border: 2px solid rgba(245,158,11,.6);
  z-index: 1;
  flex-shrink: 0;
}

.wfc-hline__dot--highlight {
  width: 16px;
  height: 16px;
  background: var(--wfc-accent-light);
  border-color: #fff;
  box-shadow: 0 0 12px rgba(245,158,11,.5);
  top: 12px;
}

.wfc-hline__dot--now {
  width: 18px;
  height: 18px;
  background: var(--wfc-accent-light);
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(245,158,11,.15), 0 0 16px rgba(245,158,11,.5);
  top: 11px;
  animation: wfc-dot-pulse 2s ease-in-out infinite;
}

@keyframes wfc-dot-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(245,158,11,.15), 0 0 16px rgba(245,158,11,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(245,158,11,.08), 0 0 24px rgba(245,158,11,.7); }
}

.wfc-hline__card {
  background: var(--wf-card-bg, rgba(255,255,255,.03));
  border: 1px solid var(--wf-border, rgba(255,255,255,.07));
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  flex: 1;
  transition: border-color .2s, box-shadow .2s;
}

.wfc-hline__card:hover {
  border-color: rgba(245,158,11,.25);
  box-shadow: 0 4px 24px rgba(245,158,11,.06);
}

.wfc-hline__card--highlight {
  border-color: rgba(245,158,11,.2);
  background: rgba(245,158,11,.04);
}

.wfc-hline__card--now {
  border-color: rgba(245,158,11,.4);
  background: rgba(245,158,11,.07);
  box-shadow: 0 0 32px rgba(245,158,11,.08);
}

.wfc-hline__year {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--wfc-accent-light);
  margin-bottom: .45rem;
  text-transform: uppercase;
}

.wfc-hline__badge-now {
  font-size: .62rem;
  font-weight: 700;
  background: var(--wfc-accent-light);
  color: #1a1008;
  padding: .1rem .5rem;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: wfc-dot-pulse .1s linear 0s 1;
}

.wfc-hline__card p {
  color: var(--wf-text-2);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0 0 .75rem;
}

.wfc-hline__card p:last-child { margin-bottom: 0; }

.wfc-hline__bullets {
  list-style: none;
  padding: 0;
  margin: .25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.wfc-hline__bullets li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.wfc-hline__bullets li i {
  font-size: 1.1rem;
  color: var(--wfc-accent-light);
  flex-shrink: 0;
  margin-top: .15rem;
}

.wfc-hline__bullets li div {
  color: var(--wf-text-2);
  font-size: .88rem;
  line-height: 1.65;
}

.wfc-hline__bullets li div strong {
  color: var(--wf-text-1);
}


/* ── Responsive ── */
@media (max-width: 860px) {
  .wfc-origin-explainer {
    grid-template-columns: 1fr;
  }
  .wfc-origin-explainer__quote {
    position: static;
  }
}

@media (max-width: 680px) {
  .wfc-hline__spine { left: 16px; }
  .wfc-hline__item--left,
  .wfc-hline__item--right {
    flex-direction: row;
    padding-left: 44px;
    padding-right: 0;
  }
  .wfc-hline__dot,
  .wfc-hline__dot--highlight,
  .wfc-hline__dot--now {
    left: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   COMPARISON — NO-CODE / LOW-CODE / CÓDIGO
   ═══════════════════════════════════════════════════════════════════ */
.wfc-compare {
  margin-bottom: 4rem;
}

.wfc-compare__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.wfc-compare__col {
  background: var(--wfc-surface);
  border: 1px solid var(--wfc-border-2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 350ms ease;
}

.wfc-compare__col:hover {
  border-color: rgba(255, 255, 255, .12);
}

.wfc-compare__col--featured {
  border-color: rgba(245, 158, 11, .3);
  background: linear-gradient(160deg, rgba(245, 158, 11, .06), rgba(249, 115, 22, .03));
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(245, 158, 11, .1);
}

.wfc-compare__col-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  border-bottom: 1px solid var(--wfc-border);
  position: relative;
}

.wfc-compare__col-header i {
  font-size: 1.4rem;
}

.wfc-compare__col-header h4 {
  font-family: var(--wf-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--wf-text-1);
}

.wfc-compare__col-header--nocode i { color: #2dd4bf; }
.wfc-compare__col-header--lowcode i { color: var(--wfc-accent-light); }
.wfc-compare__col-header--code i { color: #f87171; }

.wfc-compare__recommended {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: linear-gradient(135deg, var(--wfc-accent), #f97316);
  color: #000;
  padding: .25rem .6rem;
  border-radius: 6px;
}

.wfc-compare__list {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
}

.wfc-compare__list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .8rem;
  font-size: .9rem;
  color: var(--wf-text-2);
  line-height: 1.5;
}

.wfc-compare__list li:last-child { margin-bottom: 0; }

.wfc-compare__list li i.ph-check { color: #2dd4bf; flex-shrink: 0; margin-top: .15rem; }
.wfc-compare__list li i.ph-info { color: var(--wfc-accent-light); flex-shrink: 0; margin-top: .15rem; }
.wfc-compare__list li i.ph-x { color: #f87171; flex-shrink: 0; margin-top: .15rem; }


/* ═══════════════════════════════════════════════════════════════════
   AUDIENCE
   ═══════════════════════════════════════════════════════════════════ */
.wfc-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.wfc-audience__card {
  background: var(--wfc-surface);
  border: 1px solid var(--wfc-border-2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 350ms ease;
}

.wfc-audience__card:hover {
  border-color: rgba(245, 158, 11, .2);
  transform: translateY(-3px);
}

.wfc-audience__card i {
  font-size: 2.2rem;
  color: var(--wfc-accent-light);
  margin-bottom: 1rem;
  display: block;
}

.wfc-audience__card h4 {
  font-family: var(--wf-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wf-text-1);
  margin-bottom: .5rem;
}

.wfc-audience__card p {
  font-size: .9rem;
  color: var(--wf-text-2);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.wfc-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.wfc-testimonial {
  background: var(--wfc-surface);
  border: 1px solid var(--wfc-border-2);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.wfc-testimonial__quote {
  font-size: 1.6rem;
  color: var(--wfc-accent);
  opacity: .4;
  margin-bottom: .5rem;
}

.wfc-testimonial p {
  font-size: .92rem;
  color: var(--wf-text-2);
  line-height: 1.7;
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════ */
.wfc-faq {
  max-width: 760px;
  margin: 2rem auto 0;
}

.wfc-faq__item {
  border: 1px solid var(--wfc-border-2);
  border-radius: 12px;
  margin-bottom: .8rem;
  background: var(--wfc-surface);
  overflow: hidden;
}

.wfc-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--wf-text-1);
  font-size: .95rem;
  list-style: none;
}

.wfc-faq__question::-webkit-details-marker { display: none; }

.wfc-faq__chevron {
  transition: transform 300ms ease;
  color: var(--wfc-accent-light);
  font-size: 1rem;
}

.wfc-faq__item[open] .wfc-faq__chevron {
  transform: rotate(180deg);
}

.wfc-faq__answer {
  padding: 0 1.6rem 1.2rem;
  color: var(--wf-text-2);
  font-size: .9rem;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════════════ */
.wfc-cta {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 3.5rem;
  text-align: center;
  background: linear-gradient(160deg, rgba(245, 158, 11, .08), rgba(249, 115, 22, .04));
  border: 1px solid rgba(245, 158, 11, .18);
}

.wfc-cta__bg {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}

.wfc-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .2;
}
.wfc-cta__orb--1 {
  width: 300px; height: 300px;
  background: var(--wfc-accent);
  top: -80px; right: -60px;
}
.wfc-cta__orb--2 {
  width: 220px; height: 220px;
  background: #f97316;
  bottom: -60px; left: -40px;
}

.wfc-cta__content {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto;
}

.wfc-cta h2,
.wfc-cta h3 {
  font-family: var(--wf-font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--wf-text-1);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.wfc-cta p {
  font-size: 1rem;
  color: var(--wf-text-2);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.wfc-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.wfc-cta__note {
  font-size: .78rem;
  color: var(--wf-text-3);
  margin-top: 1.5rem;
}


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .wfc-platform-grid,
  .wfc-compare__grid,
  .wfc-audience,
  .wfc-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .wfc-compare__col--featured {
    transform: none;
  }

  .wfc-dilemma {
    flex-direction: column;
  }

  .wfc-dilemma__vs {
    justify-content: center;
  }

  .wfc-kpi-strip {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .wfc-hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }

  .wfc-hero__title {
    font-size: 1.8rem;
  }

  .wfc-hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .wfc-platform-grid,
  .wfc-compare__grid,
  .wfc-audience,
  .wfc-testimonials {
    grid-template-columns: 1fr;
  }

  .wfc-block--highlight {
    padding: 1.5rem;
  }

  .wfc-timeline {
    padding-left: 2.5rem;
  }

  .wfc-timeline__content {
    padding: 1.2rem 1.5rem;
  }

  .wfc-cta {
    padding: 2rem 1.5rem;
  }

  .wfc-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .wfc-kpi-strip {
    flex-direction: column;
    gap: 1.5rem;
  }

  .wfc-kpi-strip__sep {
    width: 60px;
    height: 1px;
  }
}

/* ══════════════════════════════════════════════════
   WF BUILDER ↔ WFSC DIAGRAM
   ══════════════════════════════════════════════════ */
.wfc-diagram {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

/* ── Shared side ── */
.wfc-diagram__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1 1 0;
  max-width: 380px;
}

/* ── Screen (monitor) ── */
.wfc-diagram__screen {
  width: 100%;
  border-radius: 10px 10px 6px 6px;
  border: 1.5px solid rgba(167,139,250,.25);
  background: #0f0b1e;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(124,58,237,.18);
}
.wfc-diagram__screen-bar {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .75rem;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.wfc-diagram__screen-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wfc-diagram__screen-url {
  font-size: .6rem;
  color: rgba(255,255,255,.35);
  margin-left: .5rem;
  letter-spacing: .02em;
}
.wfc-diagram__screen-url strong { color: rgba(255,255,255,.6); }

/* ── Builder screen body ── */
.wfc-diagram__screen-body {
  display: flex;
  flex-direction: row;
  height: 210px;
}

/* Sidebar */
.wfc-diagram__screen-sidebar {
  width: 88px;
  flex-shrink: 0;
  background: rgba(255,255,255,.025);
  border-right: 1px solid rgba(167,139,250,.12);
  display: flex;
  flex-direction: column;
  padding: .5rem 0;
  gap: .1rem;
}
.wfc-diagram__sidebar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .6rem;
  font-size: .62rem;
  color: rgba(167,139,250,.55);
  border-radius: 4px;
  margin: 0 .3rem;
  cursor: default;
  transition: background .15s, color .15s;
}
.wfc-diagram__sidebar-item i { font-size: .85rem; }
.wfc-diagram__sidebar-item--active {
  background: rgba(124,58,237,.2);
  color: #c4b5fd;
}

/* Canvas area */
.wfc-diagram__screen-canvas {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .75rem;
  gap: .5rem;
}
.wfc-diagram__bpmn {
  width: 100%;
  max-width: 220px;
}
.wfc-diagram__canvas-label {
  font-size: .58rem;
  color: rgba(167,139,250,.4);
  text-align: center;
  letter-spacing: .04em;
}

/* Monitor stand */
.wfc-diagram__stand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.wfc-diagram__stand-neck {
  width: 16px;
  height: 18px;
  background: rgba(167,139,250,.12);
  border-left: 1.5px solid rgba(167,139,250,.15);
  border-right: 1.5px solid rgba(167,139,250,.15);
}
.wfc-diagram__stand-base {
  width: 72px;
  height: 7px;
  border-radius: 4px;
  background: rgba(167,139,250,.15);
}

/* ── Laptop ── */
.wfc-diagram__laptop {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wfc-diagram__laptop-screen {
  width: 90%;
  border-radius: 8px 8px 0 0;
  border: 1.5px solid rgba(167,139,250,.25);
  border-bottom: none;
  background: #0f0b1e;
  overflow: hidden;
  box-shadow: 0 -4px 30px rgba(124,58,237,.12);
}
.wfc-diagram__laptop-hinge {
  width: 100%;
  height: 6px;
  background: linear-gradient(180deg, rgba(167,139,250,.18) 0%, rgba(167,139,250,.06) 100%);
  border-left: 1.5px solid rgba(167,139,250,.2);
  border-right: 1.5px solid rgba(167,139,250,.2);
}
.wfc-diagram__laptop-base {
  width: 105%;
  height: 14px;
  border-radius: 0 0 6px 6px;
  background: rgba(167,139,250,.08);
  border: 1.5px solid rgba(167,139,250,.15);
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wfc-diagram__laptop-trackpad {
  width: 30px;
  height: 7px;
  border-radius: 3px;
  background: rgba(167,139,250,.15);
}

/* Login screen */
.wfc-diagram__login {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem .75rem;
  gap: .75rem;
  min-height: 210px;
  justify-content: center;
}
.wfc-diagram__login-logo {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  color: #c4b5fd;
}
.wfc-diagram__login-logo i { font-size: 1.25rem; color: #a78bfa; }
.wfc-diagram__login-form {
  width: 100%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.wfc-diagram__login-field {
  display: flex;
  flex-direction: column;
  gap: .18rem;
}
.wfc-diagram__login-field-label {
  font-size: .55rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(167,139,250,.5);
}
.wfc-diagram__login-field-input {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(167,139,250,.2);
  border-radius: 5px;
  padding: .3rem .55rem;
  font-size: .65rem;
  color: rgba(255,255,255,.55);
}
.wfc-diagram__login-btn {
  margin-top: .3rem;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: #fff;
  border-radius: 5px;
  padding: .38rem .6rem;
  font-size: .68rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
}
.wfc-diagram__login-badges {
  display: flex;
  gap: .5rem;
}
.wfc-diagram__login-badges span {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .55rem;
  color: rgba(167,139,250,.5);
  background: rgba(167,139,250,.06);
  border: 1px solid rgba(167,139,250,.12);
  border-radius: 20px;
  padding: .18rem .45rem;
}
.wfc-diagram__login-badges i { font-size: .72rem; }

/* ── Center arrow ── */
.wfc-diagram__arrow-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-bottom: 3.5rem; /* align with screen center */
}
.wfc-diagram__arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  min-width: 80px;
}
.wfc-diagram__arrow-chip {
  background: rgba(124,58,237,.2);
  border: 1px solid rgba(167,139,250,.3);
  border-radius: 20px;
  padding: .22rem .6rem;
  font-size: .6rem;
  font-weight: 700;
  color: #c4b5fd;
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.wfc-diagram__arrow-svg {
  width: 70px;
}
.wfc-diagram__arrow-sub {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: #a78bfa;
  text-transform: uppercase;
}

/* ── Labels below devices ── */
.wfc-diagram__label {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  max-width: 280px;
}
.wfc-diagram__label p {
  font-size: .75rem;
  color: var(--wf-text-2);
  line-height: 1.5;
  margin: 0;
}
.wfc-diagram__label-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: .28rem .7rem;
}
.wfc-diagram__label-badge--builder {
  background: rgba(124,58,237,.15);
  color: #c4b5fd;
  border: 1px solid rgba(167,139,250,.3);
}
.wfc-diagram__label-badge--wfsc {
  background: rgba(245,158,11,.12);
  color: var(--wfc-accent-light);
  border: 1px solid rgba(245,158,11,.25);
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .wfc-diagram {
    flex-direction: column;
    align-items: center;
  }
  .wfc-diagram__side { max-width: 360px; width: 100%; }
  .wfc-diagram__arrow-col { padding-bottom: 0; transform: rotate(90deg); }
}
