/* ===================================================================
 * binar.dev — Quick Fix landing
 * Layered ON TOP of the site's style.css. We deliberately reuse:
 *   – .page-hero (hero with grid pattern + accent line + heroCanvas)
 *   – .section / .section--dark / .section--photo (section backgrounds)
 *   – .contact-form / .form-control / .btn .btn-primary
 *     / .form-error-toast / .form-success
 * so this landing looks like a focused offshoot of the main site.
 * This file only adds the standalone top-bar and the landing-specific
 * blocks (tags, checks, pills, steps).
 * =================================================================== */

.fx-body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
}

/* === LAYOUT ======================================================= */
.fx-container { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 22px; }
.fx-container--form { max-width: 560px; }
@media (min-width: 720px) { .fx-container { padding: 0 28px; } }

/* Lift content above the .section--photo translucent overlay.
   style.css only does this for > .container, and the landing uses .fx-container,
   so without this the overlay washes out the "Why us" block (barely-visible text). */
.section--photo > .fx-container {
  position: relative;
  z-index: 1;
}

/* === HERO TYPOGRAPHY (within .page-hero) ========================== */
.fx-h1 {
  margin: 0 0 16px;
  font-size: 2.25rem; line-height: 1.06;
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--text-primary);
}
.fx-accent { color: var(--accent); }
.fx-h2 {
  margin: 0 0 20px;
  font-size: 1.2rem; font-weight: 600;
  color: var(--text-secondary); line-height: 1.4;
}
.fx-desc {
  margin: 0 0 24px;
  font-size: 1rem; line-height: 1.65;
  color: var(--text-secondary);
  max-width: 56ch;
}

/* Free-fix offer pill */
.fx-offer {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; margin: 0 0 24px;
  background: var(--accent-dim);
  color: var(--accent-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.95rem; font-weight: 500;
}
.fx-offer b { font-weight: 700; }
.fx-offer-emoji { font-size: 1.15rem; line-height: 1; }

/* Hero CTA — slightly larger than default .btn .btn-primary */
.fx-hero-cta { font-size: 1rem; padding: 16px 28px; }

/* === SECTION TITLES =============================================== */
.fx-h3 {
  margin: 16px 0 24px;
  font-size: 1.75rem; line-height: 1.15;
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* === TAG LIST (technologies) ===================================== */
.fx-tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.fx-tags li {
  font-family: var(--font-mono); font-size: 0.84rem; font-weight: 500;
  padding: 8px 13px;
  background: var(--bg-card); color: var(--text-primary);
  border: 1px solid var(--border-subtle); border-radius: var(--r-sm);
}

/* === CHECK LIST (problems) ======================================== */
.fx-checks { list-style: none; margin: 0; padding: 0; }
.fx-checks li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border-subtle);
  font-size: 1rem; color: var(--text-primary);
}
.fx-checks li:last-child { border-bottom: none; }
.fx-checks li::before {
  content: "✓"; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
}

/* === PILL LIST (why us) =========================================== */
.fx-pills { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.fx-pills li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px;
  background: var(--bg-card); color: var(--text-primary);
  border: 1px solid var(--border-subtle); border-radius: 30px;
  font-size: 0.92rem; font-weight: 600;
}
.fx-pill-ic { font-size: 1rem; line-height: 1; }

/* === STEPS ======================================================== */
.fx-steps { list-style: none; margin: 0; padding: 0; }
.fx-steps li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border-subtle);
}
.fx-steps li:last-child { border-bottom: none; }
.fx-step-n {
  font-family: var(--font-mono); font-size: 0.95rem; font-weight: 500;
  color: var(--accent);
  width: 38px; flex-shrink: 0; padding-top: 1px;
}
.fx-steps li > span:last-child {
  font-size: 1.02rem; color: var(--text-primary); line-height: 1.45;
}

/* === FOOTER ======================================================= */
.fx-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 28px 0;
  background: var(--bg-primary);
}
.fx-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.fx-bottom-links { display: flex; gap: 22px; }
.fx-bottom-links a {
  font-size: 0.92rem; font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
}
.fx-bottom-links a:hover { color: var(--accent); }
.fx-bottom-links i { color: var(--accent); }
.fx-bottom small { font-size: 0.85rem; color: var(--text-muted); }

/* === DESKTOP (>= 720) ============================================= */
@media (min-width: 720px) {
  .fx-h1 { font-size: 3.6rem; letter-spacing: -0.03em; }
  .fx-h2 { font-size: 1.35rem; margin-bottom: 22px; }
  .fx-desc { font-size: 1.05rem; }
  .fx-h3 { font-size: 2.25rem; }
  .fx-hero-cta { font-size: 1.05rem; padding: 18px 32px; }
  .fx-steps li > span:last-child { font-size: 1.08rem; }
  .fx-checks li { font-size: 1.05rem; padding: 16px 0; }
  .fx-tags li { font-size: 0.88rem; padding: 9px 14px; }
}

/* === REDUCED MOTION =============================================== */
@media (prefers-reduced-motion: reduce) {
  .fx-hero-cta { transition: none; }
}
