/* ===== Landing / Panel główny (public hero) ===== */
/* Dark charcoal theme with a green glow on the right, matching the mockup. */
body {
  background:
    radial-gradient(1100px 800px at 88% 12%, rgba(198, 255, 0, 0.09), transparent 55%),
    radial-gradient(900px 700px at 12% -10%, #262626, transparent 60%),
    linear-gradient(160deg, #191919, #101010) !important;
  background-attachment: fixed !important;
}

.lp { max-width: 1200px; margin: 0 auto; padding: 20px 28px 60px; overflow-x: clip; }
/* footer / nav anchors glide to their section instead of jumping */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
/* anchor targets stop below the sticky header, with a little breathing room */
.hiw, .sp, .kf { scroll-margin-top: 90px; }

/* ---------- top navigation (sticky full-width header) ---------- */
.lp-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--border); background: rgba(16, 16, 16, 0.3); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.lp-nav { max-width: 1200px; margin: 0 auto; padding: 12px 28px; display: flex; align-items: center; gap: 20px; }
.lp-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-size: 18px; font-weight: 800; letter-spacing: -0.3px; }
.lp-brand img { width: 30px; height: 30px; }
.lp-brand b { font-weight: 800; }
.lp-links { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.lp-links a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500; padding: 9px 14px; border-radius: 10px; transition: color .15s, background .15s; }
.lp-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.lp-links a.lp-cta { color: var(--text); background: rgba(0, 0, 0, 0.25); border: 1px solid rgba(255, 255, 255, 0.6); font-weight: 700; }
.lp-links a.lp-cta:hover { color: var(--accent); border-color: var(--accent); background: rgba(0, 0, 0, 0.25); box-shadow: 0 0 8px -2px rgba(198, 255, 0, 0.45); }
.lp-burger { display: none; }

/* ---------- hero ---------- */
.lp-hero { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr); gap: 36px; align-items: center; margin-top: 40px; }
.lp-copy h1 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.12; letter-spacing: -1px; margin: 0 0 20px; font-weight: 800; overflow-wrap: break-word; }
.lp-copy h1 .accent { color: var(--accent); }
.lp-copy h1 .nowrap { white-space: nowrap; }
.lp-copy p { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 440px; margin: 0 0 30px; }
.lp-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.lp-btn { text-decoration: none; font-size: 15px; font-weight: 700; padding: 13px 22px; border-radius: 12px; transition: transform .15s, box-shadow .15s, border-color .15s, background .15s; display: inline-flex; align-items: center; gap: 8px; }
.lp-btn.primary { background: rgba(0, 0, 0, 0.25); color: var(--text); border: 1px solid rgba(255, 255, 255, 0.6); }
.lp-btn.primary:hover { color: var(--accent); border-color: var(--accent); box-shadow: 0 0 8px -2px rgba(198, 255, 0, 0.45); }
.lp-btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.lp-btn.ghost:hover { border-color: rgba(198, 255, 0, 0.5); box-shadow: 0 0 16px -6px rgba(198, 255, 0, 0.4); }

/* ---------- hero artwork (right) ---------- */
.lp-art { position: relative; width: 100%; max-width: 560px; margin-left: auto; aspect-ratio: 560 / 470; -webkit-user-select: none; user-select: none; }

/* Glowing green light-trails + the large search badge, behind the panels. */
.art-trails { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.art-trail { fill: none; stroke: url(#lp-trail); stroke-width: 2.5; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(198, 255, 0, 0.7)); opacity: .9; }
.art-trail.thin { stroke-width: 1.5; opacity: .55; }

/* Reusable magnifier badge (the "search icon" that links things together). */
.mag { display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #1c1c1c, #0c0c0c); border: 1px solid rgba(198, 255, 0, 0.55); box-shadow: 0 0 22px -2px rgba(198, 255, 0, 0.55), inset 0 0 12px rgba(198, 255, 0, 0.12); }
.mag svg { width: 58%; height: 58%; stroke: var(--accent); }
.mag.xl { position: absolute; width: 74px; height: 74px; top: 4%; right: 2%; z-index: 4; }
.mag.link { position: absolute; width: 52px; height: 52px; left: 40%; top: 44%; z-index: 5; animation: mag-pulse 3s ease-in-out infinite; }
@keyframes mag-pulse { 0%, 100% { box-shadow: 0 0 22px -2px rgba(198, 255, 0, 0.5), inset 0 0 12px rgba(198, 255, 0, 0.12); } 50% { box-shadow: 0 0 30px 2px rgba(198, 255, 0, 0.75), inset 0 0 12px rgba(198, 255, 0, 0.18); } }

/* Perspective stage holding the two tilted panels. */
.art-stage { position: absolute; inset: 0; perspective: 1500px; }
.art-panel {
  position: absolute; background: rgba(24, 24, 24, 0.92);
  border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

/* Product list panel — tilted, made-up placeholder items. */
.panel-products { top: 6%; right: 0; width: 66%; padding: 14px; transform: rotateY(-20deg) rotateX(6deg); transform-origin: right center; z-index: 3; }
/* Search bar mirroring the store-overview one: dark field, magnifier on the left. */
.pp-search { position: relative; display: flex; align-items: center; padding: 11px 12px 11px 36px; border-radius: 12px; background: rgba(0, 0, 0, 0.25); border: 1px solid var(--border); margin-bottom: 12px; }
.pp-search .pp-ico { position: absolute; left: 12px; display: inline-flex; color: var(--muted); opacity: .85; pointer-events: none; }
.pp-search .pp-ico svg { width: 14px; height: 14px; stroke: currentColor; }
.pp-search .pp-ph { font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pp-row { display: flex; align-items: center; gap: 11px; padding: 9px 6px; border-radius: 10px; }
.pp-row + .pp-row { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.pp-row:nth-child(2) { background: rgba(198, 255, 0, 0.06); box-shadow: inset 0 0 0 1px rgba(198, 255, 0, 0.18); }
.pp-thumb { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; background: linear-gradient(135deg, #2a2a2a, #1a1a1a); border: 1px solid var(--border); }
.pp-row:nth-child(2) .pp-thumb { background: linear-gradient(135deg, rgba(198, 255, 0, 0.35), rgba(198, 255, 0, 0.08)); }
.pp-row:nth-child(4) .pp-thumb { background: linear-gradient(135deg, #333, #222); }
.pp-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.pp-lines i { height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.14); display: block; }
.pp-lines i.sub { height: 6px; background: rgba(255, 255, 255, 0.07); }
.pp-price { font-size: 11.5px; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; background: rgba(255, 255, 255, 0.06); padding: 3px 8px; border-radius: 7px; flex-shrink: 0; }

/* Chart panel — the search bar + chart, joined by the magnifier badge above. */
.panel-chart { bottom: 2%; left: 0; width: 56%; padding: 14px 15px 12px; transform: rotateY(14deg) rotateX(4deg); transform-origin: left center; z-index: 4; }
.pc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.pc-title { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.pc-searchbar { display: flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 9px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(198, 255, 0, 0.28); color: var(--text); font-size: 11px; margin-bottom: 12px; }
.pc-searchbar svg { width: 13px; height: 13px; stroke: var(--accent); flex-shrink: 0; }
.pc-searchbar .cursor { width: 1px; height: 12px; background: var(--accent); margin-left: -2px; animation: blink 1.1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.pc-chart { width: 100%; height: auto; display: block; overflow: visible; }
.pc-xrow { display: flex; justify-content: space-between; margin-top: 6px; }
.pc-xrow i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }

/* on load: the chart draws itself (line stroke + area wipe), product tiles pop in one by one */
.pc-line { stroke-dasharray: 1; stroke-dashoffset: 1; animation: pc-draw 1.5s cubic-bezier(.4, 0, .2, 1) .7s forwards; }
@keyframes pc-draw { to { stroke-dashoffset: 0; } }
.pc-area { clip-path: inset(0 100% 0 0); animation: pc-fill 1.5s cubic-bezier(.4, 0, .2, 1) .7s forwards; }
@keyframes pc-fill { to { clip-path: inset(0 0 0 0); } }
.pp-row { opacity: 0; transform: translateY(9px) scale(.97); animation: pp-pop .5s cubic-bezier(.22, 1, .36, 1) forwards; }
.pp-row:nth-child(2) { animation-delay: .8s; }
.pp-row:nth-child(3) { animation-delay: .92s; }
.pp-row:nth-child(4) { animation-delay: 1.04s; }
.pp-row:nth-child(5) { animation-delay: 1.16s; }
@keyframes pp-pop { to { opacity: 1; transform: none; } }

/* entrance */
.lp-copy > *, .lp-art { opacity: 0; transform: translateY(14px); animation: lp-in .6s cubic-bezier(.22, 1, .36, 1) forwards; }
.lp-copy h1 { animation-delay: .05s; }
.lp-copy p { animation-delay: .13s; }
.lp-actions { animation-delay: .21s; }
.lp-art { animation-delay: .18s; transform: translateY(20px) scale(.98); }
@keyframes lp-in { to { opacity: 1; transform: none; } }

/* ---------- "Jak to działa?" ---------- */
.hiw { margin-top: 15vh; text-align: center; }
.hiw-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.5px; margin: 0 0 38px; }
.hiw-steps { display: flex; align-items: flex-start; justify-content: center; gap: 6px; }
.hiw-step { flex: 1 1 0; max-width: 210px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
/* no tile, no border — just the icon with its number badge */
.hiw-ico { position: relative; display: inline-grid; place-items: center; }
.hiw-ico img { width: 50px; height: 50px; object-fit: contain; display: block; }
.hiw-num { position: absolute; top: -7px; left: -16px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-size: 12px; font-weight: 800; display: grid; place-items: center; }
.hiw-cap { font-size: 13.5px; line-height: 1.4; color: var(--muted); max-width: 165px; }
.hiw-arrow { flex: 0 0 auto; align-self: flex-start; margin-top: 13px; color: var(--muted); opacity: .45; }
.hiw-arrow svg { width: 20px; height: 20px; display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
/* reveal each step in sequence once the section scrolls into view (JS adds .anim then .in) */
.hiw.anim .hiw-step { opacity: 0; transform: translateY(8px); transition: opacity .7s ease-out, transform .7s ease-out; }
.hiw.anim .hiw-arrow { opacity: 0; transition: opacity .7s ease-out; }
.hiw.anim.in .hiw-step { opacity: 1; transform: none; }
.hiw.anim.in .hiw-arrow { opacity: 1; }
.hiw.anim.in .hiw-steps > *:nth-child(2) { transition-delay: .09s; }
.hiw.anim.in .hiw-steps > *:nth-child(3) { transition-delay: .18s; }
.hiw.anim.in .hiw-steps > *:nth-child(4) { transition-delay: .27s; }
.hiw.anim.in .hiw-steps > *:nth-child(5) { transition-delay: .36s; }
.hiw.anim.in .hiw-steps > *:nth-child(6) { transition-delay: .45s; }
.hiw.anim.in .hiw-steps > *:nth-child(7) { transition-delay: .54s; }
@media (max-width: 720px) {
  .hiw-steps { flex-direction: column; align-items: center; gap: 22px; }
  .hiw-step { max-width: 300px; }
  /* stacked layout: center each arrow under its step and point it downward */
  .hiw-arrow { margin-top: 0; align-self: center; transform: rotate(90deg); }
}

/* ---------- "Kluczowe funkcje" ---------- */
.kf { margin-top: 14vh; }
.kf-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.5px; margin: 0 0 28px; }
.kf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kf-card { display: flex; flex-direction: column; gap: 9px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: 18px; padding: 22px 20px; transition: border-color .2s, background .2s, box-shadow .2s; }
.kf-card:hover { border-color: rgba(198, 255, 0, 0.4); background: rgba(255, 255, 255, 0.05); box-shadow: 0 10px 26px -14px rgba(0, 0, 0, 0.7); }
/* on-load / on-scroll reveal: cards fade + rise in sequence (JS adds .anim then .in) */
.kf.anim .kf-card { opacity: 0; }
.kf.anim.in .kf-card { animation: kf-reveal .7s ease-out both; }
@keyframes kf-reveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.kf.anim.in .kf-grid > .kf-card:nth-child(2) { animation-delay: .1s; }
.kf.anim.in .kf-grid > .kf-card:nth-child(3) { animation-delay: .2s; }
.kf.anim.in .kf-grid > .kf-card:nth-child(4) { animation-delay: .3s; }
.kf-ico { color: var(--accent); }
.kf-ico svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.kf-h { font-size: 16px; font-weight: 700; margin: 6px 0 0; }
.kf-desc { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .kf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .kf-grid { grid-template-columns: 1fr; } }

/* ---------- "Sekcje Panelu" ---------- */
.sp { margin-top: 14vh; }
.sp-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.5px; margin: 0 0 8px; }
.sp-note { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0 0 30px; max-width: 660px; }
.sp-list { display: flex; flex-direction: column; gap: 52px; }
.sp-item { margin: 0; }
.sp-cap { margin-bottom: 16px; max-width: 660px; }
.sp-cap h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.sp-cap p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }
.sp-shot { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: #0d0d0d; box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8); transition: border-color .2s; }
.sp-shot:hover { border-color: rgba(198, 255, 0, 0.32); }
.sp-shot img { display: block; width: 100%; height: auto; }
/* on-scroll reveal (reuses kf-reveal keyframe) */
.sp.anim .sp-item { opacity: 0; }
.sp.anim.in .sp-item { animation: kf-reveal .7s ease-out both; }
.sp.anim.in .sp-list > .sp-item:nth-child(2) { animation-delay: .12s; }

/* ---------- footer ---------- */
.lp-footer { border-top: 1px solid var(--border); margin-top: 12vh; }
.lp-footer-in { max-width: 1200px; margin: 0 auto; padding: 26px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.lp-foot-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-size: 17px; font-weight: 800; letter-spacing: -0.3px; }
.lp-foot-brand img { width: 28px; height: 28px; }
.lp-foot-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.lp-foot-links a { text-decoration: none; color: var(--muted); font-size: 14px; padding: 8px 12px; border-radius: 9px; transition: color .15s, background .15s; }
.lp-foot-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
@media (max-width: 560px) { .lp-footer-in { flex-direction: column; align-items: flex-start; gap: 12px; } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .lp-hero { grid-template-columns: 1fr; gap: 30px; margin-top: 26px; }
  .lp-art { max-width: 460px; margin: 0 auto; }
  .lp-copy p { max-width: none; }
  .hiw, .sp, .kf { margin-top: 11vh; }
}
@media (max-width: 640px) {
  .lp { padding: 16px 18px 48px; }
  /* long marketing phrase must be allowed to wrap on phones */
  .lp-copy h1 .nowrap { white-space: normal; }
  .lp-art { max-width: 400px; }
  .lp-links { position: fixed; top: 62px; right: 14px; left: 14px; z-index: 90;
    flex-direction: column; align-items: stretch; gap: 6px; padding: 10px;
    background: rgba(20, 20, 20, 0.97); border: 1px solid var(--border); border-radius: 14px;
    box-shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.8); transform-origin: top;
    transform: scaleY(0); opacity: 0; transition: transform .22s ease, opacity .22s ease; }
  .lp-links.open { transform: scaleY(1); opacity: 1; }
  .lp-links a { padding: 12px 14px; }
  .lp-burger { display: inline-flex; margin-left: auto; flex-direction: column; gap: 5px;
    width: 42px; height: 38px; align-items: center; justify-content: center; padding: 0;
    background: transparent; border: 1px solid var(--border); border-radius: 10px; cursor: pointer; }
  .lp-burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .2s; }
  .lp-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .lp-burger.open span:nth-child(2) { opacity: 0; }
  .lp-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 400px) {
  .lp-art { max-width: 320px; }
  .lp-btn { width: 100%; justify-content: center; }
  .hiw, .sp, .kf { margin-top: 9vh; }
  .kf-card { padding: 18px 16px; }
}
/* Laptops: desktop layout but a short viewport. Let the hero (title + artwork)
   fill the first screen, vertically centered, so only it shows on load and
   „Jak to działa?" is pushed below the fold. Monitors (taller) and phones
   (≤900px) are excluded and keep their current layout. */
@media (min-width: 901px) and (max-height: 900px) {
  .lp-hero { min-height: calc(100vh - 96px); margin-top: 0; align-content: center; }
  .hiw { margin-top: 12vh; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-copy > *, .lp-art, .mag.link, .pc-searchbar .cursor, .pp-row { animation: none; opacity: 1; transform: none; }
  .pc-line { animation: none; stroke-dashoffset: 0; }
  .pc-area { animation: none; clip-path: none; }
}

/* ===== New landing sections ===== */
.lp-trust { list-style: none; display: flex; gap: 18px; flex-wrap: wrap; margin: 16px 0 0; padding: 0; }
.lp-trust li { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.lp-trust li::before { content: "✓"; color: var(--accent); font-weight: 800; }

/* Trust/stats strip */
.ts { margin-top: 11vh; }
.ts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ts-item { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: 18px; padding: 24px 22px; }
.ts-big { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -1px; color: var(--accent); margin-bottom: 8px; }
.ts-item p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.ts.anim .ts-item { opacity: 0; }
.ts.anim.in .ts-item { animation: kf-reveal .7s ease-out both; }
.ts.anim.in .ts-grid > .ts-item:nth-child(2) { animation-delay: .1s; }
.ts.anim.in .ts-grid > .ts-item:nth-child(3) { animation-delay: .2s; }
@media (max-width: 760px) { .ts-grid { grid-template-columns: 1fr; } }

/* Integrations */
.integ { margin-top: 14vh; }
.integ-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.5px; margin: 0 0 8px; }
.integ-note { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0 0 26px; max-width: 660px; }
.integ-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.integ-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-width: 132px; padding: 18px 22px; border: 1px solid var(--border); border-radius: 14px;
  background: rgba(255, 255, 255, 0.03); font-size: 15px; font-weight: 700; letter-spacing: -0.2px;
  transition: border-color .2s, background .2s, transform .2s;
}
.integ-tile:hover { border-color: rgba(198, 255, 0, 0.4); background: rgba(255, 255, 255, 0.05); transform: translateY(-2px); }
.integ-tile span { font-size: 11.5px; font-weight: 600; color: var(--muted); }
.integ-checks { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; margin: 24px 0 0; padding: 0; }
.integ-checks li { font-size: 13.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.integ-checks li::before { content: "✓"; color: var(--accent); font-weight: 800; }
.integ.anim .integ-tile { opacity: 0; }
.integ.anim.in .integ-tile { animation: kf-reveal .6s ease-out both; }
.integ.anim.in .integ-grid > .integ-tile:nth-child(2) { animation-delay: .06s; }
.integ.anim.in .integ-grid > .integ-tile:nth-child(3) { animation-delay: .12s; }
.integ.anim.in .integ-grid > .integ-tile:nth-child(4) { animation-delay: .18s; }
.integ.anim.in .integ-grid > .integ-tile:nth-child(5) { animation-delay: .24s; }
.integ.anim.in .integ-grid > .integ-tile:nth-child(6) { animation-delay: .3s; }
.integ.anim.in .integ-grid > .integ-tile:nth-child(7) { animation-delay: .36s; }

/* Why dCoodle */
.why { margin-top: 14vh; }
.why-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.5px; margin: 0 0 26px; }
.why.anim .kf-card { opacity: 0; }
.why.anim.in .kf-card { animation: kf-reveal .7s ease-out both; }
.why.anim.in .kf-grid > .kf-card:nth-child(2) { animation-delay: .1s; }
.why.anim.in .kf-grid > .kf-card:nth-child(3) { animation-delay: .2s; }
.why.anim.in .kf-grid > .kf-card:nth-child(4) { animation-delay: .3s; }

/* FAQ */
.faq { margin-top: 14vh; max-width: 760px; }
.faq-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.5px; margin: 0 0 20px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; background: rgba(255, 255, 255, 0.03); margin-bottom: 10px; transition: border-color .2s; }
.faq-item[open], .faq-item:hover { border-color: rgba(198, 255, 0, 0.35); }
.faq-item summary { cursor: pointer; list-style: none; padding: 16px 18px; font-size: 15px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 20px; font-weight: 700; line-height: 1; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; padding: 0 18px 16px; }

/* Final CTA */
.cta-final { margin-top: 14vh; text-align: center; border: 1px solid var(--border); border-radius: 22px; padding: 52px 28px; background: radial-gradient(ellipse at 50% 0%, rgba(198, 255, 0, 0.08), transparent 65%), rgba(255, 255, 255, 0.02); }
.cta-final h2 { font-size: clamp(22px, 3.2vw, 32px); font-weight: 800; letter-spacing: -0.6px; margin: 0 0 10px; }
.cta-final p { font-size: 14.5px; color: var(--muted); margin: 0 auto 24px; max-width: 520px; line-height: 1.55; }
