/* ============================================================
   Websfirm — PR Agency in Lucknow | Landing Page Stylesheet
   File: pr-page.css  |  Version: 1.0
   Theme: Cinematic Dark — Crimson & Black
   ============================================================ */

/* ── RESET & BASE ── */
#wf-pr-page *, #wf-pr-page *::before, #wf-pr-page *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

#wf-pr-page {
  --cr: #e02020;          /* primary crimson */
  --cr2: #ff3c3c;         /* bright red */
  --cr3: #ff6b6b;         /* soft red accent */
  --cr-glow: rgba(224,32,32,0.22);
  --cr-glow2: rgba(224,32,32,0.08);
  --dark: #080810;        /* near-black bg */
  --dark2: #0e0e1a;       /* card bg */
  --dark3: #14141f;       /* section alt bg */
  --dark4: #1a1a28;       /* elevated surface */
  --border: rgba(224,32,32,0.14);
  --border2: rgba(255,255,255,0.06);
  --white: #ffffff;
  --gray: #8b8ba0;
  --gray2: #bbbbd0;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-red: 0 8px 40px rgba(224,32,32,0.18);
  --shadow-dark: 0 8px 40px rgba(0,0,0,0.5);
  --font-head: 'Syne', 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --tr: 0.28s cubic-bezier(0.4,0,0.2,1);

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  background: var(--dark);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
#wf-pr-page ::-webkit-scrollbar { width: 4px; }
#wf-pr-page ::-webkit-scrollbar-track { background: var(--dark); }
#wf-pr-page ::-webkit-scrollbar-thumb { background: var(--cr); border-radius: 4px; }

/* ── STICKY CTA ── */
#wf-sticky-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: linear-gradient(135deg, var(--cr), #a01010);
  color: #fff;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 13px 24px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 32px rgba(224,32,32,0.45);
  transition: var(--tr); white-space: nowrap;
  letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 8px;
}
#wf-sticky-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(224,32,32,0.55); }
#wf-sticky-cta::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #fff; animation: wf-ping 1.8s infinite;
}
@keyframes wf-ping {
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:0.4;transform:scale(0.7);}
}

/* ── NOISE TEXTURE OVERLAY ── */
#wf-pr-page .wf-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ── SECTION WRAPPERS ── */
.wf-section { padding: 100px 20px; position: relative; }
.wf-section-alt { background: var(--dark3); }
.wf-container { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }
.wf-container-sm { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }

/* ── SECTION HEADER ── */
.wf-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,32,32,0.12);
  border: 1px solid rgba(224,32,32,0.28);
  color: var(--cr3);
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
  margin-bottom: 16px;
}
.wf-tag::before { content: '◆'; font-size: 6px; }

.wf-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 18px;
}
.wf-title em { font-style: normal; color: var(--cr2); }
.wf-title .wf-stroke {
  -webkit-text-stroke: 2px var(--cr);
  color: transparent;
}

.wf-sub {
  font-size: 17px; color: var(--gray);
  line-height: 1.75; max-width: 600px;
}
.wf-section-head { margin-bottom: 64px; }
.wf-section-head.center { text-align: center; }
.wf-section-head.center .wf-sub { margin: 0 auto; }

/* ── GLOW DECORATORS ── */
.wf-glow-ball {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: 0.5;
}
.wf-glow-ball.tl { top: -80px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(224,32,32,0.25), transparent 70%); }
.wf-glow-ball.br { bottom: -60px; right: -60px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(224,32,32,0.2), transparent 70%); }
.wf-glow-ball.center { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; height: 300px; background: radial-gradient(ellipse, rgba(224,32,32,0.12), transparent 70%); }

/* ── RED DIVIDER LINE ── */
.wf-red-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--cr), var(--cr3));
  border-radius: 2px; margin: 16px 0 24px;
}
.wf-section-head.center .wf-red-line { margin: 16px auto 24px; }

/* ========================================================
   1. HERO
   ======================================================== */
#wf-hero {
  min-height: 100vh;
  padding: 120px 20px 80px;
  background: var(--dark);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
#wf-hero .wf-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(224,32,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,32,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
#wf-hero .wf-hero-glow {
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224,32,32,0.18) 0%, transparent 65%);
  pointer-events: none;
}
#wf-hero .wf-hero-glow2 {
  position: absolute; bottom: 0; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,32,32,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.wf-hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}

.wf-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(224,32,32,0.1);
  border: 1px solid rgba(224,32,32,0.3);
  color: var(--cr3); font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 50px;
  margin-bottom: 24px;
}
.wf-hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cr); animation: wf-ping 1.8s infinite;
}

#wf-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 800; line-height: 1.08;
  margin-bottom: 22px; color: var(--white);
}
#wf-hero h1 span { color: var(--cr2); }

.wf-hero-sub {
  font-size: 18px; color: var(--gray);
  font-weight: 300; line-height: 1.8;
  margin-bottom: 38px; max-width: 500px;
}

.wf-hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px;
}

.wf-btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--cr), #b01010);
  color: #fff; padding: 15px 32px;
  border-radius: 50px; font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: var(--tr); letter-spacing: 0.3px;
  box-shadow: 0 4px 24px rgba(224,32,32,0.35);
}
.wf-btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(224,32,32,0.5); filter: brightness(1.1); }
.wf-btn-red .arrow { transition: transform 0.2s; }
.wf-btn-red:hover .arrow { transform: translateX(4px); }

.wf-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: var(--tr);
}
.wf-btn-ghost:hover { border-color: var(--cr); color: var(--cr2); transform: translateY(-2px); }

.wf-trust-row {
  display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
}
.wf-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray);
}
.wf-trust-item .icon { font-size: 15px; }
.wf-trust-sep { color: rgba(255,255,255,0.1); font-size: 18px; }

/* Hero right — stat cards */
.wf-hero-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.wf-hero-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--tr); position: relative; overflow: hidden;
}
.wf-hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cr), var(--cr3));
  transform: scaleX(0); transform-origin: left; transition: var(--tr);
}
.wf-hero-card:hover { border-color: var(--cr); transform: translateY(-3px); box-shadow: var(--shadow-red); }
.wf-hero-card:hover::before { transform: scaleX(1); }
.wf-hero-card .num {
  font-family: var(--font-head);
  font-size: 38px; font-weight: 800; color: var(--white); line-height: 1;
}
.wf-hero-card .num em { font-style: normal; color: var(--cr2); font-size: 28px; }
.wf-hero-card .lbl { font-size: 13px; color: var(--gray); margin-top: 6px; line-height: 1.4; }
.wf-hero-card.span2 { grid-column: span 2; }
.wf-hero-card.span2 .inner { display: flex; align-items: center; gap: 20px; }
.wf-hero-card.span2 .badge-row { display: flex; gap: 8px; flex-wrap: wrap; }
.wf-hero-card .mini-badge {
  background: rgba(224,32,32,0.12); border: 1px solid rgba(224,32,32,0.2);
  color: var(--cr3); font-size: 12px; padding: 4px 12px; border-radius: 50px;
}

/* ========================================================
   2. TRUST STRIP
   ======================================================== */
#wf-trust-strip {
  background: var(--dark2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 22px 20px;
}
.wf-trust-strip-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.wf-strip-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 24px; font-size: 14px; color: var(--gray);
  border-right: 1px solid var(--border2);
}
.wf-strip-item:last-child { border-right: none; }
.wf-strip-item strong { color: var(--white); font-weight: 600; }
.wf-strip-item .red { color: var(--cr2); font-weight: 700; }

/* ========================================================
   3. SERVICES GRID
   ======================================================== */
#wf-services .wf-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wf-svc-card {
  background: var(--dark2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: var(--tr); cursor: default;
  group: true;
}
.wf-svc-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(224,32,32,0.06), transparent);
  opacity: 0; transition: var(--tr);
}
.wf-svc-card:hover { border-color: rgba(224,32,32,0.35); transform: translateY(-5px); box-shadow: var(--shadow-red); }
.wf-svc-card:hover::after { opacity: 1; }
.wf-svc-card:hover .wf-svc-icon { background: rgba(224,32,32,0.25); transform: scale(1.08) rotate(-4deg); }

.wf-svc-icon {
  width: 58px; height: 58px;
  background: rgba(224,32,32,0.12);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 22px;
  transition: var(--tr);
}
.wf-svc-card h3 {
  font-family: var(--font-head);
  font-size: 19px; font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}
.wf-svc-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.wf-svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--cr3); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: var(--tr);
  letter-spacing: 0.3px;
}
.wf-svc-link:hover { color: var(--cr2); gap: 10px; }

/* ========================================================
   4. WHY CHOOSE
   ======================================================== */
#wf-why .wf-why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.wf-why-left {
  position: relative;
}
.wf-why-visual {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative; overflow: hidden;
}
.wf-why-visual::before {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(224,32,32,0.18), transparent 70%);
}
.wf-why-visual-top {
  display: flex; align-items: center; gap: 16px; margin-bottom: 30px;
}
.wf-why-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cr), #800);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.wf-why-visual-top h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); }
.wf-why-visual-top p { font-size: 13px; color: var(--gray); }

.wf-metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.wf-metric {
  background: var(--dark3); border: 1px solid var(--border2);
  border-radius: 12px; padding: 18px 14px; text-align: center;
}
.wf-metric .n {
  font-family: var(--font-head); font-size: 30px; font-weight: 800;
  color: var(--cr2); line-height: 1;
}
.wf-metric .l { font-size: 12px; color: var(--gray); margin-top: 5px; }

.wf-why-bar {
  background: var(--dark3); border-radius: 8px; padding: 16px;
  margin-top: 16px;
}
.wf-why-bar-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.wf-why-bar-label span:first-child { color: var(--gray); }
.wf-why-bar-label span:last-child { color: var(--cr3); font-weight: 600; }
.wf-bar-track { height: 6px; background: var(--dark4); border-radius: 3px; overflow: hidden; }
.wf-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--cr), var(--cr3)); transition: width 1.4s cubic-bezier(0.4,0,0.2,1); width: 0; }

.wf-why-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.wf-why-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  background: var(--dark2); border: 1px solid var(--border2);
  border-radius: var(--radius); transition: var(--tr);
}
.wf-why-point:hover { border-color: rgba(224,32,32,0.28); box-shadow: 0 4px 20px rgba(224,32,32,0.1); transform: translateX(4px); }
.wf-why-point-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(224,32,32,0.12); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: var(--tr);
}
.wf-why-point:hover .wf-why-point-icon { background: rgba(224,32,32,0.22); }
.wf-why-point h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.wf-why-point p { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* ========================================================
   5. PROCESS
   ======================================================== */
#wf-process .wf-process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border2);
  border: 1px solid var(--border2); border-radius: var(--radius-lg); overflow: hidden;
}
.wf-process-step {
  background: var(--dark2); padding: 40px 28px;
  position: relative; transition: var(--tr); cursor: default;
}
.wf-process-step::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--cr), var(--cr3));
  transform: scaleX(0); transform-origin: left; transition: var(--tr);
}
.wf-process-step:hover { background: var(--dark3); }
.wf-process-step:hover::after { transform: scaleX(1); }
.wf-step-number {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 800;
  color: rgba(224,32,32,0.12); line-height: 1;
  margin-bottom: 16px; display: block;
}
.wf-process-step:hover .wf-step-number { color: rgba(224,32,32,0.25); }
.wf-process-icon {
  font-size: 28px; margin-bottom: 16px; display: block;
}
.wf-process-step h3 {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.wf-process-step p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ========================================================
   6. LOCAL SEO BLOCK
   ======================================================== */
#wf-local .wf-local-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.wf-local-card-top {
  padding: 56px 56px 48px;
  background: linear-gradient(135deg, var(--dark2), #120010);
  position: relative; overflow: hidden;
}
.wf-local-card-top::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,32,32,0.15), transparent 65%);
  pointer-events: none;
}
.wf-local-card-top h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px); font-weight: 800;
  color: var(--white); margin-bottom: 16px; position: relative;
}
.wf-local-card-top h2 em { font-style: normal; color: var(--cr2); }
.wf-local-card-top p { color: var(--gray); font-size: 16px; line-height: 1.8; max-width: 700px; margin-bottom: 20px; position: relative; }
.wf-local-card-top p + p { margin-bottom: 28px; }
.wf-city-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.wf-city-tag {
  background: rgba(224,32,32,0.1);
  border: 1px solid rgba(224,32,32,0.22);
  color: var(--cr3); font-size: 13px; font-weight: 500;
  padding: 7px 18px; border-radius: 50px;
  transition: var(--tr);
}
.wf-city-tag:hover { background: rgba(224,32,32,0.2); color: var(--white); }

.wf-local-card-bottom {
  padding: 32px 56px;
  border-top: 1px solid var(--border2);
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.wf-local-stat { text-align: center; }
.wf-local-stat .n { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--cr2); }
.wf-local-stat .l { font-size: 13px; color: var(--gray); margin-top: 4px; }

/* ========================================================
   7. STATS / RESULTS
   ======================================================== */
#wf-results .wf-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.wf-stat-card {
  background: var(--dark2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 40px 24px; text-align: center;
  position: relative; overflow: hidden; transition: var(--tr);
}
.wf-stat-card::before {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cr), transparent);
  opacity: 0; transition: var(--tr);
}
.wf-stat-card:hover { border-color: rgba(224,32,32,0.3); transform: translateY(-5px); box-shadow: var(--shadow-red); }
.wf-stat-card:hover::before { opacity: 1; }
.wf-stat-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.wf-stat-num {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.wf-stat-num .sfx { font-size: 34px; color: var(--cr2); }
.wf-stat-card p { font-size: 14px; color: var(--gray); }

/* ========================================================
   8. FAQ
   ======================================================== */
#wf-faq .wf-faq-list {
  display: flex; flex-direction: column; gap: 10px;
}
.wf-faq-item {
  background: var(--dark2); border: 1px solid var(--border2);
  border-radius: var(--radius); overflow: hidden; transition: var(--tr);
}
.wf-faq-item:hover { border-color: rgba(224,32,32,0.2); }
.wf-faq-item.open { border-color: rgba(224,32,32,0.3); }

.wf-faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px; font-weight: 500; color: var(--white);
  transition: var(--tr);
}
.wf-faq-q:hover { color: var(--cr3); }
.wf-faq-item.open .wf-faq-q { color: var(--cr2); }

.wf-faq-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(224,32,32,0.1); border: 1px solid rgba(224,32,32,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--cr3); font-weight: 300;
  transition: var(--tr);
}
.wf-faq-item.open .wf-faq-icon {
  background: var(--cr); color: #fff; border-color: var(--cr);
  transform: rotate(45deg);
}

.wf-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s ease;
}
.wf-faq-a.open { max-height: 260px; }
.wf-faq-a-inner {
  padding: 0 26px 24px;
  font-size: 15px; color: var(--gray); line-height: 1.8;
  border-top: 1px solid var(--border2);
  padding-top: 18px;
}

/* ========================================================
   9. CTA BANNER
   ======================================================== */
#wf-cta-banner {
  padding: 100px 20px;
  background: var(--dark);
  position: relative; overflow: hidden; text-align: center;
}
#wf-cta-banner .wf-cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(224,32,32,0.14), transparent);
}
#wf-cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 52px); font-weight: 800; color: var(--white);
  max-width: 760px; margin: 0 auto 18px; position: relative;
}
#wf-cta-banner h2 em { font-style: normal; color: var(--cr2); }
#wf-cta-banner p {
  color: var(--gray); font-size: 18px; margin-bottom: 40px; position: relative;
}
.wf-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

.wf-phone-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark2); border: 1px solid var(--border2);
  color: var(--white); font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: 50px;
  text-decoration: none; transition: var(--tr);
}
.wf-phone-pill:hover { border-color: var(--cr); color: var(--cr2); transform: translateY(-2px); }

/* ========================================================
   10. FOOTER
   ======================================================== */
#wf-footer {
  background: #050508;
  padding: 80px 20px 36px;
  border-top: 1px solid rgba(224,32,32,0.1);
}
.wf-footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 50px; margin-bottom: 56px;
}
.wf-footer-logo {
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  color: var(--white); text-decoration: none;
  display: inline-block; margin-bottom: 16px;
}
.wf-footer-logo span { color: var(--cr2); }
.wf-footer-about { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.wf-footer-contact-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.wf-footer-contact-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(224,32,32,0.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.wf-footer-contact-row span { font-size: 14px; color: rgba(255,255,255,0.5); }

.wf-footer-col h4 {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.wf-footer-col a {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.45); text-decoration: none;
  margin-bottom: 10px; transition: var(--tr);
}
.wf-footer-col a:hover { color: var(--cr3); padding-left: 4px; }

/* Contact form */
.wf-contact-form input,
.wf-contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 11px 14px;
  color: var(--white); font-family: var(--font-body); font-size: 14px;
  margin-bottom: 10px; outline: none; transition: var(--tr);
}
.wf-contact-form input:focus,
.wf-contact-form textarea:focus { border-color: var(--cr); }
.wf-contact-form input::placeholder,
.wf-contact-form textarea::placeholder { color: rgba(255,255,255,0.25); }
.wf-contact-form textarea { resize: vertical; min-height: 76px; }
.wf-contact-form button {
  width: 100%; background: linear-gradient(135deg, var(--cr), #900);
  color: #fff; border: none; cursor: pointer; padding: 12px;
  border-radius: 8px; font-family: var(--font-body);
  font-size: 14px; font-weight: 600; transition: var(--tr);
}
.wf-contact-form button:hover { filter: brightness(1.15); transform: translateY(-1px); }

.wf-footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.wf-footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.28); }
.wf-footer-bottom-links { display: flex; gap: 20px; }
.wf-footer-bottom-links a {
  font-size: 13px; color: rgba(255,255,255,0.28);
  text-decoration: none; transition: var(--tr);
}
.wf-footer-bottom-links a:hover { color: var(--cr3); }

/* ── INDUSTRIES STRIP ── */
.wf-industries-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.wf-industry-card {
  background: var(--dark2); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 22px 18px;
  display: flex; align-items: center; gap: 12px;
  transition: var(--tr);
}
.wf-industry-card:hover { border-color: rgba(224,32,32,0.3); background: var(--dark3); }
.wf-industry-card .ico { font-size: 22px; flex-shrink: 0; }
.wf-industry-card span { font-size: 14px; font-weight: 500; color: var(--gray2); }

/* ── REVEAL ANIMATIONS ── */
.wf-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.wf-reveal.wf-in { opacity: 1; transform: translateY(0); }
.wf-reveal.d1 { transition-delay: 0.1s; }
.wf-reveal.d2 { transition-delay: 0.2s; }
.wf-reveal.d3 { transition-delay: 0.3s; }
.wf-reveal.d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  #wf-services .wf-services-grid { grid-template-columns: 1fr 1fr; }
  #wf-process .wf-process-grid { grid-template-columns: 1fr 1fr; border-radius: var(--radius); }
  #wf-results .wf-stats-grid { grid-template-columns: 1fr 1fr; }
  .wf-footer-grid { grid-template-columns: 1fr 1fr; }
  .wf-industries-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .wf-hero-inner { grid-template-columns: 1fr; }
  .wf-hero-cards { display: none; }
  #wf-hero { padding: 100px 20px 60px; }
  #wf-hero h1 { font-size: 38px; }
  #wf-why .wf-why-grid { grid-template-columns: 1fr; }
  .wf-local-card-top { padding: 36px 24px; }
  .wf-local-card-bottom { padding: 28px 24px; grid-template-columns: 1fr 1fr; }
  #wf-services .wf-services-grid { grid-template-columns: 1fr; }
  .wf-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .wf-strip-item { padding: 6px 12px; font-size: 13px; }
  .wf-section { padding: 70px 20px; }
}
@media (max-width: 480px) {
  #wf-results .wf-stats-grid { grid-template-columns: 1fr 1fr; }
  .wf-local-card-bottom { grid-template-columns: 1fr; }
  .wf-industries-grid { grid-template-columns: 1fr 1fr; }
  .wf-hero-btns { flex-direction: column; }
  .wf-hero-btns a, .wf-hero-btns button { text-align: center; justify-content: center; }
}
