/* =====================================================
   ALKONIC FILTERS PAGE — filters.css
   All selectors scoped under .fl-page
   Prefix: fl-  (no conflicts with ws- or global styles)
===================================================== */

/* ── ROOT & RESET ── */
.fl-page {
  font-family: 'DM Sans', sans-serif;
  background: #080808;
  color: #fff;
  overflow-x: hidden;
  padding-top: 80px;
}
.fl-page *, .fl-page *::before, .fl-page *::after { box-sizing: border-box; }
.fl-page h1, .fl-page h2, .fl-page h3 { font-family: 'Playfair Display', serif; margin: 0; }
.fl-page h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 700; line-height: 1.12; color: #fff; }
.fl-page h2 { font-size: clamp(1.65rem, 2.8vw, 2.5rem); font-weight: 600; line-height: 1.2; color: #fff; }
.fl-page h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.fl-page p { color: rgba(255,255,255,0.65); line-height: 1.68; margin: 0;margin:20px 0px; }
.fl-page strong { color: rgba(255,255,255,0.88); }
.fl-page a { text-decoration: none; }

/* ── LAYOUT ── */
.fl-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.fl-section { padding: 96px 0; }

/* ── TOKENS ── */
.fl-gold-text {
  background: linear-gradient(135deg, #E4C97A, #C9A84C, #8B6F32);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fl-section-tag {
  display: inline-block; font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: #C9A84C;
  border: 1px solid rgba(201,168,76,0.3); padding: 6px 16px;
  border-radius: 100px; margin-bottom: 18px;
}
.fl-divider { width: 50px; height: 2px; background: linear-gradient(90deg, #C9A84C, transparent); margin: 18px 0 36px; }
.fl-divider.center { margin-left: auto; margin-right: auto; }

/* ── REVEAL ── */
.fl-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fl-reveal.fl-visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.fl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.87rem; font-weight: 600;
  cursor: pointer; transition: 0.3s ease; text-decoration: none;
  border: none; letter-spacing: 0.3px;
}
.fl-btn-primary {
  background: linear-gradient(135deg, #E4C97A, #C9A84C);
  color: #000; box-shadow: 0 4px 28px rgba(201,168,76,0.25);
}
.fl-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(201,168,76,0.38); }
.fl-btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.18); }
.fl-btn-secondary:hover { border-color: #C9A84C; color: #C9A84C; transform: translateY(-2px); }

/* =====================================================
   1. HERO
===================================================== */
.fl-hero {
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: #080808;
}
.fl-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1600&q=75&auto=format&fit=crop');
  background-size: cover; background-position: right;
  
}
.fl-hero-overlay {

}
.fl-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 2; width: 100%;
  padding: 80px 0 60px;
}
.fl-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.22);
  border-radius: 100px; padding: 7px 18px; margin-bottom: 22px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #C9A84C;
}
.fl-eyebrow-dot {
  width: 6px; height: 6px; background: #C9A84C;
  border-radius: 50%; animation: fl-pulse 2s infinite;
}
@keyframes fl-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)} }

.fl-hero-tagline {
  font-size: 0.95rem; color: rgba(255,255,255,0.5);
  font-style: italic; border-left: 2px solid #8B6F32;
  padding-left: 14px; margin: 20px 0 28px; line-height: 1.55;
}
.fl-hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}
.fl-tag {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.04); border: 1px solid #1e1e1e;
  border-radius: 8px; padding: 9px 14px;
  font-size: 0.77rem; font-weight: 500; color: rgba(255,255,255,0.65);
  transition: 0.22s ease;
}
.fl-tag:hover { border-color: rgba(201,168,76,0.22); background: rgba(255,255,255,0.07); }
.fl-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero right */
.fl-filter-types-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 20px;
}
.fl-type-card {
  background: #141414; border: 1px solid #1e1e1e;
  border-radius: 14px; padding: 20px 16px;
  transition: 0.3s ease; text-decoration: none;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
}
.fl-type-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.fl-type-featured { border-color: rgba(201,168,76,0.25) !important; background: linear-gradient(145deg, #1a1510, #111); }
.fl-type-icon {
  width: 44px; height: 44px; border-radius: 10px; border: 1px solid;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.fl-type-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; }
.fl-type-desc { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.fl-type-badge {
  position: absolute; top: 10px; right: 10px;
  background: linear-gradient(135deg, #E4C97A, #C9A84C);
  color: #000; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 5px;
}
.fl-hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.fl-hstat { background: #141414; border: 1px solid #1e1e1e; border-radius: 10px; padding: 14px 10px; text-align: center; }
.fl-hstat-val { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; display: block; line-height: 1; }
.fl-hstat-label { font-size: 0.6rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 5px; display: block; }

/* =====================================================
   2. PROBLEM SECTION
===================================================== */
.fl-problem { background: #111; border-top: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e; }
.fl-problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.fl-problem-items { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.fl-pi {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid #1e1e1e;
  border-radius: 12px; padding: 16px 18px; transition: 0.25s ease;
}
.fl-pi:hover { border-color: rgba(201,168,76,0.18); }
.fl-pi-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.fl-pi strong { display: block; font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.fl-pi p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom:0; }

.fl-problem-visual { display: flex; flex-direction: column; gap: 14px; }
.fl-problem-img-main { border-radius: 18px; overflow: hidden; border: 1px solid rgba(201,168,76,0.12); position: relative; }
.fl-problem-img-main img { width: 100%; object-fit: cover; display: block; transition: filter 0.4s ease; }
.fl-problem-img-main:hover img {  }
.fl-problem-img-overlay { display:none !important; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(8,8,8,0.7)); }
.fl-problem-img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fl-problem-img-small { border-radius: 12px; overflow: hidden; border: 1px solid #1e1e1e; position: relative; }
.fl-problem-img-small img { width: 100%; height: 120px; object-fit: cover; display: block; filter: brightness(0.65); }
.fl-problem-img-small span { position: absolute; bottom: 8px; left: 10px; font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.8); }

/* =====================================================
   3. FILTER BLOCKS — shared
===================================================== */
.fl-filters { background: #080808; }

.fl-filter-block { margin-bottom: 80px; }
.fl-filter-block:last-child { margin-bottom: 0; }

.fl-filter-block-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.fl-filter-block-reverse .fl-filter-block-inner { direction: rtl; }
.fl-filter-block-reverse .fl-filter-block-inner > * { direction: ltr; }

/* Filter visual side */
.fl-filter-visual { display: flex; flex-direction: column; gap: 16px; }
.fl-filter-img-wrap {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  position: relative;
}
.fl-filter-img-wrap img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.fl-filter-img-wrap:hover img { transform: scale(1.04); }

/* theme tints */
.fl-sand-theme { border-color: rgba(180,140,60,0.2); }
.fl-carbon-theme { border-color: rgba(80,80,80,0.3); }
.fl-iron-theme { border-color: rgba(185,28,28,0.2); }
.fl-triple-theme { border-color: rgba(201,168,76,0.25); }

.fl-filter-img-badge {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: rgba(8,8,8,0.88); border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px; padding: 10px 16px; backdrop-filter: blur(10px);
}
.fl-fib-label { font-size: 0.6rem; color: #C9A84C; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 3px; }
.fl-fib-val { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); }

.fl-filter-product-img {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid #1e1e1e; height: 130px;
}
.fl-filter-product-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.55) saturate(0.6); }
.fl-filter-product-label {
  position: absolute; bottom: 10px; left: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* Filter content side */
.fl-filter-series-badge {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.fl-sand-badge { background: rgba(180,140,60,0.12); color: #C9A84C; border: 1px solid rgba(180,140,60,0.25); }
.fl-carbon-badge { background: rgba(80,80,80,0.2); color: rgba(255,255,255,0.7); border: 1px solid rgba(100,100,100,0.3); }
.fl-iron-badge { background: rgba(185,28,28,0.12); color: #F87171; border: 1px solid rgba(185,28,28,0.25); }
.fl-triple-badge { background: rgba(201,168,76,0.12); color: #E4C97A; border: 1px solid rgba(201,168,76,0.3); }

.fl-filter-intro { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 14px 0 28px; }

.fl-filter-benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.fl-fb-item { display: flex; align-items: flex-start; gap: 14px; }
.fl-fb-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.fl-fb-item strong { display: block; font-size: 0.87rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 3px; font-family: 'DM Sans', sans-serif; }
.fl-fb-item p { font-size: 0.77rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* Models table inside filter block */
.fl-models-table {
  border: 1px solid #1e1e1e; border-radius: 12px; overflow: hidden;
}
.fl-models-table-header {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  background: linear-gradient(135deg, #1a1510, #111);
  padding: 11px 16px;
}
.fl-models-table-header span { font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.fl-models-table-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  padding: 12px 16px; border-top: 1px solid #1e1e1e;
  font-size: 0.8rem; color: rgba(255,255,255,0.65); transition: 0.2s ease;
}
.fl-models-table-row:hover { background: rgba(255,255,255,0.02); }
.fl-row-alt { background: rgba(255,255,255,0.015); }
.fl-model-name-cell { font-weight: 700; color: rgba(255,255,255,0.88); }
.fl-warranty-cell { color: #C9A84C; font-weight: 600; }

/* TripleShield triple table */
.fl-triple-table .fl-models-table-header,
.fl-triple-table .fl-models-table-row { grid-template-columns: 1.4fr 1fr 1fr 0.8fr; }

/* TripleShield protection display */
.fl-triple-protection {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid #1e1e1e;
  border-radius: 14px; padding: 20px; margin-bottom: 24px;
}
.fl-tp-item { flex: 1; text-align: center; }
.fl-tp-num { font-size: 0.6rem; font-weight: 700; letter-spacing: 1px; color: rgba(201,168,76,0.5); text-transform: uppercase; margin-bottom: 6px; }
.fl-tp-icon { font-size: 1.6rem; margin-bottom: 8px; }
.fl-tp-name { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.88); margin-bottom: 4px; }
.fl-tp-desc { font-size: 0.68rem; color: rgba(255,255,255,0.38); line-height: 1.4; }
.fl-tp-connector { font-size: 1.4rem; font-weight: 700; color: #C9A84C; flex-shrink: 0; }

/* TripleShield float badge */
.fl-triple-badge-float {
  background: linear-gradient(145deg, #1a1510, #111);
  border: 1px solid rgba(201,168,76,0.25); border-radius: 14px;
  padding: 18px 20px; text-align: center;
}
.fl-tbf-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #E4C97A; line-height: 1; }
.fl-tbf-sub { font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin: 6px 0 12px; }
.fl-tbf-dots { display: flex; gap: 8px; justify-content: center; }
.fl-tbf-dots span { font-size: 0.65rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; color: #fff; letter-spacing: 0.5px; }

/* TripleShield block accent */
.fl-tripleshield-block { border-top: 1px solid rgba(201,168,76,0.1); padding-top: 80px; }
.fl-triple-img-badge { background: rgba(201,168,76,0.1) !important; border-color: rgba(201,168,76,0.3) !important; }

/* =====================================================
   4. CHOOSER — WHICH FILTER?
===================================================== */
.fl-chooser { background: #111; border-top: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e; }
.fl-chooser-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.fl-chooser-card {
  display: flex; align-items: stretch; gap: 0;
  background: #141414; border: 1px solid #1e1e1e; border-radius: 16px;
  overflow: hidden; transition: 0.3s ease;
}
.fl-chooser-card:hover { border-color: rgba(201,168,76,0.22); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.fl-chooser-featured { border-color: rgba(201,168,76,0.22) !important; background: linear-gradient(145deg,#1a1510,#111); }
.fl-cc-problem { flex: 1; padding: 22px 18px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.fl-cc-icon { font-size: 1.6rem; }
.fl-cc-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.45; }
.fl-cc-arrow { display: flex; align-items: center; padding: 0 6px; color: rgba(255,255,255,0.15); font-size: 1.2rem; flex-shrink: 0; }
.fl-cc-solution { width: 175px; flex-shrink: 0; border-left: 1px solid #1e1e1e; padding: 18px 16px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.fl-cc-sol-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; }
.fl-cc-sol-desc { font-size: 0.7rem; color: rgba(255,255,255,0.38); line-height: 1.4; }
.fl-cc-link { font-size: 0.72rem; font-weight: 600; color: #C9A84C; margin-top: 6px; display: inline-block; transition: 0.2s; }
.fl-cc-link:hover { letter-spacing: 0.3px; }

.fl-sand-solution { background: rgba(180,140,60,0.05); }
.fl-carbon-solution { background: rgba(50,50,50,0.2); }
.fl-iron-solution { background: rgba(185,28,28,0.05); }
.fl-triple-solution { background: rgba(201,168,76,0.07); }

/* =====================================================
   5. ADVANTAGE SECTION
===================================================== */
.fl-advantage {
  background: linear-gradient(145deg,#0d0b06,#0e0e0e);
  border-top: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e;
}
.fl-advantage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.fl-adv-steps { display: flex; flex-direction: column; margin-top: 8px; }
.fl-adv-step { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid #1e1e1e; transition: 0.25s ease; }
.fl-adv-step:first-child { padding-top: 0; }
.fl-adv-step:last-child { border-bottom: none; padding-bottom: 0; }
.fl-adv-step:hover .fl-adv-num { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.35); }
.fl-adv-num {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,0.04); border: 1px solid #1e1e1e;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #C9A84C;
  transition: 0.3s ease;
}
.fl-adv-step h3 { font-size: 0.92rem; font-weight: 700; color: #fff; margin-bottom: 5px; font-family: 'DM Sans', sans-serif; }
.fl-adv-step p { font-size: 0.78rem; color: rgba(255,255,255,0.38); line-height: 1.6; }

.fl-adv-visual { position: relative; }
.fl-adv-main-img { border-radius: 20px; overflow: hidden; border: 1px solid rgba(201,168,76,0.12); box-shadow: 0 40px 90px rgba(0,0,0,0.7); }
.fl-adv-main-img img { width: 100%;  object-fit: cover; display: block; }

.fl-adv-cert-float {
  position: absolute; top: 24px; right: -16px;
  background: #141414; border: 1px solid rgba(201,168,76,0.22);
  border-radius: 14px; padding: 16px 20px; box-shadow: 0 16px 40px rgba(0,0,0,0.5); min-width: 170px;
}
.fl-adv-cert-title { font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #C9A84C; margin-bottom: 10px; }
.fl-adv-cert-item { font-size: 0.75rem; color: rgba(255,255,255,0.6); padding: 4px 0; }

.fl-adv-stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px; }
.fl-adv-stat { background: #141414; border: 1px solid #1e1e1e; border-radius: 10px; padding: 14px 10px; text-align: center; }

/* =====================================================
   6. HOW IT WORKS
===================================================== */
.fl-how {
  background: linear-gradient(145deg,#0a0c0e,#0d0d0d);
  border-top: 1px solid #1e1e1e;
}
.fl-how-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  position: relative; margin-top: 52px;
}
.fl-how-steps::before {
  content: ''; position: absolute; top: 34px; left: 12.5%; width: 75%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.28), transparent);
}
.fl-how-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.fl-how-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: #141414; border: 1px solid rgba(201,168,76,0.22);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #C9A84C;
  margin-bottom: 18px; position: relative; z-index: 1; transition: 0.3s ease;
}
.fl-how-step:hover .fl-how-num { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.45); }
.fl-how-icon { font-size: 1.5rem; margin-bottom: 10px; }
.fl-how-title { font-size: 0.87rem; font-weight: 700; color: #fff; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.fl-how-desc { font-size: 0.75rem; color: rgba(255,255,255,0.38); line-height: 1.55; }

/* =====================================================
   7. TESTIMONIALS
===================================================== */
.fl-testimonials { background: #111; border-top: 1px solid #1e1e1e; }
.fl-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fl-testi-card {
  background: #141414; border: 1px solid #1e1e1e; border-radius: 16px;
  padding: 28px 24px; transition: 0.3s ease;
}
.fl-testi-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.fl-tq { font-size: 2.8rem; color: rgba(201,168,76,0.15); font-family: 'Playfair Display', serif; line-height: 0.6; margin-bottom: 14px; }
.fl-testi-text { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.fl-testi-author { display: flex; align-items: center; gap: 12px; }
.fl-testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.fl-testi-stars { color: #C9A84C; font-size: 0.62rem; letter-spacing: 1px; }
.fl-testi-name { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.fl-testi-city { font-size: 0.65rem; color: rgba(255,255,255,0.35); }

/* =====================================================
   8. FAQ
===================================================== */
.fl-faq { background: #080808; }
.fl-faq-list { max-width: 760px; margin: 0 auto; }
.fl-faq-item { border-bottom: 1px solid #1e1e1e; }
.fl-faq-q {
  width: 100%; background: none; border: none; color: #fff;
  text-align: left; padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; cursor: pointer;
  transition: color 0.2s; gap: 16px;
}
.fl-faq-q:hover { color: #E4C97A; }
.fl-faq-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid #1e1e1e;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: 0.3s ease; color: rgba(255,255,255,0.35); font-size: 1rem;
}
.fl-faq-item.fl-faq-open .fl-faq-icon { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); color: #C9A84C; transform: rotate(45deg); }
.fl-faq-a { display: none; padding: 0 0 18px; font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.72; }
.fl-faq-item.fl-faq-open .fl-faq-a { display: block; }

/* =====================================================
   9. CTA
===================================================== */
.fl-cta {
  background: linear-gradient(135deg, #1a1508 0%, #0e0c06 50%, #0a1420 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.fl-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.fl-cta h2, .fl-cta .fl-section-tag, .fl-cta-btns { position: relative; }
.fl-cta h2 { margin-bottom: 14px; }
.fl-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1100px) {
  .fl-chooser-grid { grid-template-columns: 1fr; }
  .fl-testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .fl-how-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .fl-how-steps::before { display: none; }
  .fl-adv-cert-float { display: none; }
  .fl-advantage-grid { grid-template-columns: 1fr; gap: 40px; }
  .fl-filter-types-grid { grid-template-columns: repeat(4,1fr); }
  .fl-hero-stats { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 860px) {
  .fl-container { padding: 0 24px; }
  .fl-section { padding: 64px 0; }
  .fl-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 60px 0 40px; }
  .fl-hero-tags { justify-content: center; }
  .fl-hero-ctas { justify-content: center; }
  .fl-eyebrow-dot { display: none; }
  .fl-filter-types-grid { grid-template-columns: repeat(2,1fr); }
  .fl-hero-stats { grid-template-columns: repeat(4,1fr); }
  .fl-problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .fl-filter-block-inner { grid-template-columns: 1fr; gap: 36px; }
  .fl-filter-block-reverse .fl-filter-block-inner { direction: ltr; }
  .fl-triple-protection { flex-direction: column; gap: 8px; }
  .fl-tp-connector { transform: rotate(90deg); }
  .fl-cc-solution { width: 150px; }
   .fl-hero-bg{
            background-position: left;
    }
}

@media (max-width: 600px) {
  .fl-filter-types-grid { grid-template-columns: 1fr 1fr; }
  .fl-hero-stats { grid-template-columns: repeat(2,1fr); }
  .fl-how-steps { grid-template-columns: 1fr; }
  .fl-chooser-card { flex-direction: column; }
  .fl-cc-solution { width: 100%; border-left: none; border-top: 1px solid #1e1e1e; }
  .fl-cc-arrow { display: none; }
  .fl-cta-btns { flex-direction: column; align-items: center; }
  .fl-adv-stats-grid { grid-template-columns: repeat(3,1fr); }
}