/* ================================================
   FUNNEL.CSS — Premium Niche Funnel Design System
   AutomateX360 | Light Theme | Cinematic & Premium
   ================================================ */

/* ── 1. CUSTOM PROPERTIES ── */
:root {
  --f-bg:       #faf8f4;
  --f-bg-alt:   #f3f0ea;
  --f-bg-card:  #ffffff;
  --f-text:     #18150f;
  --f-text2:    #514b44;
  --f-text3:    #8c867f;
  --f-border:   rgba(0,0,0,.07);
  --f-shadow:   0 4px 28px rgba(0,0,0,.07);
  --f-shadow2:  0 20px 60px rgba(0,0,0,.11);
  --f-radius:   16px;
  --f-radius2:  28px;
  --f-max:      1240px;

  /* niche accent — overridden inline per page */
  --ac1:       #c09850;
  --ac2:       #7d5f2e;
  --ac-light:  #f7edd8;
  --ac-rgb:    192,152,80;
}

/* ── 2. RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.funnel-body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--f-bg);
  color: var(--f-text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── 3. TYPOGRAPHY ── */
.f-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ac1);
  background: var(--ac-light); padding: 6px 16px;
  border-radius: 40px; border: 1px solid rgba(var(--ac-rgb),.25);
}
.f-label i { font-size: 10px; }

.f-h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; color: var(--f-text); }
.f-h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; color: var(--f-text); }
.f-h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.25; letter-spacing: -.02em; }
.f-h4 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
.f-lead { font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.7; color: var(--f-text2); }
.f-body { font-size: 1rem; line-height: 1.7; color: var(--f-text2); }
.f-small { font-size: .875rem; color: var(--f-text3); }

.f-accent-text { color: var(--ac1); }
.f-gradient-text {
  background: linear-gradient(135deg, var(--ac1), var(--ac2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 4. LAYOUT ── */
.f-container { max-width: var(--f-max); margin: 0 auto; padding: 0 28px; }
.f-container--wide { max-width: 1440px; margin: 0 auto; padding: 0 28px; }

.f-section { padding: 110px 0; position: relative; }
.f-section--sm { padding: 72px 0; }
.f-section--alt { background: var(--f-bg-alt); }
.f-section--white { background: #ffffff; }
.f-section--accent { background: linear-gradient(135deg, var(--ac-light) 0%, rgba(255,255,255,.3) 100%); }

.f-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.f-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.f-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.f-grid-asym-l { display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center; }
.f-grid-asym-r { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: center; }
.f-grid-asym-xl { display: grid; grid-template-columns: 1.35fr 1fr; gap: 80px; align-items: center; }

.f-center { text-align: center; max-width: 720px; margin: 0 auto; }
.f-center-wide { text-align: center; max-width: 900px; margin: 0 auto; }
.f-section-header { margin-bottom: 64px; }
.f-section-header .f-label { margin-bottom: 20px; }
.f-section-header .f-h2 { margin-bottom: 18px; }

/* ── 5. SCROLL PROGRESS ── */
.f-scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--ac1), var(--ac2));
  width: 0; transition: width .1s linear;
}

/* ── 6. NAVBAR ── */
.f-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,248,244,.92);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--f-border);
  transition: all .3s ease;
}
.f-nav.scrolled { padding: 12px 28px; box-shadow: var(--f-shadow); }
.f-nav-inner { display: flex; align-items: center; justify-content: space-between; }
.f-nav-logo { font-weight: 800; font-size: 1.35rem; text-decoration: none; color: var(--f-text); }
.f-nav-logo .x { color: var(--ac1); }
.f-nav-links { display: flex; gap: 36px; list-style: none; }
.f-nav-links a { font-size: .9rem; font-weight: 600; color: var(--f-text2); text-decoration: none; transition: color .2s; }
.f-nav-links a:hover { color: var(--ac1); }
.f-nav-back { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--f-text2); text-decoration: none; transition: color .2s; }
.f-nav-back:hover { color: var(--ac1); }

/* ── 7. BUTTONS ── */
.f-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 10px;
  font-size: .95rem; font-weight: 700; font-family: inherit;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .25s ease; white-space: nowrap;
  background: linear-gradient(135deg, var(--ac1), var(--ac2));
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(var(--ac-rgb),.4);
}
.f-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(var(--ac-rgb),.55); }
.f-btn--primary {
  background: linear-gradient(135deg, var(--ac1), var(--ac2));
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(var(--ac-rgb),.4);
}
.f-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--ac-rgb),.55);
}
.f-btn--outline {
  background: transparent; color: var(--f-text);
  border: 2px solid var(--f-border);
}
.f-btn--outline:hover { border-color: var(--ac1); color: var(--ac1); background: var(--ac-light); }
.f-btn--ghost {
  background: rgba(255,255,255,.15); color: #ffffff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.f-btn--ghost:hover { background: rgba(255,255,255,.25); }
.f-btn--lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 12px; }
.f-btn--xl { padding: 22px 48px; font-size: 1.15rem; border-radius: 14px; }
.f-btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── 8. STICKY MOBILE CTA ── */
.f-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  padding: 16px 20px;
  background: rgba(250,248,244,.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--f-border);
  box-shadow: 0 -8px 32px rgba(0,0,0,.08);
}
.f-sticky-cta .f-btn { width: 100%; justify-content: center; }

/* ── 9. HERO ── */
.f-hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  padding-top: 100px;
  /* Direct bg ensures dark hero shows even when abs-pos .f-hero-bg has 0-height
     in Safari/WebKit (flex container with only min-height, no explicit height). */
  background: linear-gradient(135deg, #1a1209 0%, #2d2010 100%);
}
.f-hero-bg {
  position: absolute; inset: 0; overflow: hidden;
  background: linear-gradient(135deg, #1a1209 0%, #2d2010 100%);
  z-index: 0;
  min-height: 100vh; /* Safari fix: force full height when parent has only min-height */
}
.f-hero-bg-img {
  position: absolute; inset: 0; min-height: 100%;
  background-size: cover; background-position: center;
  opacity: .35; z-index: 1;
  transform: scale(1.08);
  will-change: transform;
}

.f-hero-overlay {
  position: absolute; inset: 0; min-height: 100%; z-index: 2;
  background: linear-gradient(135deg, rgba(var(--ac-rgb),.15) 0%, transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.55) 100%);
}
.f-hero-content { position: relative; z-index: 3; color: #fff; }
.f-hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; min-height: calc(100vh - 100px); position: relative; z-index: 3; }

.f-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.9); background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 18px; border-radius: 40px; margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.f-hero-label i { color: var(--ac1); }

.f-hero-title { font-size: clamp(2.8rem, 5.5vw, 5.2rem); font-weight: 800; line-height: 1.06; letter-spacing: -.04em; margin-bottom: 24px; color: #fff; }
.f-hero-title .highlight { color: var(--ac1); }
.f-hero-sub { font-size: clamp(1.05rem, 1.8vw, 1.2rem); line-height: 1.75; color: rgba(255,255,255,.8); margin-bottom: 40px; max-width: 540px; }

.f-trust-badges { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.f-trust-badge { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.8); }
.f-trust-badge i { color: var(--ac1); font-size: .9rem; }

/* Hero right — floating visual stack */
.f-hero-visuals { position: relative; height: 520px; }
.f-hero-main-img {
  position: absolute; inset: 20px 0 0 20px;
  border-radius: 20px; overflow: hidden;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.f-img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 32px; text-align: center;
  color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 500;
}
.f-img-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,.3); }
.f-img-placeholder span { line-height: 1.4; }

/* Floating cards */
.f-float-card {
  position: absolute; border-radius: 14px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 12px 48px rgba(0,0,0,.2);
  backdrop-filter: blur(20px);
  padding: 14px 18px;
  animation: floatBob 4s ease-in-out infinite;
  color: var(--f-text);
}
.f-float-card:nth-child(2) { animation-delay: -1.5s; }
.f-float-card:nth-child(3) { animation-delay: -3s; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.f-float-card--stat { min-width: 180px; }
.f-float-card--stat .fc-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--f-text3); margin-bottom: 4px; }
.f-float-card--stat .fc-value { font-size: 1.8rem; font-weight: 800; letter-spacing: -.04em; color: var(--f-text); }
.f-float-card--stat .fc-sub { font-size: .75rem; color: var(--f-text3); margin-top: 2px; }
.f-float-card--stat .fc-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block; margin-right: 6px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }

.f-float-card--review { max-width: 240px; }
.f-float-card--review .fc-stars { color: #f59e0b; font-size: .85rem; letter-spacing: 1px; margin-bottom: 6px; }
.f-float-card--review .fc-text { font-size: .82rem; line-height: 1.5; color: var(--f-text2); font-style: italic; }
.f-float-card--review .fc-author { font-size: .75rem; font-weight: 700; color: var(--f-text); margin-top: 8px; }

.f-float-card--notif { min-width: 210px; }
.f-float-card--notif .fc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.f-float-card--notif .fc-icon { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--ac1), var(--ac2)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .75rem; flex-shrink: 0; }
.f-float-card--notif .fc-title { font-size: .78rem; font-weight: 700; }
.f-float-card--notif .fc-time { font-size: .7rem; color: var(--f-text3); }
.f-float-card--notif .fc-body { font-size: .78rem; color: var(--f-text2); line-height: 1.45; }

/* VSL play button on hero */
.f-vsl-hero-btn {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.35);
  padding: 14px 24px; border-radius: 50px; color: #fff;
  text-decoration: none; backdrop-filter: blur(8px);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: all .3s; width: fit-content;
}
.f-vsl-hero-btn:hover { background: rgba(255,255,255,.25); transform: scale(1.03); }
.f-vsl-play { width: 40px; height: 40px; border-radius: 50%; background: var(--ac1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.f-vsl-play i { font-size: .75rem; color: #fff; margin-left: 2px; }

/* Hero bottom scroll indicator */
.f-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .75rem; font-weight: 500;
  z-index: 3; animation: scrollHint 2s ease-in-out infinite;
}
.f-scroll-hint i { font-size: 1rem; }
@keyframes scrollHint { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* Curved divider bottom of hero */
.f-hero-curve {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 4; line-height: 0;
}
.f-hero-curve svg { display: block; width: 100%; }

/* ── 10. SECTION DIVIDERS ── */
.f-divider-up {
  position: absolute; top: -1px; left: 0; right: 0; z-index: 2; line-height: 0;
}
.f-divider-down {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; line-height: 0;
}
.f-divider-up svg, .f-divider-down svg { display: block; width: 100%; }

/* Diagonal clip sections */
.f-clip-down { clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); padding-bottom: 140px; }
.f-clip-up   { clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%); padding-top: 140px; }

/* ── 11. CARDS ── */
.f-card {
  background: var(--f-bg-card); border: 1px solid var(--f-border);
  border-radius: var(--f-radius); padding: 32px;
  box-shadow: var(--f-shadow); transition: all .3s ease;
}
.f-card:hover { transform: translateY(-4px); box-shadow: var(--f-shadow2); border-color: rgba(var(--ac-rgb),.3); }

/* ── 12. PAIN POINTS / PROBLEM SECTION ── */
.f-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.f-pain-card {
  padding: 28px; border-radius: var(--f-radius);
  background: var(--f-bg-card); border: 1px solid var(--f-border);
  transition: all .3s;
}
.f-pain-card:hover { transform: translateY(-3px); box-shadow: var(--f-shadow); }
.f-pain-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(239,68,68,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.f-pain-icon i { color: #ef4444; font-size: 1.1rem; }
.f-pain-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--f-text); }
.f-pain-card p { font-size: .9rem; color: var(--f-text2); line-height: 1.55; }

/* Dashboard broken visual */
.f-broken-dash {
  position: relative; padding: 28px; border-radius: 20px;
  background: #fff; border: 1px solid var(--f-border); box-shadow: var(--f-shadow);
  overflow: visible;
}
.f-broken-dash::before {
  content: '⚠ CRM Overloaded'; position: absolute; top: -14px; right: 24px;
  background: #fef2f2; border: 1px solid #fecaca; color: #dc2626;
  font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 20px;
}
.f-broken-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--f-border); }
.f-broken-row:last-child { border: none; }
.f-broken-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.f-broken-text { flex: 1; }
.f-broken-bar { height: 8px; border-radius: 4px; background: #f3f4f6; overflow: hidden; position: relative; }
.f-broken-fill { position: absolute; inset: 0; right: auto; border-radius: 4px; }

/* ── 13. STATS / COST SECTION ── */
.f-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.f-stat-big {
  text-align: center; padding: 40px 28px; border-radius: 20px;
  background: var(--f-bg-card); border: 1px solid var(--f-border);
  box-shadow: var(--f-shadow);
}
.f-stat-number { font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -.05em; line-height: 1; background: linear-gradient(135deg, var(--ac1), var(--ac2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.f-stat-label { font-size: .95rem; font-weight: 700; color: var(--f-text); margin: 12px 0 8px; }
.f-stat-desc { font-size: .85rem; color: var(--f-text3); line-height: 1.5; }

/* ── 14. VSL MOCKUP ── */
.f-vsl-section { text-align: center; }
.f-laptop-wrap {
  position: relative; max-width: 820px; margin: 56px auto 0;
  filter: drop-shadow(0 32px 80px rgba(0,0,0,.15));
}
.f-laptop-screen {
  background: #1a1a2e; border-radius: 16px 16px 4px 4px;
  border: 8px solid #2a2a3e; border-bottom: none;
  aspect-ratio: 16/9; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.f-laptop-base {
  background: #2a2a3e; height: 24px; border-radius: 0 0 12px 12px;
  margin-top: -1px; position: relative;
}
.f-laptop-base::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); top: 4px; width: 60px; height: 4px; border-radius: 2px; background: #3a3a4e; }
.f-vsl-play-big {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(var(--ac-rgb),.9); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s; position: absolute; z-index: 2;
  box-shadow: 0 0 0 0 rgba(var(--ac-rgb),.4); animation: vslPulse 2.5s infinite;
}
.f-vsl-play-big:hover { transform: scale(1.1); }
.f-vsl-play-big i { font-size: 1.6rem; color: #fff; margin-left: 4px; }
@keyframes vslPulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--ac-rgb),.5); }
  70% { box-shadow: 0 0 0 24px rgba(var(--ac-rgb),0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--ac-rgb),0); }
}
.f-vsl-overlay-text {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.f-vsl-thumbnail {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0a05, #1a140a);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.f-vsl-thumbnail .f-img-placeholder { color: rgba(255,255,255,.4); }
.f-vsl-thumbnail .f-img-placeholder i { color: rgba(255,255,255,.15); font-size: 3rem; }

/* ── 15. HOW IT WORKS — PROCESS ── */
.f-process-wrap { position: relative; }
.f-process-line {
  position: absolute; left: 32px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--ac1) 0%, var(--ac-light) 100%);
}
.f-process-step { display: flex; gap: 32px; align-items: flex-start; position: relative; padding-bottom: 48px; }
.f-process-step:last-child { padding-bottom: 0; }
.f-process-num {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ac1), var(--ac2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(var(--ac-rgb),.4);
}
.f-process-body { padding-top: 14px; }
.f-process-body h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.f-process-body p { font-size: .9rem; color: var(--f-text2); line-height: 1.6; }
.f-process-badge { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ac1); background: var(--ac-light); padding: 3px 10px; border-radius: 20px; margin-top: 10px; }

/* Process alternate — horizontal cards with arrows */
.f-process-h { display: flex; gap: 0; align-items: stretch; }
.f-process-h-step {
  flex: 1; padding: 32px 24px; background: var(--f-bg-card);
  border: 1px solid var(--f-border); border-radius: 16px;
  text-align: center; position: relative;
  transition: all .3s;
}
.f-process-h-step:hover { transform: translateY(-4px); box-shadow: var(--f-shadow); }
.f-process-h-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -18px; top: 50%; transform: translateY(-50%);
  font-size: 1.2rem; color: var(--ac1); z-index: 1; background: var(--f-bg); padding: 4px;
}
.f-ph-num { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--ac1), var(--ac2)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 800; margin: 0 auto 14px; }
.f-ph-title { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.f-ph-desc { font-size: .82rem; color: var(--f-text2); line-height: 1.5; }

/* ── 16. SERVICES ── */
.f-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.f-service-card {
  padding: 28px 22px; border-radius: 18px;
  background: var(--f-bg-card); border: 1px solid var(--f-border);
  transition: all .35s ease; cursor: default; position: relative; overflow: hidden;
}
.f-service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--ac-rgb),.05), transparent);
  opacity: 0; transition: opacity .35s;
}
.f-service-card:hover { transform: translateY(-6px); box-shadow: var(--f-shadow2); border-color: rgba(var(--ac-rgb),.4); }
.f-service-card:hover::after { opacity: 1; }
.f-sc-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--ac-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.f-sc-icon i { font-size: 1.25rem; color: var(--ac1); }
.f-service-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.f-service-card p { font-size: .85rem; color: var(--f-text2); line-height: 1.6; }
.f-sc-tag { display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ac1); background: var(--ac-light); padding: 3px 8px; border-radius: 12px; margin-top: 14px; }

/* ── 17. BEFORE / AFTER ── */
.f-ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 24px; overflow: hidden; box-shadow: var(--f-shadow2); }
.f-ba-side { padding: 56px 40px; }
.f-ba-before { background: #fef2f2; border-right: 1px solid #fecaca; }
.f-ba-after { background: #f0fdf4; }
.f-ba-label { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.f-ba-badge-b { display: inline-flex; align-items: center; gap: 8px; background: #fecaca; color: #991b1b; font-size: .8rem; font-weight: 700; padding: 6px 16px; border-radius: 30px; text-transform: uppercase; letter-spacing: .08em; }
.f-ba-badge-a { display: inline-flex; align-items: center; gap: 8px; background: #bbf7d0; color: #166534; font-size: .8rem; font-weight: 700; padding: 6px 16px; border-radius: 30px; text-transform: uppercase; letter-spacing: .08em; }
.f-ba-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.f-ba-item:last-child { border: none; }
.f-ba-dot-b { width: 20px; height: 20px; border-radius: 50%; background: #fecaca; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.f-ba-dot-b i { font-size: .55rem; color: #dc2626; }
.f-ba-dot-a { width: 20px; height: 20px; border-radius: 50%; background: #bbf7d0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.f-ba-dot-a i { font-size: .55rem; color: #16a34a; }
.f-ba-item-text { font-size: .9rem; color: var(--f-text2); line-height: 1.5; }

/* ── 18. CASE STUDIES ── */
.f-case-study {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px;
  align-items: center; padding: 56px; border-radius: 28px;
  background: var(--f-bg-card); border: 1px solid var(--f-border);
  box-shadow: var(--f-shadow); margin-bottom: 32px;
}
.f-case-study:nth-child(even) { direction: rtl; }
.f-case-study:nth-child(even) > * { direction: ltr; }
.f-cs-niche { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ac1); margin-bottom: 10px; }
.f-cs-title { font-size: 1.6rem; font-weight: 800; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 16px; }
.f-cs-desc { font-size: .95rem; color: var(--f-text2); line-height: 1.7; margin-bottom: 28px; }
.f-cs-metrics { display: flex; gap: 24px; flex-wrap: wrap; }
.f-cs-metric { text-align: center; }
.f-cs-metric-num { font-size: 2rem; font-weight: 800; letter-spacing: -.04em; background: linear-gradient(135deg, var(--ac1), var(--ac2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.f-cs-metric-label { font-size: .75rem; color: var(--f-text3); font-weight: 600; }
.f-cs-img {
  border-radius: 18px; overflow: hidden;
  background: var(--f-bg-alt); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--f-border);
}

/* ── 19. TESTIMONIALS ── */
.f-testimonial-grid { columns: 3; gap: 24px; column-fill: balance; }
.f-testi-card {
  break-inside: avoid; margin-bottom: 24px;
  padding: 28px; border-radius: 18px;
  background: var(--f-bg-card); border: 1px solid var(--f-border);
  box-shadow: var(--f-shadow); transition: all .3s;
}
.f-testi-card:hover { transform: translateY(-3px); box-shadow: var(--f-shadow2); }
.f-testi-stars { color: #f59e0b; font-size: .9rem; letter-spacing: 2px; margin-bottom: 12px; }
.f-testi-text { font-size: .92rem; line-height: 1.7; color: var(--f-text2); margin-bottom: 18px; font-style: italic; }
.f-testi-author { display: flex; align-items: center; gap: 12px; }
.f-testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--ac-light); display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; color: var(--ac1); flex-shrink: 0; }
.f-testi-name { font-size: .88rem; font-weight: 700; }
.f-testi-role { font-size: .78rem; color: var(--f-text3); }

/* ── 20. ROI CALCULATOR ── */
.f-roi-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  background: var(--f-bg-card); border-radius: 28px; padding: 56px;
  border: 1px solid var(--f-border); box-shadow: var(--f-shadow2);
}
.f-roi-inputs h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.f-roi-inputs p { font-size: .9rem; color: var(--f-text2); margin-bottom: 32px; }
.f-roi-field { margin-bottom: 24px; }
.f-roi-field label { display: block; font-size: .85rem; font-weight: 700; color: var(--f-text); margin-bottom: 8px; }
.f-roi-slider { width: 100%; accent-color: var(--ac1); }
.f-roi-value-display { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.f-roi-current { font-size: 1.3rem; font-weight: 800; color: var(--ac1); }
.f-roi-range { font-size: .78rem; color: var(--f-text3); }

.f-roi-result { background: linear-gradient(135deg, var(--ac-light), rgba(255,255,255,.5)); border-radius: 20px; padding: 36px; border: 1px solid rgba(var(--ac-rgb),.25); display: flex; flex-direction: column; justify-content: center; }
.f-roi-result h3 { font-size: 1rem; font-weight: 700; color: var(--f-text2); margin-bottom: 20px; }
.f-roi-big { font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 800; letter-spacing: -.05em; background: linear-gradient(135deg, var(--ac1), var(--ac2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.f-roi-sub { font-size: .9rem; color: var(--f-text2); margin-bottom: 28px; }
.f-roi-breakdown { display: flex; flex-direction: column; gap: 12px; }
.f-roi-breakdown-item { display: flex; justify-content: space-between; padding: 10px 16px; background: rgba(255,255,255,.7); border-radius: 10px; font-size: .88rem; }
.f-roi-breakdown-item span:last-child { font-weight: 700; color: var(--ac1); }

/* ── 21. SHOWCASE GALLERY ── */
.f-showcase-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.f-showcase-item {
  border-radius: 18px; overflow: hidden;
  background: var(--f-bg-alt); border: 1px solid var(--f-border);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4/3; transition: all .3s; position: relative;
}
.f-showcase-item:hover { transform: scale(1.02); box-shadow: var(--f-shadow2); }
.f-showcase-item--tall { grid-row: span 2; aspect-ratio: auto; }
.f-showcase-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 20px; font-size: .78rem; font-weight: 700;
}

/* ── 22. FAQ ── */
.f-faq-list { max-width: 800px; margin: 0 auto; }
.f-faq-item {
  border: 1px solid var(--f-border); border-radius: 14px;
  background: var(--f-bg-card); margin-bottom: 12px; overflow: hidden;
  transition: all .3s;
}
.f-faq-item.open { border-color: rgba(var(--ac-rgb),.4); box-shadow: var(--f-shadow); }
.f-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: .97rem;
  color: var(--f-text); transition: color .2s; user-select: none;
}
.f-faq-q:hover { color: var(--ac1); }
.f-faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--ac-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .3s; }
.f-faq-icon i { font-size: .7rem; color: var(--ac1); transition: transform .3s; }
.f-faq-item.open .f-faq-icon { background: var(--ac1); }
.f-faq-item.open .f-faq-icon i { color: #fff; transform: rotate(45deg); }
.f-faq-a { display: none; padding: 0 24px 20px; font-size: .92rem; color: var(--f-text2); line-height: 1.7; }
.f-faq-item.open .f-faq-a { display: block; }

/* ── 23. OBJECTION HANDLING ── */
.f-objection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.f-objection-card {
  padding: 32px; border-radius: 20px; background: var(--f-bg-card);
  border: 1px solid var(--f-border); position: relative;
}
.f-obj-q { font-size: 1rem; font-weight: 700; color: var(--f-text2); margin-bottom: 16px; padding-left: 20px; }
.f-obj-q::before { content: '"'; position: absolute; left: 32px; font-size: 1.4rem; color: var(--f-text3); top: 28px; }
.f-obj-divider { height: 1px; background: var(--f-border); margin-bottom: 16px; }
.f-obj-a { font-size: .9rem; color: var(--f-text2); line-height: 1.65; }
.f-obj-a strong { color: var(--ac1); }

/* ── 24. OFFER STACK ── */
.f-offer-stack { position: relative; }
.f-offer-item {
  display: flex; align-items: center; gap: 20px; padding: 20px 28px;
  background: var(--f-bg-card); border: 1px solid var(--f-border); border-radius: 14px;
  margin-bottom: 12px; transition: all .3s;
}
.f-offer-item:hover { border-color: rgba(var(--ac-rgb),.4); box-shadow: var(--f-shadow); transform: translateX(4px); }
.f-offer-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--ac1), var(--ac2)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.f-offer-icon i { font-size: 1.1rem; color: #fff; }
.f-offer-body { flex: 1; }
.f-offer-title { font-size: .97rem; font-weight: 700; margin-bottom: 4px; }
.f-offer-desc { font-size: .82rem; color: var(--f-text2); }
.f-offer-value { font-size: .9rem; font-weight: 700; color: var(--f-text3); text-decoration: line-through; white-space: nowrap; }
.f-offer-total { margin-top: 20px; padding: 28px; border-radius: 16px; background: linear-gradient(135deg, var(--ac-light), rgba(255,255,255,.6)); border: 2px solid rgba(var(--ac-rgb),.3); display: flex; justify-content: space-between; align-items: center; }
.f-offer-total-text { font-size: .9rem; color: var(--f-text2); }
.f-offer-total-text strong { display: block; font-size: 1.6rem; color: var(--f-text); letter-spacing: -.03em; }
.f-offer-cta-side { text-align: right; }

/* ── 25. URGENCY / COUNTDOWN ── */
.f-urgency-section { text-align: center; }
.f-slots { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.f-slot { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.f-slot--taken { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.f-slot--open { background: linear-gradient(135deg, var(--ac1), var(--ac2)); color: #fff; box-shadow: 0 4px 16px rgba(var(--ac-rgb),.4); }
.f-slot--available { background: var(--f-bg-alt); color: var(--f-text3); border: 2px dashed var(--f-border); }

.f-countdown { display: flex; gap: 20px; justify-content: center; margin-bottom: 48px; }
.f-countdown-block { text-align: center; }
.f-countdown-num { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; letter-spacing: -.05em; background: linear-gradient(135deg, var(--ac1), var(--ac2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.f-countdown-unit { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--f-text3); margin-top: 6px; }
.f-countdown-sep { font-size: 2.5rem; font-weight: 800; color: var(--f-border); align-self: flex-start; margin-top: 8px; }

/* ── 26. FINAL CTA ── */
.f-final-cta { text-align: center; position: relative; overflow: hidden; }
.f-final-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(var(--ac-rgb),.12), transparent);
}
.f-guarantee {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--f-bg-card); border: 1px solid var(--f-border);
  padding: 12px 24px; border-radius: 50px; margin-bottom: 48px;
  box-shadow: var(--f-shadow);
}
.f-guarantee-icon { width: 36px; height: 36px; border-radius: 50%; background: #bbf7d0; display: flex; align-items: center; justify-content: center; }
.f-guarantee-icon i { color: #166534; }
.f-guarantee-text { font-size: .85rem; font-weight: 700; color: var(--f-text); }

.f-booking-frame {
  max-width: 700px; margin: 48px auto 0;
  background: var(--f-bg-card); border-radius: 24px; padding: 48px;
  border: 1px solid var(--f-border); box-shadow: var(--f-shadow2);
}
.f-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.f-input {
  width: 100%; padding: 14px 18px; border-radius: 10px;
  border: 1.5px solid var(--f-border); background: var(--f-bg);
  font-size: .95rem; font-family: inherit; color: var(--f-text);
  transition: border-color .2s;
}
.f-input:focus { outline: none; border-color: var(--ac1); }
.f-input::placeholder { color: var(--f-text3); }
.f-input--full { grid-column: span 2; }

/* ── 27. FOOTER ── */
.f-footer {
  background: var(--f-bg-alt); border-top: 1px solid var(--f-border);
  padding: 48px 0 28px; text-align: center;
}
.f-footer-logo { font-weight: 800; font-size: 1.25rem; margin-bottom: 16px; }
.f-footer-logo .x { color: var(--ac1); }
.f-footer-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.f-footer-links a { font-size: .85rem; color: var(--f-text3); text-decoration: none; transition: color .2s; }
.f-footer-links a:hover { color: var(--ac1); }
.f-footer-copy { font-size: .8rem; color: var(--f-text3); }

/* ── 28. ANIMATION SYSTEM ── */
.f-anim {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.f-anim[data-anim="fade-up"]   { transform: translateY(40px); }
.f-anim[data-anim="fade-down"] { transform: translateY(-30px); }
.f-anim[data-anim="fade-left"] { transform: translateX(-40px); }
.f-anim[data-anim="fade-right"]{ transform: translateX(40px); }
.f-anim[data-anim="scale"]     { transform: scale(0.88); }
.f-anim[data-anim="fade"]      { transform: none; }
.f-anim.visible { opacity: 1; transform: translate(0) scale(1); }

/* Stagger children */
.f-stagger > * { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
.f-stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.f-stagger.visible > *:nth-child(2) { transition-delay: .13s; }
.f-stagger.visible > *:nth-child(3) { transition-delay: .21s; }
.f-stagger.visible > *:nth-child(4) { transition-delay: .29s; }
.f-stagger.visible > *:nth-child(5) { transition-delay: .37s; }
.f-stagger.visible > *:nth-child(6) { transition-delay: .45s; }
.f-stagger.visible > *:nth-child(7) { transition-delay: .53s; }
.f-stagger.visible > *:nth-child(8) { transition-delay: .61s; }
.f-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* Counter animation trigger */
.f-counter { transition: none; }

/* ── 29. MISC UTILITIES ── */
.f-divider-line { height: 1px; background: var(--f-border); margin: 0; }
.f-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--ac-light); color: var(--ac1); padding: 4px 12px; border-radius: 20px; }
.f-spacer-sm { height: 32px; }
.f-spacer { height: 64px; }

/* Review card */
.f-google-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.f-google-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.f-google-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--ac1), var(--ac2)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.f-google-info-name { font-size: .9rem; font-weight: 700; }
.f-google-info-meta { font-size: .78rem; color: #6b7280; }
.f-google-stars { color: #f59e0b; font-size: .85rem; }
.f-google-text { font-size: .88rem; color: #374151; line-height: 1.65; }
.f-google-badge { display: flex; align-items: center; gap: 6px; margin-top: 12px; font-size: .72rem; color: #6b7280; }
.f-google-g { font-weight: 800; font-size: .85rem; color: #4285f4; }

/* Dashboard preview mock */
.f-dash-mock {
  background: #fff; border-radius: 16px; border: 1px solid #e5e7eb;
  box-shadow: var(--f-shadow); overflow: hidden;
}
.f-dash-bar { background: #f9fafb; border-bottom: 1px solid #e5e7eb; padding: 10px 16px; display: flex; align-items: center; gap: 8px; }
.f-dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.f-dash-body { padding: 20px; }
.f-dash-row { display: flex; gap: 12px; margin-bottom: 12px; }
.f-dash-metric { flex: 1; background: #f9fafb; border-radius: 10px; padding: 14px 16px; }
.f-dash-m-val { font-size: 1.3rem; font-weight: 800; }
.f-dash-m-label { font-size: .72rem; color: #6b7280; margin-top: 2px; }
.f-dash-chart { background: #f9fafb; border-radius: 10px; padding: 16px; height: 80px; display: flex; align-items: flex-end; gap: 6px; }
.f-dash-bar-item { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--ac1), var(--ac2)); opacity: .7; }

/* ── 30. RESPONSIVE ── */
@media (max-width: 1100px) {
  .f-service-grid { grid-template-columns: repeat(3, 1fr); }
  .f-grid-asym-l, .f-grid-asym-r, .f-grid-asym-xl { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .f-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .f-hero-visuals { height: 300px; order: -1; }
  .f-hero-title { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .f-grid-2, .f-grid-asym-l, .f-grid-asym-r, .f-grid-asym-xl { grid-template-columns: 1fr; gap: 40px; }
  .f-grid-3 { grid-template-columns: 1fr 1fr; }
  .f-stat-row { grid-template-columns: 1fr 1fr; }
  .f-pain-grid { grid-template-columns: 1fr 1fr; }
  .f-testimonial-grid { columns: 2; }
  .f-roi-wrap { grid-template-columns: 1fr; gap: 32px; }
  .f-ba-wrap { grid-template-columns: 1fr; }
  .f-case-study { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; padding: 36px 28px; }
  .f-service-grid { grid-template-columns: repeat(2, 1fr); }
  .f-objection-grid { grid-template-columns: 1fr; }
  .f-process-h { flex-direction: column; gap: 16px; }
  .f-process-h-step::after { display: none; }
  .f-showcase-grid { grid-template-columns: 1fr 1fr; }
  .f-showcase-item--tall { grid-row: span 1; }
  .f-section { padding: 80px 0; }
}

@media (max-width: 600px) {
  .f-grid-3, .f-grid-4 { grid-template-columns: 1fr; }
  .f-stat-row { grid-template-columns: 1fr; }
  .f-pain-grid { grid-template-columns: 1fr; }
  .f-testimonial-grid { columns: 1; }
  .f-service-grid { grid-template-columns: 1fr 1fr; }
  .f-countdown { gap: 12px; }
  .f-form-grid { grid-template-columns: 1fr; }
  .f-input--full { grid-column: span 1; }
  .f-nav-links { display: none; }
  .f-sticky-cta { display: block; }
  .f-booking-frame { padding: 28px 20px; }
  .f-section { padding: 64px 0; }
  .f-container { padding: 0 18px; }
  .f-showcase-grid { grid-template-columns: 1fr; }
  .f-slots { gap: 8px; }
}

/* ══════════════════════════════════════════════════════════
   PAGE VARIANT ALIASES — COMPREHENSIVE
   Covers all alternate class names used by older niche pages
   (fitness, insurance, solar, salon, hvac, chiropractor)
══════════════════════════════════════════════════════════ */

/* ── Scroll progress bar (old name) ── */
.f-scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--ac1), var(--ac2));
  width: 0; transition: width .1s linear;
}

/* ── Nav logo bare span accent ── */
.f-nav-logo span { color: var(--ac1); }

/* ── Hero content + cards aliases ── */
.f-hero-copy  { position: relative; z-index: 3; color: #fff; }
.f-hero-cards { position: relative; z-index: 3; height: 520px; }

/* Fix heading + text color inside hero (explicit dark colors override inherited white) */
.f-hero-copy .f-h1,
.f-hero-copy .f-h2,
.f-hero-copy h1,
.f-hero-copy h2 { color: #fff; }
.f-hero-copy em { color: var(--ac1); font-style: normal; }
.f-hero-copy .f-lead,
.f-hero-copy > p { color: rgba(255,255,255,.82); }

/* ── Hero CTA + trust ── */
.f-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 32px; }
.f-hero-trust   { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.f-trust-item   { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.8); }
.f-trust-item i { color: var(--ac1); font-size: .9rem; }

/* ── Button single-dash variants ── */
.f-btn-primary       { background: linear-gradient(135deg, var(--ac1), var(--ac2)); color: #fff; box-shadow: 0 4px 20px rgba(var(--ac-rgb),.4); }
.f-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(var(--ac-rgb),.55); }
.f-btn-lg            { padding: 18px 36px !important; font-size: 1.05rem !important; border-radius: 12px !important; }
.f-btn-ghost         { background: rgba(255,255,255,.15) !important; color: #fff !important; border: 1.5px solid rgba(255,255,255,.35) !important; backdrop-filter: blur(8px); box-shadow: none !important; }
.f-btn-ghost:hover   { background: rgba(255,255,255,.28) !important; transform: none !important; }

/* ── Section header alias ── */
.f-section-head       { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.f-section-head .f-label { margin-bottom: 16px; }
.f-section-head .f-h2 { margin-bottom: 16px; }

/* ── Stat cards (f-stat-card / f-stat-icon / f-stat-num / f-stat-note) ── */
.f-stat-card {
  text-align: center; padding: 40px 28px; border-radius: 20px;
  background: var(--f-bg-card); border: 1px solid var(--f-border);
  box-shadow: var(--f-shadow);
}
.f-stat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.25rem;
}
.f-stat-num {
  font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 800;
  letter-spacing: -.05em; line-height: 1;
  background: linear-gradient(135deg, var(--ac1), var(--ac2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.f-stat-note { font-size: .78rem; color: var(--f-text3); line-height: 1.5; margin-top: 6px; font-style: italic; }

/* ── Process step aliases (f-ps-num / f-ps-body) ── */
.f-ps-num {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ac1), var(--ac2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(var(--ac-rgb),.4);
}
.f-ps-body         { padding-top: 14px; }
.f-ps-body h4      { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.f-ps-body p       { font-size: .9rem; color: var(--f-text2); line-height: 1.6; }

/* ── Float card inner elements (f-fc- prefix) ── */
.f-float-card--notif              { display: flex; align-items: center; gap: 10px; }
.f-float-card--notif .f-fc-icon   { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.f-float-card--notif .f-fc-body   { flex: 1; }
.f-float-card--notif .f-fc-title  { font-size: .78rem; font-weight: 700; }
.f-float-card--notif .f-fc-sub    { font-size: .7rem; color: var(--f-text3); margin-top: 2px; }
.f-float-card--stat .f-fc-stat-num   { font-size: 1.8rem; font-weight: 800; letter-spacing: -.04em; color: var(--f-text); }
.f-float-card--stat .f-fc-stat-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--f-text3); margin-bottom: 4px; }
.f-float-card--stat .f-fc-stat-sub   { font-size: .75rem; color: var(--f-text3); margin-top: 2px; }
.f-float-card--review .f-fc-stars  { color: #f59e0b; font-size: .85rem; letter-spacing: 1px; margin-bottom: 6px; }
.f-float-card--review .f-fc-quote  { font-size: .82rem; line-height: 1.5; color: var(--f-text2); font-style: italic; }
.f-float-card--review .f-fc-author { font-size: .75rem; font-weight: 700; color: var(--f-text); margin-top: 8px; }

/* ── Broken dashboard (f-bd- prefix) ── */
.f-broken-dash            { border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid var(--f-border); box-shadow: var(--f-shadow); }
.f-broken-dash .f-bd-header { display: flex; align-items: center; gap: 6px; padding: 10px 16px; background: #f9fafb; border-bottom: 1px solid var(--f-border); }
.f-broken-dash .f-bd-dot    { width: 10px; height: 10px; border-radius: 50%; }
.f-broken-dash .f-bd-body   { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.f-broken-dash .f-bd-row    { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; font-size: .85rem; font-weight: 500; }
.f-broken-dash .f-bd-row.bad  { background: #fef2f2; color: #991b1b; }
.f-broken-dash .f-bd-row.warn { background: #fffbeb; color: #92400e; }
.f-broken-dash .f-bd-row.ok   { background: #f0fdf4; color: #166534; }

/* ── VSL section aliases ── */
.f-vsl-wrap  { max-width: 820px; margin: 48px auto 0; filter: drop-shadow(0 32px 80px rgba(0,0,0,.15)); }
.f-laptop    { position: relative; }
.f-vsl-thumb { background: #0d0a05; border-radius: 8px 8px 0 0; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.f-play-btn  { width: 72px; height: 72px; border-radius: 50%; background: rgba(var(--ac-rgb),.9); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; position: absolute; z-index: 2; animation: vslPulse 2.5s infinite; transition: transform .3s; }
.f-play-btn:hover { transform: scale(1.1); }
.f-play-btn i { font-size: 1.4rem; color: #fff; margin-left: 4px; }

/* ── Trust strip ── */
.f-trust-strip { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; align-items: center; }
.f-trust-strip .f-trust-badge { color: var(--f-text2); }

/* ── Dashboard mock (f-dm- prefix) ── */
.f-dm-header    { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--f-border); background: #f9fafb; }
.f-dm-live      { display: flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; color: #22c55e; }
.f-dm-dot       { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
.f-dm-pipeline  { display: flex; gap: 12px; padding: 16px; overflow-x: auto; }
.f-dm-col       { flex: 1; min-width: 120px; }
.f-dm-col-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--f-text3); margin-bottom: 8px; padding: 0 4px; }
.f-dm-card      { display: flex; align-items: center; gap: 8px; padding: 9px 12px; background: #f9fafb; border: 1px solid var(--f-border); border-radius: 8px; font-size: .78rem; margin-bottom: 6px; color: var(--f-text2); }
.f-dm-card.accent { background: var(--ac-light); border-color: rgba(var(--ac-rgb),.25); color: var(--ac2); }
.f-dm-card.win    { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.f-dm-footer    { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; border-top: 1px solid var(--f-border); font-size: .8rem; color: var(--f-text3); }

/* ── Pain card old structure (icon + span) ── */
.f-pain-grid .f-pain-card { display: flex; flex-direction: column; gap: 10px; padding: 22px 18px; }
.f-pain-grid .f-pain-card i    { font-size: 1.3rem; color: var(--ac1); }
.f-pain-grid .f-pain-card span { font-size: .88rem; color: var(--f-text2); line-height: 1.55; }

/* ── Before / After (old 3-child structure) ── */
.f-ba-wrap:has(.f-ba-divider)   { display: flex; border-radius: 24px; overflow: hidden; box-shadow: var(--f-shadow2); }
.f-ba-wrap:has(.f-ba-divider) .f-ba-before,
.f-ba-wrap:has(.f-ba-divider) .f-ba-after { flex: 1; padding: 40px 36px; }
.f-ba-divider { display: flex; align-items: center; justify-content: center; width: 56px; flex-shrink: 0; background: var(--f-bg-card); border-left: 1px solid var(--f-border); border-right: 1px solid var(--f-border); }
.f-ba-divider span { font-size: .9rem; font-weight: 800; color: var(--f-text3); writing-mode: vertical-rl; letter-spacing: .15em; }
.f-ba-badge         { display: inline-flex; align-items: center; font-size: .8rem; font-weight: 700; padding: 6px 16px; border-radius: 30px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.f-ba-badge.before  { background: #fecaca; color: #991b1b; }
.f-ba-badge.after   { background: #bbf7d0; color: #166534; }
.f-ba-list          { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.f-ba-list li       { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; line-height: 1.55; color: var(--f-text2); }
.f-ba-list li i     { margin-top: 3px; flex-shrink: 0; font-size: .8rem; }
.f-ba-before .f-ba-list li i { color: #dc2626; }
.f-ba-after  .f-ba-list li i { color: #16a34a; }

/* ── Testimonial cards (f-tcard / f-tc-*) ── */
.f-tcard {
  break-inside: avoid; margin-bottom: 24px;
  padding: 28px; border-radius: 18px;
  background: var(--f-bg-card); border: 1px solid var(--f-border);
  box-shadow: var(--f-shadow); transition: all .3s;
}
.f-tcard:hover        { transform: translateY(-3px); box-shadow: var(--f-shadow2); }
.f-tc-stars           { color: #f59e0b; font-size: .9rem; letter-spacing: 2px; margin-bottom: 12px; }
.f-tc-quote           { font-size: .92rem; line-height: 1.7; color: var(--f-text2); margin-bottom: 18px; font-style: italic; }
.f-tc-author          { display: flex; align-items: center; gap: 12px; }
.f-tc-avatar          { width: 40px; height: 40px; border-radius: 50%; background: var(--ac-light); display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; color: var(--ac1); flex-shrink: 0; }
.f-tc-author strong   { display: block; font-size: .88rem; font-weight: 700; }
.f-tc-author span     { display: block; font-size: .78rem; color: var(--f-text3); }

/* ── Case study (inner variant: f-cs-media / f-cs-body / f-cs-stats / f-cs-stat) ── */
.f-case-study         { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; padding: 48px; border-radius: 24px; background: var(--f-bg-card); border: 1px solid var(--f-border); box-shadow: var(--f-shadow); margin-bottom: 32px; }
.f-cs-media           { border-radius: 16px; overflow: hidden; background: var(--f-bg-alt); border: 1px solid var(--f-border); }
.f-cs-body            { }
.f-cs-stats           { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 28px; }
.f-cs-stat            { text-align: center; }
.f-cs-stat .f-counter { display: block; font-size: 2rem; font-weight: 800; letter-spacing: -.04em; background: linear-gradient(135deg, var(--ac1), var(--ac2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.f-cs-stat small      { display: block; font-size: .75rem; color: var(--f-text3); font-weight: 600; margin-top: 2px; }

/* ── Objection handling (f-obj-*) ── */
.f-obj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.f-obj-card { padding: 32px; border-radius: 20px; background: var(--f-bg-card); border: 1px solid var(--f-border); }
.f-obj-q    { font-size: 1rem; font-weight: 700; color: var(--f-text); margin-bottom: 16px; line-height: 1.4; }
.f-obj-q i  { color: var(--ac1); margin-right: 6px; }
.f-obj-a    { font-size: .9rem; color: var(--f-text2); line-height: 1.65; }

/* ── Offer list (f-offer-list / f-oi-* / f-ot-*) ── */
.f-offer-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.f-offer-item { display: flex; align-items: center; gap: 18px; padding: 18px 24px; background: var(--f-bg-card); border: 1px solid var(--f-border); border-radius: 14px; transition: all .3s; }
.f-offer-item:hover   { border-color: rgba(var(--ac-rgb),.4); box-shadow: var(--f-shadow); transform: translateX(4px); }
.f-offer-item.bonus   { border-color: rgba(var(--ac-rgb),.3); background: var(--ac-light); }
.f-oi-icon   { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--ac1), var(--ac2)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 1rem; }
.f-oi-body   { flex: 1; }
.f-oi-body strong { display: block; font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.f-oi-body span   { font-size: .82rem; color: var(--f-text2); }
.f-oi-val    { font-size: .82rem; font-weight: 700; color: var(--f-text3); text-decoration: line-through; white-space: nowrap; }
.f-offer-total { padding: 24px 28px; border-radius: 16px; background: linear-gradient(135deg, var(--ac-light), rgba(255,255,255,.6)); border: 2px solid rgba(var(--ac-rgb),.3); font-size: .95rem; color: var(--f-text2); }
.f-ot-price    { font-weight: 700; color: var(--f-text); margin-top: 8px; font-size: 1.1rem; }

/* ── Architecture diagram ── */
.f-arch-diagram { position: relative; display: flex; align-items: center; justify-content: center; padding: 40px; min-height: 320px; }
.f-arch-center  { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--ac1), var(--ac2)); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; font-size: .78rem; font-weight: 700; text-align: center; box-shadow: 0 8px 32px rgba(var(--ac-rgb),.4); z-index: 2; position: relative; }
.f-arch-center i { font-size: 1.2rem; }
.f-arch-nodes   { position: absolute; inset: 0; }
.f-arch-node    { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; color: var(--f-text2); padding: 12px 14px; background: var(--f-bg-card); border: 1px solid var(--f-border); border-radius: 12px; box-shadow: var(--f-shadow); white-space: nowrap; }
.f-arch-node i  { font-size: 1.1rem; color: var(--ac1); }
.f-arch-nodes .f-arch-node:nth-child(1) { top: 5%;  left: 50%; transform: translateX(-50%); }
.f-arch-nodes .f-arch-node:nth-child(2) { top: 20%; right: 5%; }
.f-arch-nodes .f-arch-node:nth-child(3) { bottom: 20%; right: 5%; }
.f-arch-nodes .f-arch-node:nth-child(4) { bottom: 5%; left: 50%; transform: translateX(-50%); }
.f-arch-nodes .f-arch-node:nth-child(5) { bottom: 20%; left: 5%; }
.f-arch-nodes .f-arch-node:nth-child(6) { top: 20%; left: 5%; }

/* ── ROI result (f-roi-metric / f-roi-label / f-roi-val) ── */
.f-roi-metric     { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: rgba(255,255,255,.7); border-radius: 10px; margin-bottom: 10px; }
.f-roi-metric.big { background: linear-gradient(135deg, var(--ac-light), rgba(255,255,255,.5)); border: 1px solid rgba(var(--ac-rgb),.2); }
.f-roi-label      { font-size: .85rem; color: var(--f-text2); }
.f-roi-val        { font-size: 1.1rem; font-weight: 800; color: var(--ac1); }
.f-roi-val.big    { font-size: 1.6rem; letter-spacing: -.04em; }
.f-roi-val.accent { color: var(--ac1); }

/* ── Urgency section ── */
.f-urgency-wrap   { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.f-urgency-copy   { }
.f-urgency-slots  { display: flex; flex-direction: column; gap: 12px; }
.f-slot.taken     { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; height: auto; width: 100%; border-radius: 12px; padding: 14px 18px; font-size: .88rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.f-slot.open      { background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.15)); color: #fff; border: 2px solid rgba(255,255,255,.5); height: auto; width: 100%; border-radius: 12px; padding: 14px 18px; font-size: .88rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }

/* ── Countdown (f-cd-unit / f-cd-sep) ── */
.f-countdown      { display: flex; gap: 20px; align-items: center; margin: 28px 0; }
.f-cd-unit        { text-align: center; }
.f-cd-unit span   { display: block; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; letter-spacing: -.05em; color: #fff; line-height: 1; }
.f-cd-unit small  { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.7); margin-top: 6px; }
.f-cd-sep         { font-size: 2.5rem; font-weight: 800; color: rgba(255,255,255,.5); line-height: 1; margin-top: -8px; }

/* ── Guarantee badge ── */
.f-guarantee-badge { width: 44px; height: 44px; border-radius: 50%; background: #bbf7d0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.f-guarantee-badge i { color: #166534; font-size: 1.1rem; }
.f-guarantee       { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; background: var(--f-bg-card); border: 1px solid var(--f-border); border-radius: 16px; margin-top: 28px; }
.f-guarantee p     { color: var(--f-text2); font-size: .88rem; line-height: 1.6; margin-top: 4px; }

/* ── CTA section (f-cta-wrap / f-cta-copy / f-cta-form-wrap) ── */
.f-cta-wrap        { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.f-cta-copy        { }
.f-cta-form-wrap   { background: var(--f-bg-card); border-radius: 24px; padding: 40px; border: 1px solid var(--f-border); box-shadow: var(--f-shadow2); }
.f-cta-form-header { margin-bottom: 28px; }
.f-cta-form        { display: flex; flex-direction: column; gap: 14px; }
.f-cta-form input,
.f-cta-form select { width: 100%; padding: 14px 18px; border-radius: 10px; border: 1.5px solid var(--f-border); background: var(--f-bg); font-size: .95rem; font-family: inherit; color: var(--f-text); transition: border-color .2s; }
.f-cta-form input:focus,
.f-cta-form select:focus { outline: none; border-color: var(--ac1); }
.f-form-row        { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── Footer inner / bottom ── */
.f-footer-inner  { text-align: center; padding-bottom: 24px; }
.f-footer-bottom { text-align: center; font-size: .8rem; color: var(--f-text3); border-top: 1px solid var(--f-border); padding-top: 20px; }

/* ══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — OLD CLASS NAMES
══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .f-hero-cards    { height: 280px; order: -1; }
  .f-urgency-wrap  { grid-template-columns: 1fr; gap: 40px; }
  .f-cta-wrap      { grid-template-columns: 1fr; gap: 40px; }
  .f-obj-grid      { grid-template-columns: 1fr; }
  .f-case-study    { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .f-ba-wrap:has(.f-ba-divider) { flex-direction: column; }
  .f-ba-divider    { width: 100%; height: 48px; border: none; border-top: 1px solid var(--f-border); border-bottom: 1px solid var(--f-border); writing-mode: initial; flex-direction: row; }
  .f-ba-divider span { writing-mode: initial; }
}

@media (max-width: 600px) {
  .f-hero-cards    { display: none; }
  .f-hero-copy     { padding-bottom: 40px; }
  .f-nav           { padding: 14px 18px; }
  .f-nav.scrolled  { padding: 10px 18px; }
  .f-cta-form-wrap { padding: 28px 20px; }
  .f-form-row      { grid-template-columns: 1fr; }
  .f-obj-grid      { grid-template-columns: 1fr; }
  .f-cs-stats      { gap: 16px; }
  .f-urgency-wrap  { grid-template-columns: 1fr; }
  .f-countdown     { gap: 10px; }
  .f-cd-unit span  { font-size: 2rem; }
  .f-arch-diagram  { min-height: 260px; padding: 20px; }
  .f-arch-node     { padding: 8px 10px; font-size: .65rem; }
  .f-dm-pipeline   { flex-direction: column; }
  .f-dm-col        { min-width: auto; }
  .f-hero-actions  { flex-direction: column; align-items: stretch; }
  .f-hero-actions .f-btn,
  .f-hero-actions .f-btn-ghost { width: 100%; justify-content: center; }
  .f-section-head  { margin-bottom: 36px; }
}
