/* ============================================================
   WEB-ANALYTICS-PAGE.CSS — Sage Titans
   Render-blocking. Pairs with sage-nav.css,
   sage-base.css + sage-site-components.css (async)
   ============================================================ */

:root {
  --wa-dark:   #020c1b;
  --wa-navy:   #0b1f3a;
  --wa-blue:   #253a8f;
  --wa-accent: #29abe2;
  --wa-lime:   #caef45;
  --wa-text:   rgba(255,255,255,0.82);
  --wa-muted:  rgba(255,255,255,0.55);
  --wa-r:      16px;
}

/* ══════════════════════════════════════════════════════════════
   BANNER
   ══════════════════════════════════════════════════════════════ */
.inner-p-banner {
  padding: 136px 0 80px;
  min-height: 700px !important;
  margin-top: calc(-1 * 76px);
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 0%, transparent 40%),
    linear-gradient(135deg, #0b1f3a 0%, #0f2d52 50%, #123a66 100%);
}
.wa-ban-sec {
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px; flex-wrap: nowrap;
}
.wa-ban-content { flex: 1 1 auto; min-width: 0; max-width: 540px; }
.wa-ban-content h1 {
  font-size: clamp(1.9rem,3.2vw,2.75rem);
  font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.wa-ban-content h1 span { color: var(--wa-lime); }
.wa-ban-content > p { font-size: 17px; font-weight: 300; color: var(--wa-text); line-height: 1.75; margin-bottom: 28px; }
.wa-ban-checklist { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.wa-ban-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--wa-text); line-height: 1.5; }
.wa-ban-checklist li svg { flex-shrink: 0; margin-top: 2px; }
.wa-hero-cta {
  display: inline-flex; align-items: center;
  background: var(--wa-lime); color: #0a1628;
  font-size: 15px; font-weight: 700; padding: 13px 28px;
  border-radius: 50px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.wa-hero-cta:hover { background: #b8e020; transform: translateY(-2px); text-decoration: none; color: #0a1628; }

/* ══════════════════════════════════════════════════════════════
   GA4-STYLE ANALYTICS DASHBOARD WIDGET
   ══════════════════════════════════════════════════════════════ */
.wa-widget {
  flex: 1 1 440px; min-width: 300px; max-width: 500px;
  background: #fff; border-radius: 20px; padding: 0 0 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 8px 24px rgba(0,0,0,0.25);
  font-family: 'Sora', sans-serif;
}
/* Header */
.wa-w-header {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; background: #f4f5f7; border-bottom: 1px solid #e8eaed;
}
.wa-w-dots { display: flex; gap: 5px; }
.wa-w-dot { width: 11px; height: 11px; border-radius: 50%; }
.wa-w-dot--r { background: #ff5f57; }
.wa-w-dot--y { background: #febc2e; }
.wa-w-dot--g { background: #28c840; }
.wa-w-title { flex: 1; font-size: 12px; font-weight: 600; color: #1e293b; }
.wa-w-badge {
  font-size: 10px; font-weight: 700; color: #14532d;
  background: #dcfce7; border: 1px solid #bbf7d0;
  border-radius: 50px; padding: 2px 9px;
}
/* Date row */
.wa-w-date {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 16px; border-bottom: 1px solid #f1f5f9;
}
.wa-w-date-label { font-size: 11px; color: #374151; font-weight: 500; }
.wa-w-date-range {
  font-size: 10px; font-weight: 700; color: #fff;
  background: #253a8f; border-radius: 50px; padding: 2px 10px;
}
/* 4 metric tiles */
.wa-w-metrics {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid #f1f5f9; gap: 0;
}
.wa-w-metric {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 12px 6px; border-right: 1px solid #f8fafc;
}
.wa-w-metric:last-child { border-right: none; }
.wa-w-metric-val { font-size: 15px; font-weight: 800; color: #0a1628; line-height: 1; }
.wa-w-metric-val--green { color: #14532d; }
.wa-w-metric-val--blue  { color: #0369a1; }
.wa-w-metric-val--red   { color: #991b1b; }
.wa-w-metric-lbl { font-size: 8px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.06em; text-align: center; }
.wa-w-metric-delta { font-size: 9px; font-weight: 700; }
.wa-w-metric-delta--up   { color: #14532d; }
.wa-w-metric-delta--down { color: #991b1b; }
/* Sparkline area chart */
.wa-w-chart-label { font-size: 9.5px; font-weight: 800; color: #475569; letter-spacing: 0.13em; text-transform: uppercase; padding: 10px 16px 6px; }
.wa-w-sparkline {
  padding: 0 16px 8px; position: relative; height: 64px;
}
.wa-w-sparkline svg { width: 100%; height: 100%; overflow: visible; }
/* Channel breakdown */
.wa-w-channels { padding: 0 16px; display: flex; flex-direction: column; gap: 7px; }
.wa-w-channel-row { display: flex; align-items: center; gap: 8px; }
.wa-w-channel-name { font-size: 11px; font-weight: 500; color: #374151; width: 100px; flex-shrink: 0; }
.wa-w-channel-bar { flex: 1; height: 6px; background: #e8edf3; border-radius: 99px; overflow: hidden; }
.wa-w-channel-fill { height: 100%; border-radius: 99px; }
.wa-w-channel-fill--blue   { background: linear-gradient(90deg, #253a8f, #4a6fd4); }
.wa-w-channel-fill--green  { background: linear-gradient(90deg, #15803d, #34a853); }
.wa-w-channel-fill--orange { background: linear-gradient(90deg, #c2410c, #f97316); }
.wa-w-channel-fill--purple { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.wa-w-channel-pct { font-size: 11px; font-weight: 700; color: #374151; width: 32px; text-align: right; flex-shrink: 0; }
/* Footer */
.wa-w-footer {
  display: flex; justify-content: space-between;
  margin: 10px 16px 0; padding: 10px 14px;
  background: #f8fafc; border-radius: 10px; border: 1px solid #e2e8f0;
}
.wa-w-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.wa-w-stat-val { font-size: 13px; font-weight: 800; color: #0a1628; line-height: 1; }
.wa-w-stat-val--blue { color: #0369a1; }
.wa-w-stat-lbl { font-size: 8.5px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.06em; text-align: center; }

/* ── BANNER RESPONSIVE ── */
@media (max-width: 1100px) { .wa-ban-sec { gap: 28px; } .wa-widget { min-width: 260px; } }
@media (max-width: 900px) {
  .inner-p-banner { padding: 110px 0 60px; min-height: auto !important; }
  .inner-p-banner .wa-ban-sec { flex-direction: column !important; align-items: stretch !important; gap: 28px !important; }
  .inner-p-banner .wa-ban-content { flex: 0 0 auto !important; max-width: 100% !important; width: 100% !important; }
  .wa-widget { max-width: 100% !important; width: 100% !important; flex: 0 0 auto !important; display: block !important; min-width: 0 !important; }
}
@media (max-width: 380px) {
  .inner-p-banner { padding: 86px 0 44px; }
  .wa-widget { display: none !important; }
  .inner-p-banner .wa-ban-content { width: 100% !important; max-width: 100% !important; }
}

/* ══════════════════════════════════════════════════════════════
   PROOF STRIP
   ══════════════════════════════════════════════════════════════ */
.proof-strip { border-top: 1px solid #eaeaea; padding: 32px 0; }
.proof-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.proof-item { display: flex; align-items: flex-start; gap: 14px; }
.proof-icon { width: 36px; height: 36px; border-radius: 8px; background: #eef6fd; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #29abe2; }
.proof-item strong { display: block; font-size: 14px; font-weight: 700; color: #0a1628; margin-bottom: 4px; }
.proof-item p { font-size: 13px; color: #516070; line-height: 1.55; margin: 0; }
@media (max-width: 1024px) { .proof-container { grid-template-columns: repeat(2,1fr); gap: 24px; } }
@media (max-width: 600px)  { .proof-container { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   TOOLS — 4 platform cards
   ══════════════════════════════════════════════════════════════ */
.wa-tools-sec { padding: 80px 0; background: #f8fafc; }
.wa-tools-head { text-align: center; margin-bottom: 52px; }
.wa-tools-head h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; color: #0a1628; margin-bottom: 12px; }
.wa-tools-head p { font-size: 16px; font-weight: 300; color: #516070; line-height: 1.75; width: 65%; margin: 0 auto; }
.wa-tools-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.wa-tool-card {
  background: #fff; border: 1px solid #e4ecf2; border-radius: 18px;
  padding: 28px 22px; display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.wa-tool-card:hover { box-shadow: 0 16px 48px rgba(41,171,226,0.12); transform: translateY(-5px); border-color: #29abe2; }
.wa-tool-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity 0.25s;
}
.wa-tool-card:nth-child(1)::before { background: linear-gradient(90deg, #e37400, #fbbc04); }
.wa-tool-card:nth-child(2)::before { background: linear-gradient(90deg, #1a73e8, #4285f4); }
.wa-tool-card:nth-child(3)::before { background: linear-gradient(90deg, #00a4ef, #50e6ff); }
.wa-tool-card:nth-child(4)::before { background: linear-gradient(90deg, #ff642b, #ff9a44); }
.wa-tool-card:hover::before { opacity: 1; }
.wa-tool-logo { height: 40px; object-fit: contain; display: block; }
.wa-tool-card h3 { font-size: 16px; font-weight: 700; color: #0a1628; margin: 0; }
.wa-tool-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.wa-tool-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 300; color: #516070; line-height: 1.45;
}
.wa-tool-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #29abe2; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   STATS SECTION — why analytics matter
   ══════════════════════════════════════════════════════════════ */
.wa-stats-sec {
  background: linear-gradient(150deg, #0b1f3a 0%, #0f2d52 50%, #123a66 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.wa-stats-sec::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(41,171,226,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.wa-stats-head { text-align: center; margin-bottom: 52px; position: relative; z-index: 1; }
.wa-stats-head h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; color: #fff; margin-bottom: 12px; }
.wa-stats-head p { font-size: 16px; font-weight: 300; color: var(--wa-muted); line-height: 1.75; width: 65%; margin: 0 auto; }
.wa-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; z-index: 1; }
.wa-stat-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 32px 24px; text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.wa-stat-card:hover { border-color: rgba(41,171,226,0.4); transform: translateY(-4px); }
.wa-stat-num { font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; color: var(--wa-lime); line-height: 1; margin-bottom: 12px; }
.wa-stat-desc { font-size: 13.5px; font-weight: 300; color: var(--wa-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   4 KEY SERVICES — alternating image+text cards
   ══════════════════════════════════════════════════════════════ */
.wa-services-sec { padding: 80px 0; }
.wa-services-head { text-align: center; margin-bottom: 52px; }
.wa-services-head h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; color: #0a1628; margin-bottom: 12px; }
.wa-services-head p { font-size: 16px; font-weight: 300; color: #516070; line-height: 1.75; width: 65%; margin: 0 auto; }
.wa-service-item {
  display: flex; align-items: center; gap: 56px;
  margin-bottom: 56px; padding: 36px;
  background: #fff; border: 1px solid #e4ecf2; border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}
.wa-service-item:hover { box-shadow: 0 16px 48px rgba(41,171,226,0.1); transform: translateY(-4px); }
.wa-service-item:nth-child(even) { flex-direction: row-reverse; }
.wa-service-item:last-child { margin-bottom: 0; }
.wa-service-img { flex: 0 0 38%; max-width: 38%; }
.wa-service-img img { width: 100%; border-radius: var(--wa-r); display: block; }
.wa-service-body { flex: 1; min-width: 0; }
.wa-service-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: #0369a1; margin-bottom: 12px;
}
.wa-service-label::before { content: ''; width: 18px; height: 2px; background: #0369a1; border-radius: 2px; }
.wa-service-body h3 { font-size: 20px; font-weight: 700; color: #0a1628; margin-bottom: 12px; line-height: 1.3; }
.wa-service-body p { font-size: 15px; font-weight: 300; color: #516070; line-height: 1.75; margin-bottom: 16px; }
.wa-service-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.wa-service-points li { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: #374151; }
.wa-service-points li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #29abe2; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   PROCESS — 5 steps — dark background
   ══════════════════════════════════════════════════════════════ */
.wa-process-sec {
  padding: 80px 0;
  background: linear-gradient(150deg, #0b1f3a 0%, #0f2d52 50%, #123a66 100%);
  position: relative; overflow: hidden;
}
.wa-process-sec::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(41,171,226,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.wa-process-head { text-align: center; margin-bottom: 52px; position: relative; z-index: 1; }
.wa-process-head h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; color: #fff; margin-bottom: 12px; }
.wa-process-head p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.75; width: 65%; margin: 0 auto; }
.wa-process-steps {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 16px;
  position: relative; z-index: 1;
}
.wa-process-step {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; padding: 28px 20px; text-align: center;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.wa-process-step:hover { background: rgba(255,255,255,0.1); border-color: rgba(41,171,226,0.5); transform: translateY(-4px); }
.wa-process-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #29abe2, #caef45); opacity: 0; transition: opacity 0.25s;
}
.wa-process-step:hover::before { opacity: 1; }
.wa-process-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #29abe2, #caef45);
  color: #0a1628; font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.wa-process-step h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.wa-process-step p { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   WHO BENEFITS
   ══════════════════════════════════════════════════════════════ */
.wa-audience-sec { padding: 80px 0; }
.wa-audience-head { text-align: center; margin-bottom: 52px; }
.wa-audience-head h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; color: #0a1628; margin-bottom: 12px; }
.wa-audience-head p { font-size: 16px; font-weight: 300; color: #516070; line-height: 1.75; width: 65%; margin: 0 auto; }
.wa-audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.wa-audience-card {
  background: #fff; border: 1px solid #e4ecf2; border-radius: 18px;
  padding: 30px 24px; display: flex; align-items: flex-start; gap: 16px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.wa-audience-card:hover { box-shadow: 0 16px 40px rgba(41,171,226,0.1); transform: translateY(-4px); border-color: #29abe2; }
.wa-audience-icon { width: 52px; height: 52px; border-radius: 14px; background: #eef6fd; border: 1px solid #cce5f7; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-audience-icon svg { width: 26px; height: 26px; }
.wa-audience-body h3 { font-size: 15px; font-weight: 700; color: #0a1628; margin: 0 0 6px; }
.wa-audience-body p { font-size: 13px; font-weight: 300; color: #516070; line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   WHY SAGE TITANS
   ══════════════════════════════════════════════════════════════ */
.wa-why-sec { padding: 80px 0; background: #f8fafc; }
.wa-why-inner { display: flex; align-items: center; gap: 64px; }
.wa-why-img {
  flex-shrink: 0;
  max-width: 320px;
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-why-img img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  /* transparent PNG — no box, no shadow, no radius */
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.wa-why-content { flex: 1; min-width: 0; }
.wa-why-content h2 { font-size: clamp(1.5rem,2.4vw,2rem); font-weight: 700; color: #0a1628; margin-bottom: 14px; line-height: 1.3; }
.wa-why-content > p { font-size: 15px; font-weight: 300; color: #516070; line-height: 1.75; margin-bottom: 28px; }
.wa-why-pillars { display: flex; flex-direction: column; gap: 14px; }
.wa-why-pillar {
  background: #fff; border: 1px solid #e4ecf2; border-radius: 12px;
  padding: 16px 20px; display: flex; align-items: flex-start; gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wa-why-pillar:hover { border-color: #29abe2; box-shadow: 0 4px 20px rgba(41,171,226,0.1); }
.wa-why-pillar-icon { width: 36px; height: 36px; border-radius: 10px; background: #eef6fd; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-why-pillar-icon svg { width: 20px; height: 20px; }
.wa-why-pillar strong { display: block; font-size: 14px; font-weight: 700; color: #0a1628; margin-bottom: 3px; }
.wa-why-pillar span { font-size: 13px; font-weight: 300; color: #516070; line-height: 1.55; }

/* ══════════════════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════════════════ */
.wa-cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0b1f3a 0%, #1a3a6e 40%, #0b1f3a 100%);
  border-radius: 24px; padding: 64px 56px;
  margin: 80px 0; border: 1px solid rgba(41,171,226,0.2);
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px;
}
.wa-cta-band::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(41,171,226,0.15) 0%, transparent 65%); pointer-events: none;
}
.wa-cta-band::after {
  content: ''; position: absolute; bottom: 28px; left: 56px; width: 80px; height: 3px;
  background: linear-gradient(90deg, #29abe2, #caef45); border-radius: 3px;
}
.wa-cta-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wa-lime); margin-bottom: 12px; display: block; }
.wa-cta-band h2 { font-size: clamp(1.5rem,2.4vw,2rem); font-weight: 700; color: #fff; line-height: 1.3; margin: 0 0 20px; }
.wa-cta-band h2 span { color: var(--wa-lime); }
.wa-cta-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.wa-cta-stat-val { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.wa-cta-stat-lbl { font-size: 11px; color: var(--wa-muted); }
.wa-cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; min-width: 200px; position: relative; z-index: 1; }
.wa-cta-btn {
  display: flex; align-items: center; justify-content: center; width: 100%;
  background: var(--wa-lime); color: #0a1628;
  font-size: 15px; font-weight: 700; padding: 14px 28px;
  border-radius: 50px; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s; white-space: nowrap;
}
.wa-cta-btn:hover { background: #b8e020; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(202,239,69,0.4); color: #0a1628; text-decoration: none; }
.wa-cta-note { font-size: 11px; color: rgba(255,255,255,0.55); text-align: center; }

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.faq-wrapper { padding: 0 0 80px; }
.m-shot-head { text-align: center; padding: 60px 0 28px; }
.m-shot-head h2 { font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 700; color: #0a1628; margin: 0; }
.faq-cta-bot { text-align: center; margin-top: 36px; }
.wa-ghost-btn { display: inline-flex; align-items: center; background: transparent; color: #0a1628; font-size: 15px; font-weight: 600; padding: 13px 28px; border-radius: 50px; text-decoration: none; border: 2px solid #0a1628; transition: all 0.2s; }
.wa-ghost-btn:hover { background: #0a1628; color: #fff; text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   FOOTER TOUCH TARGET FIX
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .copyright-sec ul { display: flex; flex-wrap: wrap; gap: 4px; }
  .copyright-sec ul li { display: block; }
  .copyright-sec ul li a { display: inline-flex; align-items: center; min-height: 48px; padding: 12px 16px !important; font-size: 14px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .wa-tools-grid { grid-template-columns: repeat(2,1fr); }
  .wa-stats-grid { grid-template-columns: repeat(2,1fr); }
  .wa-process-steps { grid-template-columns: repeat(3,1fr); }
  .wa-audience-grid { grid-template-columns: repeat(2,1fr); }
  .wa-why-inner { flex-direction: column; gap: 36px; align-items: center; }
  .wa-why-img { max-width: 320px; width: 100%; }
  .wa-cta-band { grid-template-columns: 1fr; gap: 32px; padding: 44px 36px; }
  .wa-cta-btns { flex-direction: row; width: 100%; }
  .wa-cta-btn { flex: 1; }
  .wa-tools-head p, .wa-services-head p, .wa-process-head p, .wa-audience-head p, .wa-stats-head p { width: 100%; }
}
@media (max-width: 900px) {
  .wa-service-item { flex-direction: column !important; gap: 28px; }
  .wa-service-img { max-width: 100%; flex: none; }
}
@media (max-width: 768px) {
  .wa-tools-grid { grid-template-columns: 1fr; }
  .wa-stats-grid { grid-template-columns: repeat(2,1fr); }
  .wa-process-steps { grid-template-columns: repeat(2,1fr); }
  .wa-audience-grid { grid-template-columns: 1fr; }
  .wa-tools-sec, .wa-services-sec, .wa-audience-sec, .wa-why-sec { padding: 48px 0; }
  .wa-process-sec { padding: 48px 0; }
  .wa-cta-band { padding: 36px 24px; }
  .wa-cta-band::after { left: 24px; }
  .wa-cta-btns { flex-direction: column; }
}
@media (max-width: 480px) {
  .wa-stats-grid { grid-template-columns: 1fr; }
  .wa-process-steps { grid-template-columns: 1fr; }
}
