/* FLEXIBLE-1 (cards + CTA) */
.section--flexible-1{
  background:#ffffff;
  padding:8px 0 28px;
}

/* grid for the two cards */
.tfq .tfq-grid{
  display:grid; gap:16px;
  grid-template-columns:1fr 1fr;
  margin-bottom:12px;
}
@media (max-width:900px){ .tfq .tfq-grid{ grid-template-columns:1fr; } }

/* card base + hover polish */
.tfq .card{
  position:relative;
  overflow:hidden;                      /* clip sa rounded edges */
  background-clip:padding-box;
  border-radius:12px;
  box-shadow:0 6px 14px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.05);
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.tfq .tfq-card{ padding:14px 16px; }

/* hover sweep (per card) */
.tfq .tfq-card::before{
  content:""; position:absolute; inset:-2px; pointer-events:none;
  transform:translateX(-120%);
  background:linear-gradient(115deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.75) 50%, rgba(255,255,255,0) 70%);
  mix-blend-mode:screen; opacity:0;
}
.tfq .tfq-card:hover::before{ opacity:1; animation:tfq-sweep 1.05s ease; }
@keyframes tfq-sweep{ to{ transform:translateX(120%);} }

.tfq .tfq-card:hover{
  transform:translateY(-2px) scale(1.01);
  background:#f6fbf8;
  border-color:#cfe9dc;
  box-shadow:0 18px 42px rgba(15,23,42,.10), 0 4px 12px rgba(15,23,42,.07);
}

/* headings + SVG icon (no emojis) */
.tfq .tfq-h{
  margin:0 0 10px; font-weight:900; color:#0f5a22; font-size:16px;
  display:flex; align-items:center; gap:8px;
}
.tfq .tfq-ico{ display:inline-grid; place-items:center; width:22px; height:22px; color:#0c612c; }
.tfq .tfq-ico svg{ width:20px; height:20px; }

/* numbered steps (left card) */
.tfq .tfq-steps{
  list-style:none; margin:0; padding:0; display:grid; gap:10px;
  counter-reset: step;                     /* ← reset counter per list */
}
.tfq .tfq-steps li{
  display:flex; align-items:flex-start; gap:10px;
  counter-increment: step;                 /* ← increment per item */
}
.tfq .tfq-steps .num{
  width:24px; height:24px; border-radius:999px;
  border:2px solid #0c612c; color:#0c612c;
  display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:12px; flex:0 0 24px; position:relative;
}
.tfq .tfq-steps .num::after{
  content:counter(step);                   /* ← show current step */
}
.tfq .tfq-steps .txt strong{ display:block; color:#0f172a; font-size:13.2px; }
.tfq .tfq-steps .txt span{ color:#5b6b78; font-size:12.4px; }

/* why choose (right card) */
.tfq .tfq-why{ list-style:none; margin:2px 0 0; padding:0; display:grid; gap:12px; }
.tfq .tfq-why li{ display:flex; gap:10px; align-items:flex-start; }
.tfq .tfq-why .ico{ color:#0c612c; width:22px; height:22px; display:flex; align-items:center; justify-content:center; flex:0 0 22px; }
.tfq .tfq-why .ico svg{ width:18px; height:18px; stroke:currentColor; fill:none; }
.tfq .tfq-why .txt strong{ display:block; color:#0f172a; font-size:13.2px; }
.tfq .tfq-why .txt span{ color:#5b6b78; font-size:12.4px; }

/* ---------------- CTA banner (glass + FULL-WIDTH sheen) ---------------- */
.tfq .tfq-cta{
  position:relative;
  overflow:hidden;                      /* clip sheen */
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between;
  gap:12px; padding:16px; border:none;
  border-radius:12px;
  background:linear-gradient(90deg, #0c3f20 0%, #0c3f20 45%, #e8efea 100%);
  color:#eaf7f0;
  --sheen-time: 2.4s;                   /* << slower, adjust here if needed */
}

/* subtle glass */
.tfq .tfq-cta::before{
  content:""; position:absolute; inset:0; pointer-events:none; border-radius:inherit;
  background:linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.03) 35%, rgba(255,255,255,.14) 60%, rgba(255,255,255,.05) 100%);
  opacity:.55;
}

/* WIDE sheen that always crosses the entire card */
.tfq .tfq-cta::after{
  content:"";
  position:absolute;
  left:-60%;               /* oversize + centered so rotation won’t crop */
  top:-110%;
  width:220%;
  height:300%;
  border-radius:24px;
  transform:translateX(-70%) rotate(18deg);     /* start far left */
  transform-origin:center;
  background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.60) 50%, rgba(255,255,255,0) 100%);
  mix-blend-mode:screen;
  pointer-events:none;
  opacity:0;
}
.tfq .tfq-cta:hover::after{
  opacity:1;
  animation:tfq-sheen-wide var(--sheen-time) ease-in-out forwards;
}
@keyframes tfq-sheen-wide{
  to { transform:translateX(170%) rotate(18deg); }  /* travels past the right edge */
}

.tfq .tfq-cta .cta-text h3{ margin:0 0 4px; font-weight:900; font-size:18px; color:#eaf7f0; }
.tfq .tfq-cta .cta-text p{ margin:0; font-size:13px; color:#d7ece2; }
.tfq .tfq-cta .cta-actions{ display:flex; gap:10px; align-items:center; }
.tfq .tfq-cta .btn{ min-width:200px; justify-content:center; }
.tfq .tfq-cta .btn-compact{ padding:8px 12px; border-radius:8px; font-size:12.4px; }
.tfq .tfq-cta .tfq-call{ display:inline-flex; gap:6px; align-items:center; color:#0c3f20; background:#e7f4ed; border-color:transparent; }
.tfq .tfq-cta .tfq-call svg{ width:14px; height:14px; }

@media (max-width:720px){
  .tfq .tfq-cta{ background:linear-gradient(180deg, #0c3f20 0%, #e8efea 100%); }
  .tfq .tfq-cta .btn{ width:100%; min-width:0; }
}

/* motion safety */
@media (prefers-reduced-motion:reduce){
  .tfq .tfq-card::before,
  .tfq .tfq-cta::after{ animation:none !important; transform:none !important; opacity:0 !important; }
}
