/*
Theme Name: Wodfix
Theme URI: https://wodfix.app
Author: Wodfix.app
Author URI: https://wodfix.app
Description: A premium dark cinema-style WordPress theme built for the Wodfix app download website. Fully compatible with Elementor page builder. SEO optimized, AdSense ready, mobile responsive.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wodfix
Tags: dark, one-column, two-columns, custom-menu, custom-logo, featured-images, full-width-template, sticky-post, theme-options, translation-ready, block-editor-style
*/

/* ============================================================
   WODFIX THEME — MAIN STYLESHEET
   Premium dark cinema theme for app download websites
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --wf-bg-deep:      #060610;
  --wf-bg-base:      #0a0a18;
  --wf-bg-card:      #0f0f20;
  --wf-bg-card2:     #13132a;
  --wf-bg-hover:     #1a1a35;
  --wf-accent:       #7c5cfc;
  --wf-accent-light: #9b7ffe;
  --wf-accent-glow:  rgba(124,92,252,0.22);
  --wf-pink:         #fc5c7d;
  --wf-teal:         #00d4aa;
  --wf-gold:         #f5c842;
  --wf-text-1:       #f0eeff;
  --wf-text-2:       #9090b8;
  --wf-text-3:       #5a5a80;
  --wf-border:       rgba(255,255,255,0.07);
  --wf-border-acc:   rgba(124,92,252,0.35);
  --wf-radius-sm:    8px;
  --wf-radius-md:    12px;
  --wf-radius-lg:    18px;
  --wf-radius-xl:    24px;
  --wf-transition:   all 0.25s cubic-bezier(0.4,0,0.2,1);
  --wf-font-head:    'Syne', sans-serif;
  --wf-font-body:    'DM Sans', sans-serif;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--wf-font-body);
  background: var(--wf-bg-deep);
  color: var(--wf-text-1);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wf-accent-light); text-decoration: none; transition: var(--wf-transition); }
a:hover { color: var(--wf-accent-light); opacity: 0.85; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--wf-font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--wf-text-1);
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.4em; }

/* ─── WORDPRESS CORE ─── */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--wf-text-3); text-align: center; margin-top: 6px; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.alignwide { margin-left: -2rem; margin-right: -2rem; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }

/* ─── LAYOUT ─── */
#page { display: flex; flex-direction: column; min-height: 100vh; }
#content { flex: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,3rem); }
.wf-section { padding: clamp(50px,7vw,90px) 0; }
.wf-section--dark  { background: var(--wf-bg-base); }
.wf-section--deep  { background: var(--wf-bg-deep); }
.wf-section--mid   { background: #0c0c1e; }
.wf-section--card  { background: var(--wf-bg-card); }

/* ─── HEADER ─── */
#masthead {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(6,6,16,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--wf-border);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
  padding: 0 clamp(1rem,4vw,3rem);
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.site-branding { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo-mark {
  width: 38px; height: 38px;
  background: var(--wf-accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--wf-font-head);
  font-weight: 800; font-size: 16px; color: #fff;
  flex-shrink: 0;
}
.site-title-text {
  font-family: var(--wf-font-head);
  font-weight: 700; font-size: 18px;
  color: var(--wf-text-1);
}
.site-title-text span { color: var(--wf-accent-light); }
.custom-logo { height: 36px; width: auto; border-radius: 8px; }

/* Primary Nav */
#site-navigation { display: flex; align-items: center; }
#primary-menu {
  display: flex; align-items: center;
  list-style: none; margin: 0; padding: 0; gap: 2px;
}
#primary-menu > li { position: relative; }
#primary-menu > li > a {
  display: block;
  padding: 7px 14px;
  font-size: 14px; font-weight: 400;
  color: var(--wf-text-2);
  border-radius: var(--wf-radius-sm);
  transition: var(--wf-transition);
  white-space: nowrap;
}
#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a,
#primary-menu > li.current-menu-ancestor > a {
  color: var(--wf-text-1);
  background: rgba(255,255,255,0.05);
}
#primary-menu > li.current-menu-item > a { color: var(--wf-accent-light); }

/* Dropdown */
#primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--wf-bg-card);
  border: 0.5px solid var(--wf-border);
  border-radius: var(--wf-radius-md);
  padding: 6px;
  min-width: 200px;
  list-style: none;
  z-index: 600;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
#primary-menu li:hover > .sub-menu { display: block; }
#primary-menu .sub-menu li a {
  display: block;
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--wf-text-2);
  border-radius: var(--wf-radius-sm);
  transition: var(--wf-transition);
}
#primary-menu .sub-menu li a:hover {
  background: var(--wf-bg-hover);
  color: var(--wf-text-1);
}

/* Header CTA */
.header-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--wf-accent);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: var(--wf-radius-sm);
  font-size: 13.5px; font-weight: 500;
  white-space: nowrap;
  transition: var(--wf-transition);
  text-decoration: none !important;
}
.header-cta-btn:hover { background: var(--wf-accent-light); transform: translateY(-1px); opacity: 1 !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 6px;
  flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--wf-text-2); border-radius: 2px;
  transition: var(--wf-transition);
}

/* ─── AD SLOT ─── */
.wf-ad-slot {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: var(--wf-radius-md);
  padding: 16px;
  text-align: center;
  font-size: 11.5px;
  color: var(--wf-text-3);
  margin: 0 auto 12px;
  max-width: 800px;
}

/* ─── PAGE HERO ─── */
.wf-page-hero {
  position: relative;
  padding: clamp(50px,7vw,80px) 0 clamp(40px,5vw,60px);
  overflow: hidden;
  border-bottom: 0.5px solid var(--wf-border);
  background: var(--wf-bg-base);
}
.wf-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(124,92,252,0.1), transparent 60%);
  pointer-events: none;
}
.wf-page-hero .container { position: relative; z-index: 2; }
.wf-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--wf-text-3);
  margin-bottom: 18px;
}
.wf-breadcrumb a { color: var(--wf-text-3); }
.wf-breadcrumb a:hover { color: var(--wf-accent-light); }
.wf-breadcrumb .sep { font-size: 11px; }
.wf-page-hero h1 { font-size: clamp(28px,4vw,46px); margin-bottom: 14px; }
.wf-page-hero .wf-lead { font-size: 16px; color: var(--wf-text-2); line-height: 1.65; max-width: 600px; }

/* ─── BUTTONS ─── */
.wf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  border-radius: var(--wf-radius-md);
  font-size: 14.5px; font-weight: 500;
  font-family: var(--wf-font-body);
  border: none; cursor: pointer;
  transition: var(--wf-transition);
  text-decoration: none;
}
.wf-btn--primary {
  background: var(--wf-accent); color: #fff;
}
.wf-btn--primary:hover {
  background: var(--wf-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--wf-accent-glow);
  color: #fff; opacity: 1;
}
.wf-btn--ghost {
  background: transparent; color: var(--wf-text-2);
  border: 1px solid var(--wf-border);
}
.wf-btn--ghost:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--wf-text-1);
  background: rgba(255,255,255,0.04);
  opacity: 1;
}
.wf-btn--store {
  flex: 1; background: var(--wf-bg-hover);
  border: 1px solid var(--wf-border);
  color: var(--wf-text-2);
  padding: 8px 12px; font-size: 12.5px;
  border-radius: var(--wf-radius-sm);
  justify-content: center;
}
.wf-btn--store:hover {
  border-color: var(--wf-border-acc);
  color: var(--wf-text-1);
  background: rgba(124,92,252,0.08);
  opacity: 1;
}

/* ─── APP CARD ─── */
.wf-app-card {
  background: var(--wf-bg-card);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-lg);
  padding: 26px;
  transition: var(--wf-transition);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.wf-app-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--wf-radius-lg);
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(124,92,252,0.07), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.wf-app-card:hover { border-color: var(--wf-border-acc); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.wf-app-card:hover::before { opacity: 1; }
.wf-app-card--featured { border-color: rgba(124,92,252,0.4); background: linear-gradient(135deg,#12102a,#0f0f20); }
.wf-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.wf-app-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.wf-icon--v { background: rgba(124,92,252,0.18); }
.wf-icon--m { background: rgba(252,92,125,0.15); }
.wf-icon--a { background: rgba(0,212,170,0.12); }
.wf-icon--k { background: rgba(245,200,66,0.12); }
.wf-app-pill { font-size: 10.5px; font-weight: 600; padding: 4px 11px; border-radius: 100px; }
.wf-pill--purple { background: rgba(124,92,252,0.18); color: var(--wf-accent-light); border: 0.5px solid rgba(124,92,252,0.35); }
.wf-pill--pink { background: rgba(252,92,125,0.15); color: #fc8fa5; border: 0.5px solid rgba(252,92,125,0.3); }
.wf-pill--teal { background: rgba(0,212,170,0.12); color: var(--wf-teal); border: 0.5px solid rgba(0,212,170,0.25); }
.wf-pill--gold { background: rgba(245,200,66,0.12); color: var(--wf-gold); border: 0.5px solid rgba(245,200,66,0.25); }
.wf-app-name { font-family: var(--wf-font-head); font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--wf-text-1); }
.wf-app-desc { font-size: 13px; color: var(--wf-text-2); line-height: 1.55; margin-bottom: 18px; flex: 1; }
.wf-app-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.wf-meta-stars { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--wf-text-3); }
.wf-meta-stars .star { color: var(--wf-gold); }
.wf-meta-size { font-size: 12px; color: var(--wf-text-3); background: var(--wf-bg-hover); padding: 3px 9px; border-radius: 100px; }
.wf-btn-dl {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; background: var(--wf-accent); color: #fff;
  border: none; padding: 11px; border-radius: var(--wf-radius-sm);
  font-size: 13.5px; font-weight: 500; cursor: pointer;
  font-family: var(--wf-font-body); transition: var(--wf-transition);
  text-decoration: none; margin-bottom: 10px;
}
.wf-btn-dl:hover { background: var(--wf-accent-light); transform: translateY(-1px); opacity: 1; color: #fff; }
.wf-store-row { display: flex; gap: 8px; }

/* ─── FEATURE CARD ─── */
.wf-feat-card {
  background: var(--wf-bg-card);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-md);
  padding: 24px;
  transition: var(--wf-transition);
}
.wf-feat-card:hover { border-color: var(--wf-border-acc); background: var(--wf-bg-card2); }
.wf-feat-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.wf-feat-title { font-family: var(--wf-font-head); font-size: 15px; font-weight: 600; margin-bottom: 7px; color: var(--wf-text-1); }
.wf-feat-desc { font-size: 13px; color: var(--wf-text-2); line-height: 1.6; margin: 0; }

/* ─── FAQ ─── */
.wf-faq-item {
  background: var(--wf-bg-card);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-md);
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.25s;
}
.wf-faq-item.open { border-color: var(--wf-border-acc); }
.wf-faq-q {
  padding: 18px 22px;
  font-size: 14.5px; font-weight: 500;
  color: var(--wf-text-1);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  user-select: none;
  list-style: none;
}
.wf-faq-q:hover { color: var(--wf-accent-light); }
.wf-faq-arrow { font-size: 14px; color: var(--wf-text-3); transition: transform 0.3s; flex-shrink: 0; }
.wf-faq-item.open .wf-faq-arrow { transform: rotate(180deg); color: var(--wf-accent-light); }
.wf-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.wf-faq-item.open .wf-faq-a { max-height: 300px; }
.wf-faq-a-inner {
  padding: 16px 22px 18px;
  font-size: 13.5px; color: var(--wf-text-2); line-height: 1.7;
  border-top: 1px solid var(--wf-border);
}

/* ─── BLOG CARD ─── */
.wf-blog-card {
  background: var(--wf-bg-card);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-lg);
  padding: 24px;
  transition: var(--wf-transition);
  text-decoration: none;
  display: flex; flex-direction: column;
}
.wf-blog-card:hover { border-color: var(--wf-border-acc); transform: translateY(-3px); opacity: 1; }
.wf-blog-cat { display: inline-block; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.wf-cat--guide  { background: rgba(124,92,252,0.15); color: var(--wf-accent-light); }
.wf-cat--safety { background: rgba(0,212,170,0.12); color: var(--wf-teal); }
.wf-cat--alt    { background: rgba(252,92,125,0.12); color: #fc8fa5; }
.wf-cat--tip    { background: rgba(245,200,66,0.12); color: var(--wf-gold); }
.wf-blog-title { font-family: var(--wf-font-head); font-size: 15px; font-weight: 600; color: var(--wf-text-1); line-height: 1.4; margin-bottom: 10px; flex: 1; }
.wf-blog-excerpt { font-size: 12.5px; color: var(--wf-text-3); line-height: 1.6; margin-bottom: 14px; }
.wf-blog-meta { font-size: 12px; color: var(--wf-text-3); }

/* ─── STAT / HERO ─── */
.wf-hero-stats { display: flex; justify-content: center; gap: 0; padding-top: 48px; margin-top: 60px; border-top: 1px solid var(--wf-border); }
.wf-stat-block { flex: 1; max-width: 160px; text-align: center; padding: 0 20px; border-right: 1px solid var(--wf-border); }
.wf-stat-block:last-child { border-right: none; }
.wf-stat-num { font-family: var(--wf-font-head); font-size: 26px; font-weight: 800; color: var(--wf-text-1); line-height: 1; margin-bottom: 5px; }
.wf-stat-num span { color: var(--wf-accent-light); }
.wf-stat-label { font-size: 12px; color: var(--wf-text-3); }

/* ─── TRUST STRIP ─── */
.wf-trust-strip {
  background: var(--wf-bg-card);
  border-top: 1px solid var(--wf-border);
  border-bottom: 1px solid var(--wf-border);
  padding: 20px 0;
}
.wf-trust-inner { display: flex; align-items: center; justify-content: center; gap: clamp(20px,4vw,56px); flex-wrap: wrap; }
.wf-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--wf-text-3); }
.wf-trust-item .ico { font-size: 16px; }

/* ─── CTA BANNER ─── */
.wf-cta-banner {
  background: linear-gradient(135deg, rgba(124,92,252,0.18), rgba(252,92,125,0.1));
  border: 1px solid rgba(124,92,252,0.3);
  border-radius: var(--wf-radius-xl);
  padding: clamp(40px,5vw,60px);
  text-align: center;
  position: relative; overflow: hidden;
}
.wf-cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124,92,252,0.15), transparent);
}
.wf-cta-banner h2 { font-size: clamp(22px,3vw,32px); margin-bottom: 12px; position: relative; }
.wf-cta-banner p { color: var(--wf-text-2); font-size: 15px; margin-bottom: 28px; position: relative; }
.wf-cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }

/* ─── DISCLAIMER ─── */
.wf-disclaimer {
  background: rgba(245,200,66,0.06);
  border: 1px solid rgba(245,200,66,0.18);
  border-radius: var(--wf-radius-md);
  padding: 12px 18px;
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 0;
}
.wf-disclaimer .ico { color: var(--wf-gold); flex-shrink: 0; margin-top: 1px; }
.wf-disclaimer p { font-size: 12px; color: var(--wf-text-3); line-height: 1.55; margin: 0; }
.wf-disclaimer strong { color: rgba(255,255,255,0.5); }

/* ─── PLATFORM TILE ─── */
.wf-platform-tile {
  background: var(--wf-bg-card);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: var(--wf-transition);
  text-decoration: none;
  display: block;
}
.wf-platform-tile:hover { border-color: var(--wf-border-acc); transform: translateY(-3px); opacity: 1; }
.wf-pt-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.wf-pt-name { font-family: var(--wf-font-head); font-size: 13.5px; font-weight: 600; color: var(--wf-text-1); margin-bottom: 3px; }
.wf-pt-sub { font-size: 11.5px; color: var(--wf-text-3); }

/* ─── SIDEBAR ─── */
.wf-sidebar-card {
  background: var(--wf-bg-card);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.wf-sidebar-app-icon { width: 70px; height: 70px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 34px; margin-bottom: 16px; }
.wf-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.wf-info-cell { background: var(--wf-bg-hover); border-radius: var(--wf-radius-sm); padding: 10px 12px; }
.wf-info-label { font-size: 10.5px; color: var(--wf-text-3); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.wf-info-value { font-size: 13px; font-weight: 500; color: var(--wf-text-1); }

/* ─── SECTION LABELS ─── */
.wf-section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--wf-accent-light); margin-bottom: 8px; }
.wf-section-title { font-size: clamp(22px,3vw,34px); font-weight: 800; margin-bottom: 10px; }
.wf-section-sub { font-size: 15px; color: var(--wf-text-2); max-width: 480px; line-height: 1.6; }

/* ─── SINGLE POST / PAGE ─── */
.wf-content { max-width: 760px; }
.wf-content h2 { font-size: 22px; margin: 34px 0 12px; color: var(--wf-text-1); }
.wf-content h3 { font-size: 17px; margin: 24px 0 10px; color: var(--wf-text-1); }
.wf-content p { font-size: 15px; color: var(--wf-text-2); line-height: 1.75; margin-bottom: 16px; }
.wf-content ul, .wf-content ol { color: var(--wf-text-2); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.wf-content a { color: var(--wf-accent-light); }
.wf-content a:hover { text-decoration: underline; }
.wf-content blockquote {
  border-left: 3px solid var(--wf-accent);
  margin: 24px 0; padding: 14px 20px;
  background: var(--wf-bg-card);
  border-radius: 0 var(--wf-radius-sm) var(--wf-radius-sm) 0;
  font-style: italic; color: var(--wf-text-2);
}
.wf-content code {
  background: var(--wf-bg-card);
  border: 1px solid var(--wf-border);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 13px;
  color: var(--wf-accent-light);
}
.wf-content pre {
  background: var(--wf-bg-card);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-md);
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 20px;
}
.wf-content pre code { background: none; border: none; padding: 0; }
.wf-content .wp-block-image img { border-radius: var(--wf-radius-md); }

/* ─── FOOTER ─── */
#colophon {
  background: #04040d;
  border-top: 1px solid var(--wf-border);
}
.site-footer-inner { padding: 60px clamp(1rem,4vw,3rem) 28px; max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-about { font-size: 13.5px; color: var(--wf-text-3); line-height: 1.7; max-width: 250px; margin-top: 12px; }
.footer-col-title { font-family: var(--wf-font-head); font-size: 12px; font-weight: 600; color: var(--wf-text-2); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.8px; }
#footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
#footer-menu li a { font-size: 13.5px; color: var(--wf-text-3); }
#footer-menu li a:hover { color: var(--wf-accent-light); opacity: 1; }
.footer-link-list { display: flex; flex-direction: column; gap: 9px; }
.footer-link-list a { font-size: 13.5px; color: var(--wf-text-3); }
.footer-link-list a:hover { color: var(--wf-accent-light); opacity: 1; }
.footer-bottom { border-top: 1px solid var(--wf-border); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12.5px; color: var(--wf-text-3); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 12.5px; color: var(--wf-text-3); }
.footer-legal-links a:hover { color: var(--wf-text-2); opacity: 1; }

/* ─── SCROLL TOP ─── */
#wf-scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--wf-accent); border-radius: 50%;
  border: none; color: #fff; font-size: 18px;
  cursor: pointer; z-index: 400;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: var(--wf-transition);
  box-shadow: 0 8px 24px var(--wf-accent-glow);
}
#wf-scroll-top.show { opacity: 1; transform: translateY(0); }

/* ─── MOBILE NAV OVERLAY ─── */
.wf-mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--wf-bg-deep); z-index: 900;
  flex-direction: column; padding: 80px 2rem 2rem;
  overflow-y: auto;
}
.wf-mobile-nav.open { display: flex; }
.wf-mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 22px; color: var(--wf-text-2); cursor: pointer; }
.wf-mobile-nav a { padding: 14px 0; font-size: 17px; font-weight: 500; color: var(--wf-text-2); border-bottom: 1px solid var(--wf-border); text-decoration: none; }
.wf-mobile-nav a:hover { color: var(--wf-accent-light); }

/* ─── ELEMENTOR OVERRIDES ─── */
.elementor-section { background-attachment: scroll !important; }
.elementor-widget-text-editor p { color: var(--wf-text-2); }
.elementor-widget-heading .elementor-heading-title { font-family: var(--wf-font-head) !important; color: var(--wf-text-1) !important; }
.e-container, .elementor-container { max-width: 1200px !important; }

/* ─── CONTACT FORM ─── */
.wf-form-group { margin-bottom: 20px; }
.wf-form-label { display: block; font-size: 13.5px; font-weight: 500; color: var(--wf-text-2); margin-bottom: 7px; }
.wf-form-input {
  width: 100%;
  background: var(--wf-bg-hover);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-sm);
  padding: 11px 16px;
  font-size: 14px; color: var(--wf-text-1);
  font-family: var(--wf-font-body);
  outline: none; transition: border-color 0.25s;
}
.wf-form-input:focus { border-color: var(--wf-accent); box-shadow: 0 0 0 3px var(--wf-accent-glow); }
.wf-form-input::placeholder { color: var(--wf-text-3); }
textarea.wf-form-input { resize: vertical; min-height: 130px; }

/* ─── UTILITIES ─── */
.wf-text-accent { color: var(--wf-accent-light) !important; }
.wf-text-teal   { color: var(--wf-teal) !important; }
.wf-text-pink   { color: var(--wf-pink) !important; }
.wf-text-gold   { color: var(--wf-gold) !important; }
.wf-chip { display: inline-flex; align-items: center; gap: 5px; background: var(--wf-bg-card); border: 1px solid var(--wf-border); color: var(--wf-text-2); font-size: 12px; padding: 4px 12px; border-radius: 100px; }
.wf-divider { border: none; border-top: 1px solid var(--wf-border); margin: 40px 0; }
.wf-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.wf-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.wf-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.wf-grid-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }

/* ─── ANIMATIONS ─── */
@keyframes wfFadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.wf-animate { animation: wfFadeUp 0.6s ease both; }
.wf-animate--d1 { animation-delay: 0.1s; }
.wf-animate--d2 { animation-delay: 0.2s; }
.wf-animate--d3 { animation-delay: 0.3s; }
.wf-animate--d4 { animation-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  #site-navigation { display: none; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wf-hero-stats { flex-wrap: wrap; }
  .wf-stat-block { border-right: none; border-bottom: 1px solid var(--wf-border); padding: 12px 0; min-width: 45%; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; }
  .wf-cta-banner { padding: 32px 20px; }
  .header-cta-btn { display: none; }
}
