/* =============================================================================
   AWF PRO LANDING PAGE - COMPLETE STYLESHEET
   Version: 1.0
   Advanced WooCommerce Filters Pro — DevTonic Studios
   ============================================================================= */

/* ===== CSS VARIABLES (AWF Pro Specific) ===== */
.awf-landing {
  --awf-bg-deep: #001429;
  --awf-bg-mid: #0a1929;
  --awf-bg-card: rgba(255,255,255,0.03);
  --awf-bg-card-hover: rgba(255,255,255,0.06);
  --awf-accent: #00A3FF;
  --awf-accent-deep: #0066FF;
  --awf-accent-dark: #0052CC;
  --awf-text: #e8edf4;
  --awf-text-dim: #8899aa;
  --awf-text-muted: #556677;
  --awf-border: rgba(255,255,255,0.06);
  --awf-border-accent: rgba(0,163,255,0.2);
  --awf-green: #22c55e;
  --awf-red: #ef4444;
  --awf-yellow: #fbbf24;
  --awf-purple: #a855f7;
  --awf-radius: 12px;
  --awf-radius-sm: 8px;
  --awf-font: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --awf-mono: 'JetBrains Mono', monospace;
}

/* ===== BASE OVERRIDES FOR AWF LANDING ===== */
.awf-landing {
  font-family: var(--awf-font);
  background: var(--awf-bg-deep);
  color: var(--awf-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
.awf-landing a { color: inherit; text-decoration: none; }
.awf-landing *, .awf-landing *::before, .awf-landing *::after { box-sizing: border-box; }

/* ===== UTILITY ===== */
.awf-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.awf-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--awf-accent); margin-bottom: 16px;
}
.awf-section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--awf-accent); border-radius: 2px;
}
.awf-section-title {
  font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.15;
  color: #fff; margin-bottom: 20px;
}
.awf-section-desc {
  font-size: 18px; color: var(--awf-text-dim); max-width: 640px; line-height: 1.8;
}
.awf-gradient-text {
  background: linear-gradient(90deg, #00A3FF 0%, #CCE5FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.awf-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: var(--awf-radius-sm);
  background: linear-gradient(135deg, #0066FF, #0052CC);
  color: #fff; font-weight: 700; font-size: 16px;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
  font-family: var(--awf-font);
}
.awf-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,102,255,0.4);
}
.awf-btn-primary::after { content: '→'; transition: transform 0.2s; }
.awf-btn-primary:hover::after { transform: translateX(4px); }
.awf-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: var(--awf-radius-sm);
  background: rgba(255,255,255,0.05); border: 1px solid var(--awf-border);
  color: var(--awf-text); font-weight: 600; font-size: 16px; cursor: pointer;
  transition: all 0.2s; font-family: var(--awf-font);
}
.awf-btn-secondary:hover {
  background: rgba(255,255,255,0.08); border-color: var(--awf-border-accent); color: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes awfShimmer { 0% { left: -100%; } 100% { left: 200%; } }
@keyframes awfPulseGlow { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 0.8; transform: scale(1.05); } }
@keyframes awfBlink { 50% { border-color: transparent; } }
@keyframes awfFloatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes awfHeroIn { to { opacity: 1; transform: translateX(0); } }

.awf-reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.awf-reveal.visible { opacity: 1; transform: translateY(0); }
.awf-reveal-d1 { transition-delay: 0.1s; }
.awf-reveal-d2 { transition-delay: 0.2s; }
.awf-reveal-d4 { transition-delay: 0.4s; }

/* ===== HERO ===== */
.awf-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 100px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
}
.awf-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,102,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,102,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(0,163,255,0.08) 0%, transparent 40%);
  animation: awfPulseGlow 15s ease-in-out infinite;
}
.awf-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.25), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(0,102,255,0.35), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.15), transparent),
    radial-gradient(2px 2px at 80% 10%, rgba(0,163,255,0.25), transparent);
  background-size: 200% 200%;
  animation: awfPulseGlow 20s ease-in-out infinite reverse;
  pointer-events: none;
}
.awf-hero-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
  width: 100%;
}
.awf-hero-content {
  opacity: 0; transform: translateX(-60px);
  animation: awfHeroIn 1s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}
.awf-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); padding: 8px 18px;
  border-radius: 6px; font-size: 12px; font-weight: 600;
  color: var(--awf-accent); margin-bottom: 24px;
  border: 1px solid var(--awf-border-accent);
  position: relative; overflow: hidden;
}
.awf-hero-badge::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: awfShimmer 3s infinite;
}
.awf-hero-badge svg { width: 16px; height: 16px; }
.awf-hero h1 {
  font-size: clamp(40px, 5vw, 62px); font-weight: 800; line-height: 1.12;
  color: #fff; margin-bottom: 24px;
}
.awf-hero-desc {
  font-size: 19px; color: var(--awf-text-dim); line-height: 1.8;
  margin-bottom: 36px; max-width: 540px;
}
.awf-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.awf-hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.awf-hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--awf-text-dim);
}
.awf-hero-trust-item svg { width: 16px; height: 16px; color: var(--awf-green); }

/* Hero Visual */
.awf-hero-visual {
  opacity: 0; transform: translateX(60px);
  animation: awfHeroIn 1s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
  max-width: 100%;
  overflow: hidden;
}
.awf-demo-topbar {
  padding: 14px 20px; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--awf-border);
}
.awf-demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.awf-demo-dot:nth-child(1) { background: #ff5f57; }
.awf-demo-dot:nth-child(2) { background: #febc2e; }
.awf-demo-dot:nth-child(3) { background: #28c840; }
.awf-demo-url {
  flex: 1; margin-left: 12px; padding: 6px 14px; border-radius: 6px;
  background: rgba(255,255,255,0.04); font-size: 12px; color: var(--awf-text-muted);
  font-family: var(--awf-mono);
}

/* ===== PROBLEM ===== */
.awf-problem-section {
  padding: 120px 0; position: relative;
  background: linear-gradient(180deg, var(--awf-bg-deep), var(--awf-bg-mid));
}
.awf-problem-header { text-align: center; margin-bottom: 48px; }
.awf-problem-header .awf-section-desc { margin: 0 auto; }
.awf-problem-connector {
  display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 36px;
}
.awf-problem-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; background: #0066FF;
}
.awf-problem-line {
  height: 2px; flex: 1; max-width: 140px;
  background: linear-gradient(90deg, #0066FF, #00A3FF);
}
.awf-problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.awf-problem-card {
  background: var(--awf-bg-card); border: 1px solid var(--awf-border);
  border-radius: 16px; padding: 32px 24px; text-align: center;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.awf-problem-card:hover { border-color: #00A3FF; transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,163,255,0.15); }
.awf-problem-badge {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 18px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #0066FF, #00A3FF);
}
.awf-problem-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.35; }
.awf-problem-card p { font-size: 15px; color: var(--awf-text-dim); line-height: 1.75; text-align: left; }
.awf-problem-pill {
  display: inline-block; margin-top: 16px; padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
  background: rgba(0,163,255,0.1); color: #00A3FF; border: 1px solid rgba(0,163,255,0.2);
}

/* ===== VARIATION-AWARE FILTERING ===== */
.awf-variation-section {
  padding: 120px 0; position: relative;
  background: linear-gradient(180deg, var(--awf-bg-mid), var(--awf-bg-deep));
}
.awf-variation-top { text-align: center; margin-bottom: 32px; }
.awf-variation-top .awf-section-label { justify-content: center; }
.awf-variation-top .awf-section-desc { max-width: 660px; margin: 0 auto; }
.awf-var-filters-bar {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--awf-border);
  border-radius: 10px; margin-bottom: 10px;
}
.awf-var-fb-label { font-size: 12px; color: var(--awf-text-dim); font-weight: 600; }
.awf-var-chip {
  padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600;
  background: var(--awf-accent); color: #fff;
}
.awf-var-fb-count { font-size: 12px; color: var(--awf-text-dim); margin-left: auto; }
.awf-var-grid-label {
  margin: 0 0 8px; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}
.awf-var-label-bad { color: var(--awf-text-dim); }
.awf-var-label-good { color: var(--awf-accent); }
.awf-var-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.awf-var-grid-3 { grid-template-columns: repeat(3, 1fr); }
.awf-var-card {
  border: 2px solid var(--awf-border); border-radius: 12px; overflow: hidden;
  position: relative; background: rgba(255,255,255,0.03);
}
.awf-var-card-bad { border-color: rgba(148,163,184,0.3); background: rgba(148,163,184,0.04); opacity: 0.7; }
.awf-var-card-normal { border-color: var(--awf-border); background: rgba(255,255,255,0.03); }
.awf-var-card-good { border-color: rgba(0,102,255,0.4); background: rgba(0,102,255,0.04); }
.awf-var-card-img {
  height: 100px; display: flex; align-items: center; justify-content: center; position: relative;
}
.awf-var-card-img svg { width: 40px; height: 40px; }
.awf-var-img-normal { background: rgba(255,255,255,0.04); }
.awf-var-img-normal svg { color: #64748b; }
.awf-var-img-good { background: rgba(0,102,255,0.06); }
.awf-var-img-good svg { stroke: var(--awf-accent); }
.awf-var-card-body { padding: 12px 14px; }
.awf-var-card-name { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.awf-var-card-bad .awf-var-card-name { color: #94a3b8; }
.awf-var-card-combos { font-size: 11px; color: var(--awf-text-dim); margin-bottom: 6px; }
.awf-var-card-badge {
  position: absolute; top: 8px; right: 8px; padding: 4px 10px; border-radius: 6px;
  font-size: 10px; font-weight: 700; background: var(--awf-accent); color: #fff; z-index: 2;
}
.awf-var-card-price { font-size: 15px; font-weight: 700; color: var(--awf-accent); }
.awf-var-card-price-normal { font-size: 15px; font-weight: 700; color: #94a3b8; }
.awf-var-card-btn {
  margin-top: 8px; width: 100%; padding: 8px; border-radius: 8px;
  background: var(--awf-accent); color: #fff; font-size: 12px; font-weight: 600; text-align: center;
}
.awf-var-note {
  margin: 12px 0 0; text-align: center;
  padding: 12px 20px; border-radius: 10px; font-size: 13px; font-weight: 600;
}
.awf-var-note-bad { background: rgba(148,163,184,0.08); color: #94a3b8; border: 1px solid rgba(148,163,184,0.15); }
.awf-var-note-bad strong { color: #fff; }
.awf-var-note-good { background: rgba(0,102,255,0.08); color: #7dd3fc; border: 1px solid rgba(0,102,255,0.2); }
.awf-var-divider {
  margin: 28px 0; text-align: center;
  display: flex; align-items: center; gap: 12px;
}
.awf-var-divider::before, .awf-var-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--awf-border);
}
.awf-var-divider-text {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--awf-accent); white-space: nowrap;
}
.awf-var-toggle {
  width: 32px; height: 18px; border-radius: 9px; background: var(--awf-accent);
  position: relative; display: inline-block; flex-shrink: 0;
}
.awf-var-toggle::after {
  content: ''; position: absolute; top: 2px; right: 2px;
  width: 14px; height: 14px; border-radius: 50%; background: #fff;
}
.awf-var-table-wrap {
  max-width: 680px; margin: 0 auto 10px;
  border: 1px solid var(--awf-border); border-radius: 12px; overflow: hidden;
}
.awf-var-table {
  width: 100%; border-collapse: collapse; font-size: 13px;
}
.awf-var-table th {
  background: rgba(255,255,255,0.04); padding: 10px 14px; text-align: center;
  font-weight: 700; color: var(--awf-text-dim); border-bottom: 1px solid var(--awf-border);
  font-size: 11px; letter-spacing: 0.3px;
}
.awf-var-table th:first-child { text-align: left; color: #fff; font-size: 12px; }
.awf-var-th-highlight { background: rgba(0,102,255,0.1) !important; color: var(--awf-accent) !important; }
.awf-var-table td {
  padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); text-align: center;
}
.awf-var-table tr:last-child td { border-bottom: none; }
.awf-var-td-name { text-align: left !important; font-weight: 600; color: #fff; }
.awf-var-td-highlight { background: rgba(0,102,255,0.06); }
.awf-var-yes { color: var(--awf-accent); font-weight: 700; font-size: 15px; }
.awf-var-no { color: #475569; font-weight: 700; font-size: 15px; }
.awf-var-table-note {
  max-width: 680px; margin: 0 auto 32px; text-align: center;
  font-size: 12px; color: var(--awf-text-dim); padding: 8px;
}
.awf-var-table-note strong { color: #fff; }

/* Light bg overrides for variation */
.awf-bg-light .awf-var-filters-bar { background: #f8fafc; border-color: #e8ecf0; }
.awf-bg-light .awf-var-fb-label { color: #64748b; }
.awf-bg-light .awf-var-fb-count { color: #94a3b8; }
.awf-bg-light .awf-var-card { background: #fff; border-color: #e8ecf0; }
.awf-bg-light .awf-var-card-bad { border-color: #cbd5e1; background: #f8fafc; opacity: 0.7; }
.awf-bg-light .awf-var-card-normal { border-color: #e8ecf0; background: #fff; }
.awf-bg-light .awf-var-card-good { border-color: #0066FF; background: #f0f7ff; opacity: 1; }
.awf-bg-light .awf-var-card-name { color: #0a0a0a; }
.awf-bg-light .awf-var-card-bad .awf-var-card-name { color: #94a3b8; }
.awf-bg-light .awf-var-card-combos { color: #94a3b8; }
.awf-bg-light .awf-var-card-badge { background: #0066FF; color: #fff; }
.awf-bg-light .awf-var-card-price { color: #0066FF; }
.awf-bg-light .awf-var-card-price-normal { color: #334155; }
.awf-bg-light .awf-var-card-btn { background: #0066FF; }
.awf-bg-light .awf-var-img-normal { background: #f8fafc; }
.awf-bg-light .awf-var-img-normal svg { color: #334155; }
.awf-bg-light .awf-var-img-good { background: rgba(0,102,255,0.06); }
.awf-bg-light .awf-var-img-good svg { stroke: #0066FF; }
.awf-bg-light .awf-var-note-bad { background: #f8fafc; color: #334155; border-color: #e8ecf0; }
.awf-bg-light .awf-var-note-bad strong { color: #0a0a0a; }
.awf-bg-light .awf-var-note-good { background: #f0f7ff; color: #0052CC; border-color: rgba(0,102,255,0.2); }
.awf-bg-light .awf-var-label-bad { color: #94a3b8; }
.awf-bg-light .awf-var-label-good { color: #0066FF; }
.awf-bg-light .awf-var-divider::before, .awf-bg-light .awf-var-divider::after { background: #e2e8f0; }
.awf-bg-light .awf-var-divider-text { color: #0066FF; }
.awf-bg-light .awf-var-table-wrap { border-color: #e8ecf0; }
.awf-bg-light .awf-var-table th { background: #f8fafc; color: #64748b; border-bottom-color: #e8ecf0; }
.awf-bg-light .awf-var-table th:first-child { color: #0a0a0a; }
.awf-bg-light .awf-var-th-highlight { background: #f0f7ff !important; color: #0066FF !important; }
.awf-bg-light .awf-var-table td { border-bottom-color: #f1f5f9; }
.awf-bg-light .awf-var-td-name { color: #0a0a0a; }
.awf-bg-light .awf-var-td-highlight { background: #f0f7ff; }
.awf-bg-light .awf-var-yes { color: #0066FF; }
.awf-bg-light .awf-var-no { color: #cbd5e1; }
.awf-bg-light .awf-var-table-note { color: #64748b; }
.awf-bg-light .awf-var-table-note strong { color: #0a0a0a; }
.awf-bg-light .awf-variation-top .awf-section-title { color: #0a0a0a !important; }
.awf-bg-light .awf-variation-top .awf-section-desc { color: #64748b !important; }
.awf-bg-light .awf-variation-top .awf-section-label { color: #0066FF !important; }
.awf-bg-light .awf-variation-top .awf-section-label::before { background: #0066FF !important; }


/* ===== BEYOND BRIDGE (clean, no card) ===== */
.awf-beyond-bridge {
  padding: 80px 0;
  background: #0a1929;
  text-align: center;
  position: relative;
}
.awf-beyond-bridge::before {
  content: ''; position: absolute; top: 0; left: 25%; right: 25%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,102,255,0.4), transparent);
}
.awf-beyond-bridge::after {
  content: ''; position: absolute; bottom: 0; left: 25%; right: 25%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,102,255,0.4), transparent);
}
.awf-bridge-text {
  font-size: 26px; font-weight: 800; color: #fff; line-height: 1.4;
  margin-bottom: 12px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.awf-bridge-sub {
  font-size: 15px; color: #556677; max-width: 520px; margin: 0 auto; line-height: 1.6;
}

/* ===== TRUST SCENARIOS ===== */
.awf-trust-header { margin-bottom: 48px; }
.awf-trust-scenarios {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 900px; margin: 0 auto 24px;
}
.awf-trust-sc { border-radius: 14px; padding: 24px; }
.awf-trust-sc-bad { background: #f8fafc; border: 1px solid #e8ecf0; }
.awf-trust-sc-good { background: #0066FF; }
.awf-trust-sc-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.awf-trust-sl-bad { color: #94a3b8; }
.awf-trust-sl-good { color: rgba(255,255,255,0.6); }
.awf-trust-step { display: flex; gap: 10px; margin-bottom: 14px; align-items: start; }
.awf-trust-step:last-of-type { margin-bottom: 0; }
.awf-trust-time { font-size: 10px; font-weight: 700; width: 48px; flex-shrink: 0; text-align: right; padding-top: 2px; }
.awf-trust-sc-bad .awf-trust-time { color: #94a3b8; }
.awf-trust-sc-good .awf-trust-time { color: rgba(255,255,255,0.5); }
.awf-trust-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 4px; flex-shrink: 0; }
.awf-td-grey { background: #cbd5e1; }
.awf-td-blue { background: #fff; }
.awf-trust-text { font-size: 12px; line-height: 1.5; }
.awf-tt-bad { color: #64748b; }
.awf-tt-bad strong { color: #334155; }
.awf-tt-good { color: #fff; }
.awf-tt-good strong { color: #fff; }
.awf-trust-mood {
  margin-top: 18px; padding-top: 14px; text-align: center;
  font-size: 12px; font-weight: 700;
}
.awf-tm-bad { border-top: 1px solid #e8ecf0; color: #ef4444; }
.awf-tm-good { border-top: 1px solid rgba(255,255,255,0.15); color: #fff; }
.awf-trust-guarantee {
  max-width: 900px; margin: 0 auto; background: #f0f7ff;
  border: 1px solid rgba(0,102,255,0.15); border-radius: 14px;
  padding: 20px; display: flex; align-items: center; gap: 16px;
}
.awf-trust-guarantee-icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(0,102,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.awf-trust-guarantee-icon svg { width: 24px; height: 24px; color: #0066FF; }
.awf-trust-guarantee h3 { font-size: 14px; font-weight: 700; color: #0a0a0a; margin-bottom: 3px; }
.awf-trust-guarantee p { font-size: 12px; color: #64748b; line-height: 1.5; }

/* ===== WEEKLY EMAIL CARD ===== */
.awf-weekly-card {
  background: #0066FF; border-radius: 16px; padding: 24px;
  box-shadow: 0 8px 30px rgba(0,102,255,0.25);
}
.awf-weekly-from {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.awf-weekly-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.awf-weekly-avatar svg { width: 18px; height: 18px; color: #fff; }
.awf-weekly-from-text { flex: 1; }
.awf-weekly-from-name { font-size: 12px; font-weight: 700; color: #fff; }
.awf-weekly-from-email { font-size: 10px; color: rgba(255,255,255,0.6); }
.awf-weekly-time { font-size: 10px; color: rgba(255,255,255,0.5); }
.awf-weekly-subject { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.awf-weekly-preview { font-size: 11px; color: rgba(255,255,255,0.7); margin-bottom: 18px; line-height: 1.5; }
.awf-weekly-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.awf-weekly-stat {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 12px; text-align: center;
}
.awf-weekly-stat-val { font-size: 20px; font-weight: 800; color: #fff; }
.awf-weekly-stat-label { font-size: 8px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.3px; margin-top: 2px; }
.awf-weekly-stat-change { font-size: 9px; color: #86efac; font-weight: 600; }
.awf-weekly-section { margin-bottom: 14px; }
.awf-weekly-section:last-child { margin-bottom: 0; }
.awf-weekly-section-title {
  font-size: 10px; font-weight: 700; color: #fff; margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.awf-weekly-section-title svg { width: 12px; height: 12px; color: #fff; }
.awf-weekly-gap {
  display: flex; justify-content: space-between; padding: 6px 10px;
  background: rgba(255,255,255,0.08); border-radius: 6px; margin-bottom: 4px;
}
.awf-weekly-gap:last-child { margin-bottom: 0; }
.awf-weekly-gap-name { font-size: 10px; color: #fff; font-weight: 600; }
.awf-weekly-gap-count { font-size: 10px; font-weight: 700; color: #fbbf24; }
.awf-weekly-tip {
  padding: 8px 10px; background: rgba(255,255,255,0.08); border-radius: 6px;
  font-size: 10px; color: rgba(255,255,255,0.8); line-height: 1.5; margin-bottom: 4px;
}
.awf-weekly-tip:last-child { margin-bottom: 0; }
.awf-weekly-tip strong { color: #fff; }
.awf-weekly-rev {
  display: flex; justify-content: space-between; padding: 6px 10px;
  background: rgba(255,255,255,0.08); border-radius: 6px; margin-bottom: 4px;
}
.awf-weekly-rev:last-child { margin-bottom: 0; }
.awf-weekly-rev-name { font-size: 10px; color: rgba(255,255,255,0.7); }
.awf-weekly-rev-val { font-size: 10px; font-weight: 700; color: #86efac; }
.awf-weekly-footer {
  margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 9px; color: rgba(255,255,255,0.4); text-align: center;
}

/* ===== DISPLAY RULES MOCKUPS ===== */
.awf-dr-mockups { display: flex; flex-direction: column; gap: 6px; }
.awf-dr-label { font-size: 12px; font-weight: 600; color: #334155; margin-bottom: 4px; }
.awf-dr-browser { border: 1px solid rgba(0,102,255,0.2); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,102,255,0.1); }
.awf-dr-bbar {
  padding: 7px 10px; background: #0066FF; border-bottom: 1px solid rgba(0,102,255,0.3);
  display: flex; align-items: center; gap: 6px;
}
.awf-dr-dots { display: flex; gap: 3px; }
.awf-dr-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.awf-dr-url {
  flex: 1; padding: 3px 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; font-size: 9px; color: rgba(255,255,255,0.7); font-family: monospace;
}
.awf-dr-shop { display: grid; grid-template-columns: 130px 1fr; }
.awf-dr-sidebar { padding: 10px; border-right: 1px solid #f1f5f9; background: #fafbfc; }
.awf-dr-sb-badge {
  display: inline-block; padding: 2px 8px; border-radius: 5px;
  font-size: 10px; font-weight: 600; background: #f0f7ff; color: #0066FF; margin-bottom: 8px;
}
.awf-dr-fg { margin-bottom: 10px; }
.awf-dr-fg:last-child { margin-bottom: 0; }
.awf-dr-fg-title {
  font-size: 10px; font-weight: 700; color: #334155; margin-bottom: 4px;
  padding-bottom: 3px; border-bottom: 1px solid #f1f5f9;
}
.awf-dr-fg-list { display: flex; flex-direction: column; gap: 3px; }
.awf-dr-fg-item { display: flex; align-items: center; gap: 5px; font-size: 9px; color: #64748b; }
.awf-dr-fg-box { width: 10px; height: 10px; border-radius: 2px; border: 1px solid #cbd5e1; flex-shrink: 0; }
.awf-dr-fg-count { margin-left: auto; font-size: 8px; color: #94a3b8; }
.awf-dr-fg-swatches { display: flex; gap: 4px; }
.awf-dr-swatch { width: 16px; height: 16px; border-radius: 50%; border: 1px solid #e2e8f0; }
.awf-dr-stars { font-size: 9px; color: #f59e0b; }
.awf-dr-fg-slider {
  height: 4px; background: #e2e8f0; border-radius: 2px; position: relative; margin: 8px 0;
}
.awf-dr-fg-slider-fill { position: absolute; left: 10%; right: 30%; height: 100%; background: #0066FF; border-radius: 2px; }
.awf-dr-fg-slider-thumb {
  width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2px solid #0066FF;
  position: absolute; top: -4px;
}
.awf-dr-thumb-l { left: calc(10% - 6px); }
.awf-dr-thumb-r { right: calc(30% - 6px); }
.awf-dr-fg-range { display: flex; justify-content: space-between; font-size: 8px; color: #94a3b8; }
.awf-dr-products { padding: 10px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; align-content: start; }
.awf-dr-prod { border: 1px solid #f1f5f9; border-radius: 6px; overflow: hidden; }
.awf-dr-prod-img {
  height: 44px; background: #f8fafc; display: flex; align-items: center; justify-content: center;
}
.awf-dr-prod-img svg { width: 18px; height: 18px; color: #94a3b8; }
.awf-dr-prod-name { font-size: 8px; font-weight: 600; color: #334155; padding: 4px 6px 0; }
.awf-dr-prod-price { font-size: 9px; font-weight: 700; color: #0066FF; padding: 0 6px 4px; }
.awf-dr-note { font-size: 10px; color: #64748b; margin-top: 4px; }
.awf-dr-mobile { display: flex; gap: 14px; align-items: center; margin-top: 14px; }
.awf-dr-phone {
  width: 100px; background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
  overflow: hidden; padding: 6px 8px 10px; flex-shrink: 0;
}
.awf-dr-phone-notch { width: 30px; height: 4px; background: #e2e8f0; border-radius: 2px; margin: 0 auto 6px; }
.awf-dr-phone-head { font-size: 7px; font-weight: 600; color: #334155; margin-bottom: 4px; padding-bottom: 3px; border-bottom: 1px solid #f1f5f9; }
.awf-dr-phone-btn { padding: 4px; background: #0066FF; border-radius: 4px; color: #fff; font-size: 8px; font-weight: 600; text-align: center; margin-bottom: 4px; }
.awf-dr-phone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-bottom: 4px; }
.awf-dr-phone-grid span { height: 20px; background: #f8fafc; border-radius: 3px; border: 1px solid #f1f5f9; }
.awf-dr-phone-sheet { background: #f8fafc; border: 1px solid #e8ecf0; border-radius: 6px; padding: 4px 6px; }
.awf-dr-phone-sheet-title { font-size: 7px; font-weight: 700; color: #64748b; margin-bottom: 3px; }
.awf-dr-phone-f { padding: 2px 0; font-size: 7px; color: #334155; border-bottom: 1px solid #f1f5f9; }
.awf-dr-phone-f:last-child { border-bottom: none; }
.awf-dr-mobile-text h4 { font-size: 14px; font-weight: 700; color: #0a0a0a; margin-bottom: 4px; }
.awf-dr-mobile-text p { font-size: 12px; color: #64748b; line-height: 1.6; }

/* ===== ANALYTICS DASHBOARD CARD ===== */
.awf-dash-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.awf-dash-head {
  padding: 14px 16px; background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.awf-dash-title { font-size: 13px; font-weight: 700; color: #fff; }
.awf-dash-period {
  font-size: 10px; color: #64748b; padding: 4px 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px;
}
.awf-dash-tabs {
  display: flex; gap: 2px; padding: 4px; background: rgba(255,255,255,0.03); overflow-x: auto;
}
.awf-dash-tab {
  padding: 8px 12px; border-radius: 6px; font-size: 10px; font-weight: 600;
  color: #64748b; cursor: pointer; white-space: nowrap; transition: all 0.3s;
}
.awf-dash-tab.active { background: #0066FF; color: #fff; }
.awf-dash-tab:hover:not(.active) { background: rgba(255,255,255,0.06); color: #fff; }
.awf-dash-panel { padding: 16px; height: 280px; overflow: hidden; }
.awf-dash-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.awf-dash-metric {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 10px; text-align: center;
}
.awf-dash-metric-val { font-size: 18px; font-weight: 800; color: #fff; }
.awf-dash-up { font-size: 9px; font-weight: 600; color: #86efac; margin-left: 3px; }
.awf-dash-metric-label {
  font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: 0.3px; margin-top: 2px;
}
.awf-dash-chart { height: 50px; margin-bottom: 14px; }
.awf-dash-chart svg { width: 100%; height: 100%; }
.awf-dash-list-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 6px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 6px;
}
.awf-dash-list-head span {
  font-size: 9px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.3px;
}
.awf-dash-list-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.awf-dash-list-row:last-child { border-bottom: none; }
.awf-dash-list-name { font-size: 11px; color: #fff; font-weight: 600; }
.awf-dash-list-sub { font-size: 9px; color: #64748b; }
.awf-dash-list-val { font-size: 12px; font-weight: 700; }
.awf-dash-blue { color: #60a5fa; }
.awf-dash-red { color: #f87171; }
.awf-dash-green { color: #86efac; }
.awf-dash-desc { font-size: 11px; color: #8899aa; margin-bottom: 12px; line-height: 1.5; }
.awf-dash-bar { margin-bottom: 8px; }
.awf-dash-bar:last-child { margin-bottom: 0; }
.awf-dash-bar-label {
  display: flex; justify-content: space-between; font-size: 10px; margin-bottom: 3px;
  color: #fff; font-weight: 600;
}
.awf-dash-bar-track { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.awf-dash-bar-fill { height: 100%; border-radius: 3px; background: #0066FF; }
.awf-dash-gap {
  display: flex; align-items: center; padding: 8px 10px;
  background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.1);
  border-radius: 8px; margin-bottom: 6px;
}
.awf-dash-gap:last-child { margin-bottom: 0; }
.awf-dash-gap-text { flex: 1; font-size: 11px; color: #fff; font-weight: 600; }
.awf-dash-gap-count { font-size: 11px; font-weight: 700; color: #f87171; }
.awf-dash-wl-row {
  display: flex; align-items: center; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.awf-dash-wl-row:last-child { border-bottom: none; }
.awf-dash-wl-email { font-size: 11px; color: #fff; font-weight: 600; flex: 1; }
.awf-dash-wl-product { font-size: 10px; color: #64748b; flex: 1; }
.awf-dash-wl-status { font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.awf-dash-wl-waiting { background: rgba(251,191,36,0.1); color: #fbbf24; }
.awf-dash-wl-notified { background: rgba(34,197,94,0.1); color: #86efac; }
.awf-dash-tip {
  padding: 10px; background: rgba(251,191,36,0.06); border: 1px solid rgba(251,191,36,0.1);
  border-radius: 8px; margin-bottom: 8px;
}
.awf-dash-tip:last-child { margin-bottom: 0; }
.awf-dash-tip-head {
  font-size: 10px; font-weight: 700; color: #fbbf24; margin-bottom: 3px;
  display: flex; align-items: center; gap: 4px;
}
.awf-dash-tip-head svg { width: 12px; height: 12px; color: #fbbf24; }
.awf-dash-tip p { font-size: 10px; color: #8899aa; line-height: 1.5; }
.awf-dash-tip p strong { color: #fff; }
.awf-dash-hint {
  text-align: center; padding: 10px; font-size: 11px; color: #64748b; margin-top: 8px;
}

/* ===== ZERO RESULTS CARD ===== */
.awf-zero-card {
  background: #0066FF; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,102,255,0.25);
}
.awf-zero-head { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.awf-zero-chips { display: flex; gap: 6px; margin-bottom: 12px; }
.awf-zero-chip {
  padding: 5px 12px; border-radius: 6px; font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2);
}
.awf-zero-empty {
  background: rgba(0,0,0,0.12); border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 12px; padding: 24px; text-align: center;
}
.awf-zero-empty svg { width: 36px; height: 36px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.awf-zero-empty h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.awf-zero-empty p { font-size: 11px; color: rgba(255,255,255,0.6); }
.awf-zero-body { padding: 20px; }
.awf-zero-instead {
  font-size: 11px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.awf-zero-instead::before, .awf-zero-instead::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.2);
}
.awf-zero-feat { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.awf-zero-feat:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.awf-zero-feat-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.awf-zero-feat-num {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.awf-zero-feat-title { font-size: 12px; font-weight: 700; color: #fff; }
.awf-zero-feat-desc {
  font-size: 10px; color: rgba(255,255,255,0.7); margin-bottom: 10px;
  padding-left: 32px; line-height: 1.5;
}
.awf-zero-prods { display: flex; gap: 8px; padding-left: 32px; }
.awf-zero-prod {
  flex: 1; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; padding: 10px; text-align: center;
}
.awf-zero-prod-img {
  width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 6px;
}
.awf-zero-prod-img svg { width: 20px; height: 20px; color: #fff; }
.awf-zero-prod-name { font-size: 10px; font-weight: 600; color: #fff; margin-bottom: 1px; }
.awf-zero-prod-why {
  font-size: 8px; color: rgba(255,255,255,0.6); padding: 2px 6px;
  background: rgba(255,255,255,0.08); border-radius: 4px; display: inline-block; margin-bottom: 3px;
}
.awf-zero-prod-price { font-size: 12px; font-weight: 700; color: #fbbf24; }
.awf-zero-alts { display: flex; gap: 6px; flex-wrap: wrap; padding-left: 32px; }
.awf-zero-alt {
  padding: 8px 14px; border-radius: 8px; font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2);
}
.awf-zero-alt strong { color: #fbbf24; }
.awf-zero-notify { display: flex; gap: 6px; padding-left: 32px; }
.awf-zero-notify-input {
  flex: 1; padding: 10px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  font-size: 11px; color: rgba(255,255,255,0.5);
}
.awf-zero-notify-btn {
  padding: 10px 18px; border-radius: 8px; background: #fff;
  font-size: 11px; font-weight: 700; color: #0066FF; white-space: nowrap;
}

/* ===== BRIDGE ===== */
.awf-bridge-section {
  padding: 64px 0; text-align: center;
  background: var(--awf-bg-mid);
}
.awf-bridge-section h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.awf-bridge-section p { font-size: 17px; color: var(--awf-text-dim); max-width: 500px; margin: 0 auto; }

/* ===== WIZARD SPOTLIGHT ===== */
.awf-wizard-section {
  padding: 120px 0; position: relative;
}
.awf-wizard-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.awf-wizard-right { max-width: 480px; width: 100%; }
.awf-wiz-timeline { position: relative; }
.awf-wiz-line {
  position: absolute; left: 23px; top: 28px; bottom: 28px; width: 2px;
  background: linear-gradient(180deg, #0052CC, #0066FF, #00A3FF);
}
.awf-wiz-step { display: flex; gap: 16px; margin-bottom: 28px; position: relative; }
.awf-wiz-step:last-child { margin-bottom: 0; }
.awf-wiz-dot {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff; position: relative; z-index: 2;
}
.awf-wiz-dot-1 { background: linear-gradient(135deg, #0052CC, #0066FF); }
.awf-wiz-dot-2 { background: linear-gradient(135deg, #0066FF, #00A3FF); }
.awf-wiz-dot-3 { background: linear-gradient(135deg, #00A3FF, #38bdf8); }
.awf-wiz-body { flex: 1; padding-top: 4px; }
.awf-wiz-body h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.awf-wiz-body p { font-size: 13px; color: var(--awf-text-dim); line-height: 1.6; }
.awf-scan-card {
  background: #0066FF; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,102,255,0.25);
}
.awf-scan-head {
  padding: 16px 20px; background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: space-between;
}
.awf-scan-head span { font-size: 14px; font-weight: 700; color: #fff; }
.awf-scan-badge {
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 12px;
  background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25);
}
.awf-scan-body { padding: 20px; }
.awf-scan-row {
  display: flex; align-items: center; gap: 12px; padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.awf-scan-row:last-of-type { border-bottom: none; }
.awf-scan-check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.awf-scan-check svg { width: 12px; height: 12px; color: #fff; }
.awf-scan-label { font-size: 14px; color: rgba(255,255,255,0.7); flex: 1; }
.awf-scan-val { font-size: 14px; font-weight: 700; color: #fff; font-family: 'JetBrains Mono', monospace; }
.awf-scan-divider {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); padding: 16px 0 8px;
}
.awf-scan-result {
  margin-top: 16px; padding: 14px 16px; border-radius: 10px; text-align: center;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  font-size: 14px; font-weight: 700; color: #fff;
}
.awf-scan-result em { font-style: normal; color: rgba(255,255,255,0.6); font-weight: 400; }
.awf-scan-layouts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.awf-scan-layout-opt {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 10px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.awf-scan-layout-opt svg { color: rgba(255,255,255,0.5); }
.awf-scan-layout-active {
  background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.awf-scan-layout-active svg { color: #fff; }

/* Wizard section light bg overrides */
.awf-bg-light .awf-wiz-body h4 { color: #0a0a0a !important; }
.awf-bg-light .awf-wiz-body p { color: #64748b !important; }

/* ===== NL SEARCH / SPOTLIGHT SECTIONS ===== */
.awf-nl-section {
  padding: 120px 0; position: relative;
  background: linear-gradient(180deg, var(--awf-bg-mid), var(--awf-bg-deep));
}
.awf-nl-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.awf-nl-content .awf-section-desc { margin-bottom: 32px; }
.awf-nl-points { display: flex; flex-direction: column; gap: 20px; }
.awf-nl-point { display: flex; align-items: start; gap: 14px; }
.awf-nl-point-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,163,255,0.08); border: 1px solid var(--awf-border-accent);
}
.awf-nl-point-icon svg { width: 18px; height: 18px; color: var(--awf-accent); }
.awf-nl-point h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.awf-nl-point p { font-size: 14px; color: var(--awf-text-dim); line-height: 1.65; }
.awf-nl-demo-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--awf-border);
  border-radius: 16px; padding: 28px; position: relative;
  box-shadow: 0 16px 60px rgba(0,0,0,0.3);
}
.awf-nl-demo-card::before {
  content: ''; position: absolute; top: -1px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--awf-accent), transparent);
}
.awf-nl-demo-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--awf-text-muted); margin-bottom: 16px;
}
.awf-nl-typed-text {
  font-size: 17px; font-weight: 500; color: #fff; flex: 1;
  white-space: nowrap; overflow: hidden;
  border-right: 2px solid var(--awf-accent);
  animation: awfBlink 1s step-end infinite;
}
.awf-nl-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; min-height: 36px; }
.awf-nl-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.awf-nl-tag.show { opacity: 1; transform: translateY(0); }
.awf-nl-tag.attr { background: rgba(0,163,255,0.12); color: var(--awf-accent); border: 1px solid var(--awf-border-accent); }
.awf-nl-tag.price { background: rgba(34,197,94,0.12); color: var(--awf-green); border: 1px solid rgba(34,197,94,0.2); }
.awf-nl-tag.cat { background: rgba(168,85,247,0.12); color: var(--awf-purple); border: 1px solid rgba(168,85,247,0.2); }
.awf-nl-tag.size { background: rgba(251,191,36,0.12); color: var(--awf-yellow); border: 1px solid rgba(251,191,36,0.2); }
.awf-nl-result-hint {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-radius: 10px;
  background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.12);
  font-size: 13px; color: var(--awf-green); font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.awf-nl-result-hint svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== FEATURES GRID ===== */
.awf-features-section { padding: 120px 0; background: var(--awf-bg-deep); }
.awf-features-header { text-align: center; margin-bottom: 64px; }
.awf-features-header .awf-section-desc { margin: 0 auto; }
.awf-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.awf-feature-card {
  background: transparent;
  border: 2px solid rgba(0,163,255,0.2);
  border-radius: 20px; padding: 40px 30px;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.awf-feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,102,255,0.05) 0%, transparent 100%);
  border-radius: 20px; opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.awf-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,163,255,0.5);
  box-shadow: 0 20px 50px rgba(0,163,255,0.25);
}
.awf-feature-card:hover::before { opacity: 1; }
.awf-feature-icon {
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 25px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 2px solid #00A3FF;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative; z-index: 1;
}
.awf-feature-icon svg { width: 32px; height: 32px; color: #00A3FF; stroke: currentColor; fill: none; }
.awf-feature-card:hover .awf-feature-icon {
  background: linear-gradient(135deg, #0066FF, #0052CC);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(0,102,255,0.4);
}
.awf-feature-card:hover .awf-feature-icon svg { color: #ffffff; }
.awf-feature-card h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 15px; position: relative; z-index: 1; line-height: 1.3; }
.awf-feature-card p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; position: relative; z-index: 1; }
.awf-feature-tag {
  display: inline-block; margin-top: 16px; padding: 4px 12px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.awf-tag-unique { background: rgba(34,197,94,0.1); color: var(--awf-green); border: 1px solid rgba(34,197,94,0.2); }
.awf-tag-powerful { background: rgba(168,85,247,0.1); color: var(--awf-purple); border: 1px solid rgba(168,85,247,0.2); }
.awf-tag-smart { background: rgba(251,191,36,0.1); color: var(--awf-yellow); border: 1px solid rgba(251,191,36,0.2); }

/* ===== ANALYTICS ===== */
.awf-analytics-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--awf-bg-deep) 0%, var(--awf-bg-mid) 50%, var(--awf-bg-deep) 100%);
}
.awf-analytics-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.awf-analytics-content .awf-section-desc { margin-bottom: 28px; }
.awf-analytics-benefits { display: flex; flex-direction: column; gap: 18px; }
.awf-analytics-benefit { display: flex; align-items: start; gap: 12px; }
.awf-analytics-benefit svg { width: 20px; height: 20px; color: var(--awf-green); flex-shrink: 0; margin-top: 3px; }
.awf-analytics-benefit strong { color: #fff; }
.awf-analytics-benefit span { font-size: 14px; color: var(--awf-text-dim); }
.awf-analytics-visual {
  background: rgba(255,255,255,0.03); border: 1px solid var(--awf-border);
  border-radius: 16px; padding: 24px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.awf-analytics-visual::before {
  content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--awf-accent), transparent);
}

/* ===== STEPS ===== */
.awf-steps-section { padding: 120px 0; background: var(--awf-bg-deep); border-top: 1px solid var(--awf-border); }
.awf-steps-header { text-align: center; margin-bottom: 64px; }
.awf-steps-header .awf-section-desc { margin: 0 auto; }
.awf-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.awf-steps-grid::before {
  content: ''; position: absolute; top: 44px; left: 16.6%; right: 16.6%; height: 2px;
  background: linear-gradient(90deg, var(--awf-border), var(--awf-accent), var(--awf-border)); z-index: 0;
}
.awf-step-card { text-align: center; position: relative; z-index: 1; }
.awf-step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--awf-accent-deep), var(--awf-accent));
  box-shadow: 0 4px 20px rgba(0,102,255,0.3);
}
.awf-step-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.awf-step-card p { font-size: 15px; color: var(--awf-text-dim); line-height: 1.7; max-width: 300px; margin: 0 auto; }

/* ===== COMPARE ===== */
.awf-compare-section { padding: 120px 0; background: var(--awf-bg-mid); position: relative; }
.awf-compare-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,102,255,0.08) 0%, transparent 60%);
}
.awf-compare-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.awf-compare-header .awf-section-desc { margin: 0 auto; }
.awf-compare-table-wrap { position: relative; z-index: 1; overflow-x: auto; }
.awf-compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: rgba(255,255,255,0.02); border-radius: var(--awf-radius);
  border: 1px solid var(--awf-border); overflow: hidden;
}
.awf-compare-table th, .awf-compare-table td {
  padding: 16px 20px; text-align: left; font-size: 14px;
  border-bottom: 1px solid var(--awf-border);
}
.awf-compare-table thead th {
  background: rgba(255,255,255,0.04); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--awf-text-dim);
}
.awf-compare-table thead th:last-child { color: var(--awf-accent); background: rgba(0,163,255,0.06); }
.awf-compare-table tbody td { color: var(--awf-text-dim); }
.awf-compare-table tbody td:first-child { color: var(--awf-text); font-weight: 600; }
.awf-compare-table tbody td:last-child { color: var(--awf-text); background: rgba(0,163,255,0.02); }
.awf-compare-table tbody tr:last-child td { border-bottom: none; }
.awf-check { color: var(--awf-green); font-weight: 700; }
.awf-cross { color: var(--awf-red); opacity: 0.5; }
.awf-partial { color: #f59e0b; font-size: 12px; font-weight: 600; }
.awf-compare-group td {
  padding: 10px 14px !important; font-size: 10px !important; font-weight: 700 !important;
  text-transform: uppercase; letter-spacing: 0.5px; color: #0066FF !important;
  background: rgba(0,102,255,0.04) !important;
}
.awf-compare-note {
  display: block; font-size: 11px; font-weight: 400; color: #94a3b8; margin-top: 2px;
}
.awf-compare-footer {
  padding: 16px 20px; background: rgba(0,102,255,0.04);
  border-top: 2px solid rgba(0,102,255,0.1); text-align: center;
}
.awf-compare-footer p { font-size: 13px; color: #334155; line-height: 1.6; }
.awf-compare-footer strong { color: #0066FF; }

/* ===== COMPAT ===== */
.awf-compat-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--awf-bg-mid), var(--awf-bg-deep));
  border-top: 1px solid var(--awf-border);
}
.awf-compat-header { text-align: center; margin-bottom: 40px; }

/* ===== PRICING ===== */
.awf-pricing-section { padding: 120px 0; background: var(--awf-bg-deep); }
.awf-pricing-header { text-align: center; margin-bottom: 56px; }
.awf-pricing-header .awf-section-desc { margin: 0 auto; }
.awf-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 960px; margin: 0 auto 40px;
}
.awf-price-card {
  background: var(--awf-bg-card); border: 1px solid var(--awf-border);
  border-radius: var(--awf-radius); padding: 36px 28px;
  position: relative; transition: all 0.3s;
}
.awf-price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.awf-price-card.featured {
  border-color: var(--awf-accent); background: rgba(0,163,255,0.04);
  box-shadow: 0 0 0 1px var(--awf-accent), 0 16px 48px rgba(0,102,255,0.15);
}
.awf-price-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--awf-accent-deep), var(--awf-accent));
}
.awf-price-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 20px;
  background: linear-gradient(135deg, #0066FF, #00A3FF);
  color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; white-space: nowrap;
}
.awf-price-name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.awf-price-amount { font-size: 48px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.awf-price-amount span { font-size: 16px; color: var(--awf-text-dim); font-weight: 500; }
.awf-price-period { font-size: 13px; color: var(--awf-text-muted); margin-bottom: 28px; }
.awf-price-features { list-style: none; margin-bottom: 28px; padding: 0; }
.awf-price-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 14px; color: var(--awf-text-dim);
  border-bottom: 1px solid var(--awf-border);
}
.awf-price-features li:last-child { border-bottom: none; }
.awf-price-features li svg { width: 18px; height: 18px; color: var(--awf-green); flex-shrink: 0; }
.awf-price-btn {
  display: block; width: 100%; padding: 14px; border-radius: var(--awf-radius-sm);
  text-align: center; font-weight: 700; font-size: 15px; cursor: pointer;
  border: 1px solid var(--awf-border); background: transparent; color: var(--awf-text);
  transition: all 0.2s; font-family: var(--awf-font);
}
.awf-price-btn:hover { background: rgba(255,255,255,0.05); border-color: var(--awf-border-accent); color: #fff; }
.awf-price-card.featured .awf-price-btn {
  background: linear-gradient(135deg, #0066FF, #0052CC); border-color: transparent; color: #fff;
}
.awf-price-card.featured .awf-price-btn:hover { box-shadow: 0 8px 30px rgba(0,102,255,0.4); }
.awf-pricing-guarantee {
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 14px; color: var(--awf-text-dim);
}
.awf-pricing-guarantee svg { width: 20px; height: 20px; color: var(--awf-green); }

/* ===== FAQ ===== */

/* ===== CTA ===== */
.awf-cta-section {
  padding: 120px 0; text-align: center; position: relative;
  background: linear-gradient(180deg, var(--awf-bg-deep), var(--awf-bg-mid));
}
.awf-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,102,255,0.12) 0%, transparent 60%);
}
.awf-cta-inner { position: relative; z-index: 1; }
.awf-cta-inner .awf-section-desc { margin: 0 auto 40px; }

/* ===== TRUST GRID ===== */

/* ===== FOOTER ===== */

/* ===== STATIC MOBILE HERO MOCKUP ===== */
.awf-hero-static-mockup { display: none; }

.awf-sm-browser {
  background: linear-gradient(180deg,#ffffff 0%,#f0f9ff 100%);
  border: 1px solid #bae6fd;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(14,165,233,0.08);
}
.awf-sm-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: #00A3FF;
  border-bottom: 1px solid #0091e0;
}
.awf-sm-dots { display: flex; gap: 4px; }
.awf-sm-dots span { width: 8px; height: 8px; border-radius: 50%; display: block; }
.awf-sm-url {
  flex: 1; padding: 3px 8px; border-radius: 4px;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.25);
  font-size: 9px; color: rgba(255,255,255,0.85); font-family: 'Courier New', monospace;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.awf-sm-chips {
  padding: 6px 12px; display: flex; gap: 4px; flex-wrap: wrap; align-items: center;
  border-bottom: 1px solid #e0f2fe;
}
.awf-sm-chip {
  padding: 2px 8px; border-radius: 10px; font-size: 9px; font-weight: 600;
  background: rgba(0,163,255,0.1); color: #0369a1;
  border: 1px solid rgba(0,163,255,0.25);
  display: inline-flex; align-items: center; gap: 4px;
}
.awf-sm-found { font-size: 9px; color: #22c55e; font-weight: 700; margin-left: auto; }
.awf-sm-layout { display: flex; }
.awf-sm-sidebar {
  width: 120px; flex-shrink: 0; padding: 8px;
  border-right: 1px solid #e0f2fe;
}
.awf-sm-fg { margin-bottom: 8px; }
.awf-sm-flbl {
  font-size: 7px; font-weight: 700; color: #7dd3fc;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px;
}
.awf-sm-frow {
  display: flex; align-items: center; gap: 4px;
  font-size: 9px; color: #0c4a6e; margin-bottom: 2px;
}
.awf-sm-frow span:nth-child(2) { flex: 1; }
.awf-sm-cnt { font-size: 7px; color: #7dd3fc; }
.awf-sm-chk {
  width: 9px; height: 9px; border-radius: 2px;
  border: 1px solid #bae6fd; display: flex; align-items: center;
  justify-content: center; font-size: 6px; flex-shrink: 0; background: #fff;
}
.awf-sm-chk.on { background: #0284c7; border-color: #0284c7; color: #fff; }
.awf-sm-colors { display: flex; gap: 3px; }
.awf-sm-colors span {
  width: 14px; height: 14px; border-radius: 50%; display: block;
}
.awf-sm-sizes { display: flex; gap: 3px; }
.awf-sm-sizes span {
  padding: 2px 6px; border-radius: 3px; font-size: 8px; font-weight: 600;
  color: #0369a1; border: 1px solid #bae6fd; background: #fff;
}
.awf-sm-sizes span.on {
  background: rgba(2,132,199,0.1); color: #0284c7;
  border-color: rgba(2,132,199,0.35);
}
.awf-sm-slider { padding: 2px 0; }
.awf-sm-slider-track {
  height: 3px; background: #bae6fd; border-radius: 2px; position: relative;
}
.awf-sm-slider-fill {
  position: absolute; left: 0; width: 60%; height: 100%;
  background: #00A3FF; border-radius: 2px;
}
.awf-sm-slider-handle {
  position: absolute; left: 60%; top: -3px;
  width: 9px; height: 9px; border-radius: 50%;
  background: #00A3FF; border: 2px solid #fff;
  transform: translateX(-50%);
}
.awf-sm-slider-labels {
  display: flex; justify-content: space-between;
  font-size: 7px; color: #7dd3fc; margin-top: 2px;
}
.awf-sm-rating { font-size: 9px; letter-spacing: 0.5px; margin-bottom: 1px; }
.awf-sm-products {
  flex: 1; padding: 6px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5px;
}
.awf-sm-prod {
  background: #ffffff;
  border: 1px solid #e0f2fe;
  border-radius: 6px; padding: 5px; text-align: center;
  position: relative;
}
.awf-sm-prod-sale {
  position: absolute; top: 3px; left: 3px;
  padding: 1px 4px; border-radius: 3px;
  background: #ef4444; font-size: 6px; font-weight: 700; color: #fff;
}
.awf-sm-prod-img {
  height: 44px; border-radius: 4px; margin-bottom: 3px;
  display: flex; align-items: center; justify-content: center;
}
.awf-sm-prod-img svg { width: 34px; height: 34px; }
.awf-sm-prod-name {
  font-size: 8px; font-weight: 600; color: #0c4a6e;
  margin-bottom: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.awf-sm-prod-stars { font-size: 7px; color: #fbbf24; margin-bottom: 1px; letter-spacing: 0.5px; }
.awf-sm-prod-price {
  font-size: 9px; font-weight: 700; color: #0284c7;
  font-family: 'Courier New', monospace;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet (1024px) --- */
@media (max-width: 1024px) {
  html, body { overflow-x: hidden !important; }
  .awf-container { padding: 0 24px; }
  .awf-hero { padding: 100px 0 60px; min-height: auto; overflow: hidden; }
  .awf-hero-inner { grid-template-columns: 1fr; text-align: left; gap: 40px; padding: 0 24px; }
  .awf-hero-content { max-width: 640px; margin: 0 auto; text-align: center; }
  .awf-hero-desc { margin: 0 auto 36px; }
  .awf-hero-cta, .awf-hero-trust { justify-content: center; }
  .awf-features-grid, .awf-problem-grid { grid-template-columns: repeat(2, 1fr); }
  .awf-nl-inner, .awf-analytics-inner, .awf-wizard-inner { grid-template-columns: 1fr; gap: 40px; }
  .awf-nl-content, .awf-analytics-content { text-align: left; }
  .awf-nl-content .awf-section-desc, .awf-analytics-content .awf-section-desc { margin: 0 0 32px; }
  .awf-steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .awf-steps-grid::before { display: none; }
  .awf-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }

  /* Reduce all section vertical padding */
  .awf-problem-section,
  .awf-nl-section,
  .awf-analytics-section,
  .awf-features-section,
  .awf-steps-section,
  .awf-compare-section,
  .awf-compat-section,
  .awf-pricing-section,
  .awf-cta-section,
  .awf-variation-section { padding: 80px 0; }

  .awf-beyond-bridge { padding: 60px 0; }
  .awf-bridge-card { padding: 36px 28px; }
  .awf-bridge-text { font-size: 22px; }

  /* Trust scenarios */
  .awf-trust-scenarios { grid-template-columns: 1fr; }

  /* Display rules mockup sidebar */
  .awf-dr-shop { grid-template-columns: 100px 1fr; }
  .awf-dr-products { grid-template-columns: 1fr 1fr; }

  /* Weekly email stats */
  .awf-weekly-stats { grid-template-columns: 1fr 1fr 1fr; }

  /* Dashboard */
  .awf-dash-tabs { gap: 1px; }
  .awf-dash-tab { padding: 6px 8px; font-size: 9px; }
  .awf-dash-panel { height: 300px; overflow-y: auto; }
}

/* --- Small tablet / large phone (768px) --- */
@media (max-width: 768px) {
  html, body { overflow-x: hidden !important; }
  .awf-container { padding: 0 20px; }
  .awf-hero { padding: 80px 0 50px; }
  .awf-hero-inner { padding: 0 20px; gap: 32px; }
  .awf-hero-visual { transform: none !important; animation: none !important; opacity: 1 !important; }
  .awf-hero-content { transform: none !important; animation: none !important; opacity: 1 !important; }

  /* Hide animated demo, show static mockup on mobile */
  .awf-hero-animated { display: none !important; }
  .awf-hero-static-mockup { display: block !important; }

  .awf-hero h1 { font-size: clamp(28px, 7vw, 40px); }
  .awf-hero-desc { font-size: 16px; }
  .awf-hero-badge { font-size: 11px; padding: 6px 14px; }
  .awf-hero-trust { flex-direction: column; gap: 10px; align-items: flex-start; }
  .awf-hero-trust-item { font-size: 12px; }

  /* LEFT-ALIGN everything on mobile — only headers stay centered */
  .awf-hero-inner { text-align: left; }
  .awf-hero-content { text-align: left; }
  .awf-hero-cta { justify-content: flex-start; }
  .awf-nl-content, .awf-analytics-content { text-align: left; }
  .awf-nl-content .awf-section-desc,
  .awf-analytics-content .awf-section-desc { margin: 0 0 32px; }
  .awf-section-desc { text-align: left !important; }
  .awf-nl-point { text-align: left; }
  .awf-problem-card { text-align: left; }
  .awf-problem-card p { text-align: left; }
  .awf-problem-badge { margin: 0 0 16px; }
  .awf-feature-card { text-align: left; }
  .awf-step-card { text-align: left; }
  .awf-step-card p { margin: 0; max-width: none; }
  .awf-step-num { margin: 0 0 16px; }
  .awf-price-card { text-align: left; }
  .awf-trust-card { text-align: left; }
  .awf-faq-a-inner { text-align: left; }
  .awf-var-note { text-align: left; }
  .awf-bridge-card { text-align: left; }
  .awf-bridge-card p { margin: 0; }
  .awf-wiz-body { text-align: left; }
  .awf-weekly-card { text-align: left; }
  .awf-compat-row { text-align: left; }

  /* Section headers — keep centered */
  .awf-problem-header,
  .awf-features-header,
  .awf-steps-header,
  .awf-compare-header,
  .awf-pricing-header,
  .awf-compat-header,
  .awf-variation-top,
  .awf-cta-inner { text-align: center; }
  .awf-problem-header .awf-section-desc,
  .awf-features-header .awf-section-desc,
  .awf-steps-header .awf-section-desc,
  .awf-compare-header .awf-section-desc,
  .awf-pricing-header .awf-section-desc,
  .awf-compat-header .awf-section-desc,
  .awf-variation-top .awf-section-desc,
  .awf-cta-inner .awf-section-desc { text-align: center !important; margin: 0 auto 32px !important; }

  /* 9 filter types grid */
  .awf-filter-types-grid { grid-template-columns: 1fr 1fr !important; }

  /* Flip sections where visual is before text — text should come first on mobile */
  .awf-visual-first { display: flex !important; flex-direction: column-reverse !important; gap: 32px !important; }

  /* All sections overflow containment */
  section { overflow-x: hidden; }

  /* Section typography */
  .awf-section-title { font-size: clamp(24px, 5vw, 36px) !important; }
  .awf-section-desc { font-size: 15px !important; }
  .awf-bridge-text { font-size: 20px; }
  .awf-bridge-sub { font-size: 13px; }
  .awf-bridge-card h3 { font-size: 20px; }

  /* All section padding further reduced */
  .awf-problem-section,
  .awf-nl-section,
  .awf-analytics-section,
  .awf-features-section,
  .awf-steps-section,
  .awf-compare-section,
  .awf-compat-section,
  .awf-pricing-section,
  .awf-cta-section,
  .awf-variation-section { padding: 60px 0; }
  .awf-beyond-bridge { padding: 40px 0; }

  /* Variation grid */
  .awf-var-grid, .awf-var-grid-3 { grid-template-columns: 1fr 1fr; }
  .awf-var-filters-bar { flex-wrap: wrap; gap: 6px; padding: 8px 12px; }
  .awf-var-fb-count { width: 100%; text-align: right; }

  /* Problem connector */
  .awf-problem-connector { display: none; }
  .awf-problem-grid { gap: 16px; }

  /* Feature cards */
  .awf-feature-card { padding: 28px 20px; }
  .awf-feature-card h3 { font-size: 18px; }
  .awf-feature-card p { font-size: 14px; }
  .awf-feature-icon { width: 48px; height: 48px; margin-bottom: 18px; }
  .awf-feature-icon svg { width: 24px; height: 24px; }

  /* NL/Analytics gap */
  .awf-nl-inner, .awf-analytics-inner { gap: 32px; }
  .awf-nl-point h4 { font-size: 14px; }
  .awf-nl-point p { font-size: 13px; }

  /* Dashboard panel — fixed height prevents page jumping on tab switch */
  .awf-dash-card { overflow: hidden; }
  .awf-dash-panel { height: 340px; min-height: auto; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .awf-dash-metrics { grid-template-columns: 1fr; gap: 4px; margin-bottom: 10px; }
  .awf-dash-metric { display: flex; align-items: center; gap: 10px; padding: 8px 10px; text-align: left; }
  .awf-dash-metric-val { font-size: 18px; }
  .awf-dash-metric-label { margin-top: 0; }
  .awf-dash-tabs { gap: 0; padding: 2px; }
  .awf-dash-tab { padding: 7px 10px; font-size: 9px; }

  /* Weekly card */
  .awf-weekly-stats { grid-template-columns: 1fr; gap: 6px; }
  .awf-weekly-stat { display: flex; align-items: center; gap: 10px; text-align: left; padding: 10px; }
  .awf-weekly-stat-val { font-size: 16px; }

  /* Display rules mockup */
  .awf-dr-shop { grid-template-columns: 1fr; }
  .awf-dr-sidebar { border-right: none; border-bottom: 1px solid #f1f5f9; }
  .awf-dr-products { grid-template-columns: 1fr 1fr; }
  .awf-dr-mobile { flex-direction: column; align-items: flex-start; }

  /* Pricing */
  .awf-price-card { padding: 28px 20px; }
  .awf-price-amount { font-size: 40px; }
  .awf-pricing-guarantee { flex-direction: row; text-align: left; gap: 8px; justify-content: flex-start; }
  .awf-pricing-guarantee svg { margin: 0; flex-shrink: 0; }

  /* Compare table */
  .awf-compare-table { font-size: 12px; }
  .awf-compare-table th, .awf-compare-table td { padding: 10px 10px; }

  /* SEO flow */
  .awf-seo-page-box { flex-direction: column; gap: 8px; text-align: left; }
  .awf-seo-bad-text { font-size: 10px; }
  .awf-seo-rule-row { flex-direction: column; gap: 2px; align-items: flex-start; }

  /* Zero results */
  .awf-zero-prods { flex-direction: column; gap: 6px; }
  .awf-zero-alts { flex-direction: column; }
  .awf-zero-notify { flex-direction: column; }

  /* Trust cards */
  .awf-trust-card { padding: 28px 22px; }
  .awf-trust-card h3 { font-size: 18px; }
  .awf-trust-card p { font-size: 14px; }

  /* Bridge card */
  .awf-bridge-card { padding: 28px 20px; }

  /* Buttons */
  .awf-btn-primary, .awf-btn-secondary { padding: 14px 24px; font-size: 15px; }
  .awf-hero-cta { flex-direction: column; align-items: stretch; }
  .awf-hero-cta .awf-btn-primary,
  .awf-hero-cta .awf-btn-secondary { width: 100%; max-width: 300px; justify-content: center; }

  /* Hero visual / interactive demo */
  #hd { font-size: 10px; }
  .hd-main { flex-direction: column !important; }
  .hd-side { width: 100% !important; max-width: 100% !important; min-width: 0 !important; border-right: none !important; border-bottom: 1px solid #e0f2fe; padding-bottom: 8px !important; margin-bottom: 8px !important; }
  .hd-pgrid { grid-template-columns: repeat(2, 1fr) !important; }

  /* 9 filter type showcase grid — override inline 3-col */
  .awf-analytics-visual > div > div[style*="grid-template-columns: 1fr 1fr 1fr"],
  .awf-analytics-visual > div > div[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Matrix view grids — allow horizontal scroll */
  .awf-analytics-visual { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* FAQ */
  .awf-faq-a-inner { font-size: 14px; }

  /* Compat logos */
}

/* --- Phone (480px) --- */
@media (max-width: 480px) {
  .awf-container { padding: 0 20px; }
  .awf-hero { padding: 70px 0 40px; }
  .awf-hero-inner { padding: 0 20px; gap: 24px; }
  .awf-hero h1 { font-size: 26px; }
  .awf-hero-desc { font-size: 15px; line-height: 1.65; }

  /* Static mockup tweaks for small phones */
  .awf-sm-sidebar { width: 100px; padding: 6px; }
  .awf-sm-prod-img { height: 36px; }
  .awf-sm-prod-img svg { width: 28px; height: 28px; }
  .awf-sm-products { gap: 3px; padding: 4px; }
  .awf-sm-colors span { width: 12px; height: 12px; }

  .awf-section-title { font-size: 22px !important; }
  .awf-section-desc { font-size: 14px !important; }

  .awf-problem-section,
  .awf-nl-section,
  .awf-analytics-section,
  .awf-features-section,
  .awf-steps-section,
  .awf-compare-section,
  .awf-compat-section,
  .awf-pricing-section,
  .awf-cta-section,
  .awf-variation-section { padding: 40px 0; }
  .awf-beyond-bridge { padding: 30px 0; }

  /* Features, problems */
  .awf-features-grid, .awf-problem-grid { grid-template-columns: 1fr; gap: 14px; }
  .awf-problem-card { padding: 24px 18px; }

  /* Variation grid to 1 column on very small screens */
  .awf-var-grid, .awf-var-grid-3 { grid-template-columns: 1fr; }
  .awf-var-card-img { height: 80px; }
  .awf-var-note { font-size: 12px; padding: 10px 14px; }

  /* Pricing */
  .awf-pricing-grid { max-width: 100%; }
  .awf-price-amount { font-size: 36px; }
  .awf-price-card { padding: 24px 16px; }

  /* Dashboard */
  .awf-dash-panel { height: 320px; padding: 10px; }
  .awf-dash-metrics { grid-template-columns: 1fr; gap: 3px; }
  .awf-dash-metric { padding: 6px 8px; }
  .awf-dash-metric-val { font-size: 15px; }
  .awf-dash-tab { padding: 6px 7px; font-size: 8px; }

  /* NL section */
  .awf-nl-demo-card { padding: 16px; }

  /* Weekly card */
  .awf-weekly-card { padding: 16px; }
  .awf-weekly-subject { font-size: 14px; }

  /* Feature cards */
  .awf-feature-card { padding: 24px 16px; }
  .awf-feature-card h3 { font-size: 16px; }

  /* Step cards */
  .awf-step-num { width: 44px; height: 44px; font-size: 18px; margin-bottom: 16px; }
  .awf-step-card h3 { font-size: 16px; }
  .awf-step-card p { font-size: 14px; }

  /* Bridge */
  .awf-bridge-card { padding: 20px 14px; }
  .awf-bridge-card h3 { font-size: 18px; }
  .awf-bridge-text { font-size: 18px; }

  /* Buttons */
  .awf-btn-primary, .awf-btn-secondary { padding: 12px 20px; font-size: 14px; }

  /* Trust */
  .awf-trust-card { padding: 24px 18px; border-radius: 18px; }

  /* Hero demo */
  .hd-pgrid { grid-template-columns: repeat(2, 1fr) !important; gap: 4px !important; }
  .hd-pcard { font-size: 9px; }
  .hd-bar { flex-wrap: wrap; }

  /* Filter type showcase → single column */
  .awf-analytics-visual > div > div[style*="grid-template-columns: 1fr 1fr 1fr"],
  .awf-analytics-visual > div > div[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* CTA section */
  .awf-cta-inner .awf-section-desc { margin: 0 auto 24px; }

  /* Wizard */
  .awf-wiz-step { gap: 10px; }
  .awf-wiz-dot { width: 36px; height: 36px; font-size: 14px; }
  .awf-wiz-body h4 { font-size: 14px; }
  .awf-wiz-body p { font-size: 12px; }
  .awf-wiz-line { left: 17px; }

  /* Scan card */
  .awf-scan-body { padding: 14px; }
  .awf-scan-row { gap: 8px; flex-wrap: wrap; }
  .awf-scan-label { font-size: 12px; }
  .awf-scan-val { font-size: 12px; }
  .awf-scan-layouts { grid-template-columns: 1fr; }

  /* Compare table */
  .awf-compare-table th, .awf-compare-table td { padding: 8px 6px; font-size: 11px; }

  /* Compat */
  .awf-compat-sub { font-size: 13px; }
}

/* ===== BACKGROUND ALTERNATION ===== */

/* White / Light backgrounds */
.awf-bg-light {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%) !important;
}
.awf-bg-light .awf-section-title { color: #0a0a0a !important; }
.awf-bg-light .awf-section-desc,
.awf-bg-light .awf-nl-point p,
.awf-bg-light .awf-analytics-benefit span,
.awf-bg-light .awf-step-card p,
.awf-bg-light .awf-compat-sub { color: #4a5568 !important; }
.awf-bg-light .awf-nl-point h4,
.awf-bg-light .awf-problem-card h3,
.awf-bg-light .awf-analytics-benefit strong { color: #1a2332 !important; }
.awf-bg-light .awf-section-label { color: #0066FF !important; }
.awf-bg-light .awf-section-label::before { background: #0066FF !important; }
.awf-bg-light .awf-nl-point-icon { background: rgba(0,102,255,0.08) !important; border-color: rgba(0,102,255,0.2) !important; }
.awf-bg-light .awf-nl-point-icon svg { color: #0066FF !important; }
.awf-bg-light .awf-analytics-benefit svg { color: #0066FF !important; }
.awf-bg-light .awf-gradient-text {
  background: linear-gradient(90deg, #0066FF 0%, #00A3FF 100%) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.awf-bg-light .awf-problem-card {
  background: #ffffff !important; border-color: #e8ecf0 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}
.awf-bg-light .awf-problem-card:hover { border-color: #00A3FF !important; box-shadow: 0 8px 30px rgba(0,102,255,0.1) !important; }
.awf-bg-light .awf-problem-card p { color: #4a5568 !important; }
.awf-bg-light .awf-problem-pill { background: rgba(0,102,255,0.06) !important; color: #0052CC !important; border-color: rgba(0,102,255,0.15) !important; }
.awf-bg-light .awf-compare-table { background: #ffffff !important; border-color: #e8ecf0 !important; }
.awf-bg-light .awf-compare-table th { background: #f8f9fa !important; color: #4a5568 !important; }
.awf-bg-light .awf-compare-table thead th:last-child { background: #f0f7ff !important; color: #0066FF !important; }
.awf-bg-light .awf-compare-table tbody td:last-child { background: #fafcff !important; }
.awf-bg-light .awf-compare-table tbody td:first-child { color: #334155 !important; }
.awf-bg-light .awf-compare-table tbody td { color: #334155 !important; }
.awf-bg-light .awf-check { color: #0066FF; }
.awf-bg-light .awf-cross { color: #e2e8f0; opacity: 1; }
.awf-bg-light .awf-compare-group td { background: #f8fafc !important; color: #0066FF !important; }

/* Blue backgrounds */
.awf-bg-blue {
  background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%) !important;
  position: relative; overflow: hidden;
}
.awf-bg-blue::after {
  content: ''; position: absolute;
  top: -30%; right: -20%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.awf-bg-blue .awf-container, .awf-bg-blue .awf-reveal { position: relative; z-index: 1; }
.awf-bg-blue .awf-section-title,
.awf-bg-blue .awf-nl-point h4,
.awf-bg-blue .awf-analytics-benefit strong,
.awf-bg-blue .awf-step-card h3,
.awf-bg-blue .awf-trust-card h3,
.awf-bg-blue .awf-bridge-section h3,
.awf-bg-blue h3 { color: #ffffff !important; }
.awf-bg-blue .awf-section-desc,
.awf-bg-blue .awf-nl-point p,
.awf-bg-blue .awf-analytics-benefit span,
.awf-bg-blue .awf-step-card p,
.awf-bg-blue .awf-trust-card p,
.awf-bg-blue .awf-bridge-section p,
.awf-bg-blue p { color: rgba(255,255,255,0.8) !important; }
.awf-bg-blue .awf-section-label { color: #ffffff !important; }
.awf-bg-blue .awf-section-label::before { background: rgba(255,255,255,0.7) !important; }
.awf-bg-blue .awf-gradient-text {
  background: linear-gradient(90deg, #ffffff 0%, #7dd3fc 100%) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.awf-bg-blue .awf-nl-point-icon { background: rgba(255,255,255,0.12) !important; border-color: rgba(255,255,255,0.2) !important; }
.awf-bg-blue .awf-nl-point-icon svg { color: #ffffff !important; }
.awf-bg-blue .awf-analytics-benefit svg { color: rgba(255,255,255,0.9) !important; }
.awf-bg-blue .awf-step-num { background: #ffffff !important; color: #0066FF !important; box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important; }
.awf-bg-blue .awf-steps-grid::before {
  background: rgba(255,255,255,0.5) !important;
  top: 28px !important;
  height: 3px !important;
}
/* Blue bg — trust cards stay white (already white by default) */
.awf-bg-blue .awf-btn-primary { background: #ffffff !important; color: #0066FF !important; }
.awf-bg-blue .awf-btn-primary::after { color: #0066FF !important; }
.awf-bg-blue .awf-btn-primary:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.3) !important; }
.awf-bg-blue .awf-btn-secondary { border-color: rgba(255,255,255,0.3) !important; color: #ffffff !important; background: rgba(255,255,255,0.05) !important; }
.awf-bg-blue .awf-btn-secondary:hover { background: rgba(255,255,255,0.12) !important; border-color: rgba(255,255,255,0.5) !important; }

/* ===== SEO FLOW VISUAL ===== */
.awf-seo-flow {
  display: flex; flex-direction: column; gap: 12px;
}
.awf-seo-bad-url {
  background: #1e293b; border: 1px solid #475569; border-radius: 10px; padding: 14px 16px;
}
.awf-seo-bad-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: #f87171; margin-bottom: 6px;
}
.awf-seo-bad-text {
  font-family: 'Courier New', monospace; font-size: 12px; color: #cbd5e1;
  word-break: break-all; text-decoration: line-through; text-decoration-color: #ef4444;
}
.awf-seo-bad-note {
  font-size: 11px; color: #94a3b8; margin-top: 8px;
}
.awf-seo-flow-arrow {
  text-align: center; font-size: 13px; font-weight: 700; color: #fff; padding: 4px 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.awf-seo-flow-arrow::before, .awf-seo-flow-arrow::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.2);
}
.awf-seo-rule-box {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px; padding: 14px 16px;
}
.awf-seo-rule-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: #fff; margin-bottom: 10px;
}
.awf-seo-rule-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.awf-seo-rule-row:last-child { border-bottom: none; }
.awf-seo-rule-item { font-size: 12px; color: rgba(255,255,255,0.6); }
.awf-seo-rule-val { font-size: 12px; font-weight: 600; color: #fff; font-family: 'Courier New', monospace; }
.awf-seo-google {
  background: #fff; border-radius: 10px; padding: 16px; color: #0a0a0a;
}
.awf-seo-google-label {
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: #94a3b8; margin-bottom: 8px;
}
.awf-seo-google-url { font-size: 12px; color: #188038; margin-bottom: 2px; font-family: monospace; }
.awf-seo-google-title { font-size: 16px; font-weight: 600; color: #1a0dab; margin-bottom: 3px; }
.awf-seo-google-desc { font-size: 12px; color: #4d5156; line-height: 1.5; margin-bottom: 8px; }
.awf-seo-google-tags { display: flex; gap: 4px; }
.awf-seo-gtag {
  padding: 3px 8px; border-radius: 6px; font-size: 9px; font-weight: 600;
  background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9;
}
.awf-seo-page-box {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.awf-seo-page-left { font-size: 13px; color: #fff; }
.awf-seo-page-left strong { color: #fbbf24; }
.awf-seo-page-btn {
  padding: 7px 16px; border-radius: 8px; background: #fff;
  font-size: 11px; font-weight: 700; color: #0066FF; white-space: nowrap;
}

/* ===== Light bg demo cards → Clean Blue (matching theme service cards) ===== */
.awf-bg-light .awf-nl-demo-card {
  background: linear-gradient(145deg, #0066FF, #0052CC) !important;
  border: 2px solid rgba(0,163,255,0.4) !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 40px rgba(0,102,255,0.25) !important;
}
.awf-bg-light .awf-nl-demo-card::before {
  background: none !important;
}
.awf-bg-light .awf-nl-demo-card .awf-nl-demo-label { color: rgba(255,255,255,0.6) !important; }

/* All inner rows — uniform white tint, no green/purple backgrounds */
.awf-bg-light .awf-nl-demo-card [style*="background:rgba(0,163,255"],
.awf-bg-light .awf-nl-demo-card [style*="background:rgba(34,197,94"],
.awf-bg-light .awf-nl-demo-card [style*="background:rgba(168,85,247"],
.awf-bg-light .awf-nl-demo-card [style*="background:rgba(255,255,255,0.03)"],
.awf-bg-light .awf-nl-demo-card [style*="background:rgba(255,255,255,0.04)"],
.awf-bg-light .awf-nl-demo-card [style*="background:rgba(255,255,255,0.05)"] {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.15) !important;
}

/* All inner borders — uniform white */
.awf-bg-light .awf-nl-demo-card [style*="border:1px solid rgba(0,163,255"],
.awf-bg-light .awf-nl-demo-card [style*="border:1px solid rgba(34,197,94"],
.awf-bg-light .awf-nl-demo-card [style*="border:1px solid rgba(168,85,247"] {
  border-color: rgba(255,255,255,0.15) !important;
}

/* All text — white */
.awf-bg-light .awf-nl-demo-card [style*="color:#fff"],
.awf-bg-light .awf-nl-demo-card [style*="color:var(--awf-text)"] { color: #ffffff !important; }
.awf-bg-light .awf-nl-demo-card [style*="color:#8899aa"] { color: rgba(255,255,255,0.75) !important; }
.awf-bg-light .awf-nl-demo-card [style*="color:#556677"] { color: rgba(255,255,255,0.6) !important; }
.awf-bg-light .awf-nl-demo-card [style*="color:#22c55e"] { color: #86efac !important; }
.awf-bg-light .awf-nl-demo-card [style*="color:#a855f7"] { color: #d8b4fe !important; }

/* All checkmark icons — white */
.awf-bg-light .awf-nl-demo-card svg[stroke="#00A3FF"] { stroke: rgba(255,255,255,0.9) !important; }
.awf-bg-light .awf-nl-demo-card svg[stroke="#22c55e"] { stroke: #86efac !important; }
.awf-bg-light .awf-nl-demo-card svg[stroke="#a855f7"] { stroke: #d8b4fe !important; }

/* Analytics visual cards — same treatment */
.awf-bg-light .awf-analytics-visual {
  background: linear-gradient(145deg, #0066FF, #0052CC) !important;
  border: 2px solid rgba(0,163,255,0.4) !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 40px rgba(0,102,255,0.25) !important;
}
.awf-bg-light .awf-analytics-visual > div { background: transparent !important; }
.awf-bg-light .awf-analytics-visual::before { background: none !important; }
.awf-bg-light .awf-analytics-visual [style*="color:#fff"] { color: #ffffff !important; }
.awf-bg-light .awf-analytics-visual [style*="color:#8899aa"] { color: rgba(255,255,255,0.75) !important; }
.awf-bg-light .awf-analytics-visual [style*="color:#556677"] { color: rgba(255,255,255,0.6) !important; }
.awf-bg-light .awf-analytics-visual [style*="color:#22c55e"] { color: #86efac !important; }
.awf-bg-light .awf-analytics-visual [style*="rgba(255,255,255,0.03)"],
.awf-bg-light .awf-analytics-visual [style*="rgba(255,255,255,0.06)"] {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.awf-bg-light .awf-analytics-visual [style*="rgba(0,163,255,0.06)"],
.awf-bg-light .awf-analytics-visual [style*="rgba(34,197,94,0.06)"],
.awf-bg-light .awf-analytics-visual [style*="rgba(168,85,247,0.06)"],
.awf-bg-light .awf-analytics-visual [style*="rgba(239,68,68,0.06)"],
.awf-bg-light .awf-analytics-visual [style*="rgba(251,191,36,0.06)"] {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.15) !important;
}

/* ===== Light bg — Weekly Email card inner elements fix ===== */
.awf-bg-light .awf-nl-demo-card [style*="rgba(255,255,255,0.05)"] {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.awf-bg-light .awf-nl-demo-card [style*="rgba(251,191,36,0.06)"] {
  background: rgba(255,255,255,0.1) !important;
}
.awf-bg-light .awf-nl-demo-card [style*="rgba(251,191,36,0.15)"] {
  border-color: rgba(255,255,255,0.15) !important;
}
.awf-bg-light .awf-nl-demo-card [style*="color:var(--awf-yellow)"] { color: #fde68a !important; }
.awf-bg-light .awf-nl-demo-card [style*="color:var(--awf-green)"] { color: #86efac !important; }

/* ===== Light bg — Zero Results card inner elements fix ===== */
.awf-bg-light .awf-analytics-visual [style*="rgba(251,191,36,0.1)"] {
  background: rgba(255,255,255,0.12) !important;
}
.awf-bg-light .awf-analytics-visual [style*="rgba(251,191,36,0.2)"] {
  border-color: rgba(255,255,255,0.2) !important;
}
.awf-bg-light .awf-analytics-visual [style*="color:var(--awf-yellow)"] { color: #fde68a !important; }
.awf-bg-light .awf-analytics-visual [style*="color:var(--awf-red)"] { color: #fca5a5 !important; }
.awf-bg-light .awf-analytics-visual [style*="color:var(--awf-accent)"] { color: #93c5fd !important; }
.awf-bg-light .awf-analytics-visual [style*="color:var(--awf-green)"] { color: #86efac !important; }
.awf-bg-light .awf-analytics-visual [style*="color:#a855f7"] { color: #d8b4fe !important; }
.awf-bg-light .awf-analytics-visual [style*="rgba(255,255,255,0.04)"] {
  background: rgba(255,255,255,0.1) !important;
}
.awf-bg-light .awf-analytics-visual [style*="rgba(255,255,255,0.08)"] {
  border-color: rgba(255,255,255,0.15) !important;
}
.awf-bg-light .awf-analytics-visual [style*="box-shadow"] {
  box-shadow: none !important;
}

/* ===== Fix trust cards on blue bg — force dark text on white cards ===== */
.awf-bg-blue .awf-trust-card h3 { color: #0a1929 !important; }
.awf-bg-blue .awf-trust-card p { color: #4a5568 !important; }

/* ===== Bridge Glass Card ===== */
.awf-bridge-card {
  width: 100%;
  padding: 48px 56px;
  background: rgba(10,25,41,0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0,163,255,0.25);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,102,255,0.15);
}
.awf-bridge-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  margin: 0 auto 24px;
  background: transparent;
  border: 2px solid #00A3FF;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease;
}
.awf-bridge-card-icon svg { width: 28px; height: 28px; color: #00A3FF; }
.awf-bridge-card:hover .awf-bridge-card-icon {
  background: rgba(0,102,255,0.3);
  border-color: rgba(0,102,255,0.5);
  box-shadow: 0 8px 25px rgba(0,102,255,0.2);
}
.awf-bridge-card:hover .awf-bridge-card-icon svg { color: #ffffff; }
.awf-bg-blue .awf-bridge-card:hover .awf-bridge-card-icon {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}
.awf-bridge-card h3 {
  font-size: 26px; font-weight: 800; color: #ffffff;
  line-height: 1.4; margin-bottom: 16px;
}
.awf-bridge-card p {
  font-size: 15px; color: rgba(255,255,255,0.6);
  max-width: 480px; margin: 0 auto;
}
.awf-bg-blue .awf-bridge-card {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.awf-bg-blue .awf-bridge-card-icon {
  border-color: rgba(255,255,255,0.4);
}
.awf-bg-blue .awf-bridge-card-icon svg { color: #fff; }
.awf-bg-blue .awf-bridge-card p { color: rgba(255,255,255,0.75); }

/* ===== FAQ blue background override ===== */

/* ===== FAQ light/white background ===== */
.awf-faq-light {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%) !important;
}
.awf-faq-light::before { background: none !important; }
.awf-faq-light .section-title {
  background: none !important;
  -webkit-text-fill-color: #0a1929 !important;
  color: #0a1929 !important;
}
.awf-faq-light .section-description { color: #4a5568 !important; }
.awf-faq-light .section-label {
  background: rgba(0,102,255,0.1) !important;
  border-color: rgba(0,102,255,0.2) !important;
  color: #0066FF !important;
}
.awf-faq-light .faq-item {
  background: #ffffff !important;
  border: 2px solid #e8ecf0 !important;
  backdrop-filter: none !important;
}
.awf-faq-light .faq-item:hover { border-color: rgba(0,102,255,0.3) !important; }
.awf-faq-light .faq-item.active-item {
  border-color: rgba(0,102,255,0.5) !important;
  box-shadow: 0 8px 24px rgba(0,102,255,0.1) !important;
}
.awf-faq-light .faq-question { color: #0a1929 !important; }
.awf-faq-light .faq-item:hover .faq-question { color: #0066FF !important; }
.awf-faq-light .faq-toggle { color: #0066FF !important; }
.awf-faq-light .faq-answer-content { color: #4a5568 !important; }

/* FAQ tab buttons on light background */
.awf-faq-light .faq-tab-btn {
  background: rgba(0,102,255,0.06) !important;
  border-color: rgba(0,102,255,0.15) !important;
  color: #334155 !important;
}
.awf-faq-light .faq-tab-btn:hover {
  background: rgba(0,102,255,0.12) !important;
  border-color: rgba(0,102,255,0.3) !important;
  color: #0052CC !important;
}
.awf-faq-light .faq-tab-btn.active {
  background: linear-gradient(135deg, #0066FF, #0052CC) !important;
  border-color: #0066FF !important;
  color: #ffffff !important;
}

/* FAQ smooth tab switching — no jumping */
.awf-faq-light .faq-content-wrapper {
  min-height: 0 !important;
}
.awf-faq-light .faq-tab-content {
  display: none !important;
}
.awf-faq-light .faq-tab-content.active {
  display: block !important;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  animation: awfFaqFadeIn 0.3s ease;
}
@keyframes awfFaqFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}