/*
Theme Name: AIDevExpert
Theme URI: https://aidevexpert.com
Author: AIDevExpert
Author URI: https://aidevexpert.com
Description: A premium, fully customizable WordPress theme for AI-powered digital agencies. Features 80 page templates, complete services dropdown menu, professional header with contact info & live chat, sidebar menu, subscribe popup, and full backend customization. Built for web development, SEO, AI automation, and digital marketing agencies targeting USA & Europe.
Version: 1.0.12
Requires at least: 6.0
Tested up to: 6.5
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: aidevexpert
Tags: business, agency, ai, web-development, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, theme-options, threaded-comments, translation-ready, two-columns, right-sidebar
*/

/* ============================================
   AIDEVEXPERT THEME - BRAND COLORS
   ============================================ */
:root{
  /* Logo brand colors */
  --c-deep-navy: #0D0D0D;
  --c-royal-blue: #1a1a1a;
  --c-bright-cyan: #2e2e2e;
  --c-light-aqua: #cccccc;
  --c-golden-yellow: #FDC90F;
  --c-soft-lemon: #FEE965;
  --c-burnt-orange: #D26A04;
  --c-dark-copper: #8F3908;
  --c-charcoal: #0A0B0D;
  --c-white: #FFFFFF;

  /* Theme tokens (can be overridden via Customizer) */
  --primary: var(--c-deep-navy);
  --primary-dark: var(--c-charcoal);
  --primary-light: var(--c-golden-yellow);
  --accent: var(--c-golden-yellow);
  --accent-2: var(--c-burnt-orange);
  --ink: var(--c-charcoal);
  --ink-2: #2A3441;
  --ink-dim: #64748B;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-gold: #FFFBEB;
  --border: #E5EBF0;
  --border-light: #F1F5F9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.18);

  /* Typography (customizable) */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-base: 16px;
  --fs-h1: clamp(40px, 5.5vw, 72px);
  --fs-h2: clamp(32px, 4vw, 52px);
  --fs-h3: 24px;

  /* Layout */
  --container: 1280px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --header-h: 130px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:var(--header-h)}
body{
  font-family:var(--font-body);
  font-size:var(--fs-base);
  background:var(--bg);
  color:var(--ink-2);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;height:auto;display:block}
ul{list-style:none}
a{
  color:var(--primary);
  text-decoration:none;
  position:relative;
  transition:color 0.25s ease;
}
a.subtle-underline{
  display:inline-block;
}
a.subtle-underline::after{
  content:'';
  position:absolute;
  left:0;right:0;bottom:-2px;
  height:1px;
  background:currentColor;
  transform:scaleX(0);
  transform-origin:right;
  transition:transform 0.35s ease;
}
a.subtle-underline:hover::after{
  transform:scaleX(1);
  transform-origin:left;
}

h1,h2,h3,h4,h5,h6{
  font-family:var(--font-display);
  color:var(--ink);
  font-weight:700;
  line-height:1.2;
  letter-spacing:-0.02em;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}


/* ============================================
   SITE TOPBAR
   ============================================ */
.site-topbar{
  background:#101010;
  color:rgba(255,255,255,0.8);
  padding:9px 0;
  font-size:12.5px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.stb-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.stb-right{
  display:flex;
  align-items:center;
  gap:10px;
}
/* Reuse existing top-info styles but override colors */
.site-topbar .top-info{display:flex;gap:20px;flex-wrap:wrap;align-items:center}
.site-topbar .top-info-item{display:flex;align-items:center;gap:7px;color:rgba(255,255,255,0.7);font-size:12.5px}
.site-topbar .top-info-item svg{color:rgba(253,201,15,0.7);width:13px;height:13px;flex-shrink:0}
.site-topbar .top-info-item a{color:rgba(255,255,255,0.8);font-weight:500}
.site-topbar .top-info-item a:hover{color:#fdc90f}
.site-topbar .top-socials{display:flex;gap:6px}
.site-topbar .top-socials a{
  width:26px;height:26px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:6px;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.6);
  font-size:11px;font-weight:700;
  transition:all 0.3s;
}
.site-topbar .top-socials a:hover{background:rgba(253,201,15,0.15);border-color:rgba(253,201,15,0.35);color:#fdc90f}

/* ============================================
   MAIN HEADER — Ultra Professional
   ============================================ */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(28px) saturate(180%);
  -webkit-backdrop-filter:blur(28px) saturate(180%);
  border-bottom:1px solid rgba(0,0,0,0.08);
  transition:all 0.35s ease;
  box-shadow:0 1px 0 rgba(0,0,0,0.05);
}
.site-header.scrolled{
  box-shadow:0 4px 32px rgba(0,0,0,0.12);
  border-bottom-color:transparent;
}
.site-header.scrolled::after{
  opacity:1;
}
.site-header::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:2px;
  background:linear-gradient(90deg,#0d0d0d 0%,#fdc90f 50%,#d26a04 100%);
  opacity:0;
  transition:opacity 0.35s;
}
.hdr-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  height:70px;
}
.hdr-nav{flex:1;display:flex;justify-content:center}
.hdr-actions{display:flex;align-items:center;gap:12px;flex-shrink:0}

/* CTA Button */
.hdr-cta{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:9px 20px;
  background:linear-gradient(135deg,#0d0d0d,#1a1a1a);
  color:#fff;
  border-radius:100px;
  font-size:13.5px;
  font-weight:700;
  text-decoration:none;
  transition:all 0.3s ease;
  box-shadow:0 4px 14px rgba(0,0,0,0.22);
  white-space:nowrap;
  border:none;
}
.hdr-cta:hover{
  background:linear-gradient(135deg,#fdc90f,#f5b800);
  color:#0a0a0a;
  transform:translateY(-1px);
  box-shadow:0 8px 22px rgba(253,201,15,0.35);
}
.hdr-cta svg{transition:transform 0.2s}
.hdr-cta:hover svg{transform:translateX(2px)}

/* Mobile Live Chat Button — HIDDEN ON DESKTOP */
.hdr-chat-mobile{
  display:none;
  align-items:center;
  gap:5px;
  padding:7px 13px;
  background:linear-gradient(135deg,#0d0d0d,#1a1a1a);
  color:#fff;
  border-radius:100px;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
  transition:all 0.3s;
  box-shadow:0 3px 12px rgba(0,0,0,0.22);
  position:relative;
}
.hdr-chat-mobile:hover{background:linear-gradient(135deg,#1a1a1a,#0d0d0d);color:#fff;transform:translateY(-1px)}
.hdr-chat-dot{
  width:7px;height:7px;
  background:#22c55e;
  border-radius:50%;
  flex-shrink:0;
  animation:pulse-green 2s infinite;
}
.hdr-chat-label{white-space:nowrap}

/* Hamburger */
.hdr-burger{
  display:none;
  flex-direction:column;
  gap:5px;
  padding:8px;
  background:none;
  border:1px solid var(--border);
  border-radius:9px;
  cursor:pointer;
  transition:all 0.25s;
}
.hdr-burger:hover{border-color:var(--c-deep-navy);background:rgba(0,0,0,0.04)}
.hdr-burger__bar{
  display:block;
  width:20px;
  height:2px;
  background:var(--c-charcoal);
  border-radius:2px;
  transition:all 0.3s cubic-bezier(.4,0,.2,1);
  transform-origin:center;
}
.hdr-burger.open .hdr-burger__bar--1{transform:translateY(7px) rotate(45deg)}
.hdr-burger.open .hdr-burger__bar--2{opacity:0;transform:scaleX(0)}
.hdr-burger.open .hdr-burger__bar--3{transform:translateY(-7px) rotate(-45deg)}

/* ============================================
   NAVIGATION — Main Menu
   ============================================ */
.main-nav > ul,
.hdr-nav > ul{
  display:flex;
  align-items:center;
  list-style:none;
  gap:2px;
}
.hdr-nav .menu > li > a,
.main-nav > ul > li > a{
  display:flex;
  align-items:center;
  gap:4px;
  padding:8px 13px;
  font-size:14px;
  font-weight:600;
  color:var(--ink-2);
  text-decoration:none;
  border-radius:9px;
  transition:all 0.22s;
  white-space:nowrap;
}
.hdr-nav .menu > li > a:hover,
.hdr-nav .menu > li > a.current,
.main-nav > ul > li > a:hover{
  color:var(--c-deep-navy);
  background:rgba(0,0,0,0.05);
}

/* Mega Dropdown */
.hdr-nav .has-children,
.main-nav .has-children{position:relative}
.hdr-nav .has-children > a::after,
.main-nav .has-children > a::after{
  content:'';
  display:inline-block;
  width:0;height:0;
  border-left:4px solid transparent;
  border-right:4px solid transparent;
  border-top:5px solid currentColor;
  opacity:0.5;
  transition:transform 0.25s;
  margin-left:2px;
}
.hdr-nav .has-children:hover > a::after,
.main-nav .has-children:hover > a::after{transform:rotate(180deg);opacity:1}
.mega-dropdown{
  position:absolute;
  top:calc(100% + 12px);
  left:50%;
  transform:translateX(-50%);
  width:720px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:0 20px 60px rgba(0,0,0,0.14);
  padding:24px;
  opacity:0;
  visibility:hidden;
  transition:all 0.28s cubic-bezier(.4,0,.2,1);
  transform:translateX(-50%) translateY(8px);
  z-index:200;
}
.has-children:hover .mega-dropdown{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}
.mega-dropdown::before{
  content:'';
  position:absolute;
  top:-8px;left:50%;
  transform:translateX(-50%);
  width:14px;height:14px;
  background:#fff;
  border-left:1px solid var(--border);
  border-top:1px solid var(--border);
  transform:translateX(-50%) rotate(45deg);
}
.mega-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.mega-col h4{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;color:var(--ink-dim);padding:6px 12px;margin-bottom:4px}
.mega-col ul{list-style:none}
.mega-col ul li a{
  display:flex;align-items:center;gap:8px;
  padding:7px 12px;
  font-size:13px;font-weight:500;
  color:var(--ink-2);
  text-decoration:none;
  border-radius:8px;
  transition:all 0.2s;
}
.mega-col ul li a:hover{background:rgba(0,0,0,0.05);color:var(--c-deep-navy)}
.mega-col ul li a .ico{color:var(--c-deep-navy);display:flex;flex-shrink:0}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.mobile-nav{
  position:fixed;
  top:0;left:0;
  width:360px;max-width:88vw;
  height:100vh;
  background:#fff;
  z-index:2000;
  transform:translateX(-100%);
  transition:transform 0.38s cubic-bezier(.4,0,.2,1);
  box-shadow:4px 0 40px rgba(0,0,0,0.18);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.mobile-nav.active{transform:translateX(0)}
.mobile-nav-overlay{
  position:fixed;inset:0;
  background:rgba(4,13,26,0.5);
  z-index:1999;
  opacity:0;visibility:hidden;
  transition:all 0.35s;
  backdrop-filter:blur(3px);
}
.mobile-nav-overlay.active{opacity:1;visibility:visible}
.mobile-nav-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 20px 16px;
  border-bottom:1px solid var(--border-light);
  flex-shrink:0;
  background:#fff;
}
.mobile-nav-header .site-logo{font-size:18px}
.mnav-header-actions{display:flex;align-items:center;gap:8px}
.mnav-chat{
  display:inline-flex;align-items:center;gap:5px;
  padding:6px 12px;
  background:linear-gradient(135deg,#0d0d0d,#1a1a1a);
  color:#fff;
  border-radius:100px;
  font-size:11.5px;font-weight:700;
  text-decoration:none;
  transition:all 0.25s;
}
.mnav-chat:hover{color:#fff;opacity:0.9}
.mobile-nav-close{
  width:34px;height:34px;
  border-radius:9px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  color:var(--ink-dim);
  transition:all 0.25s;
}
.mobile-nav-close:hover{background:var(--c-deep-navy);color:#fff;border-color:var(--c-deep-navy)}
.mobile-nav-body{flex:1;overflow-y:auto;padding:8px 0}
.mobile-nav ul{list-style:none;padding:0;margin:0}
.mobile-nav ul li{border-bottom:1px solid var(--border-light)}
.mobile-nav ul li a{
  display:flex;align-items:center;gap:10px;
  padding:13px 20px;
  font-size:14.5px;font-weight:600;
  color:var(--ink-2);text-decoration:none;
  transition:all 0.2s;
}
.mobile-nav ul li a:hover{color:var(--c-deep-navy);padding-left:26px;background:rgba(0,0,0,0.02)}
.mobile-nav .submenu{display:none;background:var(--bg-soft)}
.mobile-nav .has-children.open .submenu{display:block}
.mobile-nav .has-children > a::after{content:'+';margin-left:auto;font-size:18px;font-weight:400;color:var(--ink-dim);transition:transform 0.3s}
.mobile-nav .has-children.open > a::after{content:'−'}
.mobile-nav .submenu li a{padding:10px 20px 10px 44px;font-size:13.5px}
.mobile-nav .submenu li a .ico{color:var(--c-deep-navy);display:flex}
.mobile-nav-contact{
  padding:16px 20px;
  border-top:1px solid var(--border-light);
  background:var(--bg-soft);
  display:flex;flex-direction:column;gap:8px;
  flex-shrink:0;
}
.mnc-item{
  display:flex;align-items:center;gap:9px;
  font-size:13px;color:var(--ink-dim);
  text-decoration:none;transition:color 0.2s;
}
.mnc-item:hover{color:var(--c-deep-navy)}
.mnc-icon{
  width:28px;height:28px;border-radius:7px;
  background:#fff;border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--c-deep-navy);flex-shrink:0;
}
.mobile-nav-cta{
  margin:16px 20px;
  padding:13px;
  border-radius:100px;
  background:linear-gradient(135deg,#0d0d0d,#1a1a1a);
  color:#fff;
  font-weight:700;font-size:14px;
  text-decoration:none;text-align:center;
  transition:all 0.3s;
  flex-shrink:0;
  display:block;
  box-shadow:0 4px 16px rgba(0,0,0,0.22);
}
.mobile-nav-cta:hover{background:linear-gradient(135deg,#fdc90f,#f5b800);color:#0a0a0a}

/* ============================================
   RESPONSIVE HEADER
   ============================================ */
@media(max-width:1100px){
  .hdr-nav,.main-nav{display:none}
  .hdr-burger{display:flex}
  .hdr-chat-mobile{display:inline-flex}
  .hdr-cta{display:none}
  .site-topbar .top-info-item:nth-child(3),
  .site-topbar .top-info-item:nth-child(4){display:none}
}
@media(max-width:768px){
  .site-topbar{display:none}
  .hdr-inner{height:60px}
  .hdr-chat-label{display:none}
  .hdr-chat-mobile{padding:8px 10px;border-radius:50%;aspect-ratio:1;justify-content:center}
}
@media(max-width:480px){
  .hdr-inner{height:56px}
  .hdr-actions{gap:8px}
}

/* ============================================
   SCROLL LOCK
   ============================================ */
body.nav-open{overflow:hidden}

/* ============================================
   PROFESSIONAL DESIGN OVERRIDES
   ============================================ */
.header-actions{
  gap:14px;
}

/* ── Mobile Chat Button (shows next to hamburger on mobile) ── */
.mobile-chat-btn{
  display:none; /* shown via media query */
  align-items:center;
  gap:5px;
  padding:7px 12px;
  background:linear-gradient(135deg,#0d0d0d 0%,#1a1a1a 100%);
  color:#fff;
  border-radius:var(--radius-pill);
  font-size:12px;
  font-weight:600;
  white-space:nowrap;
  transition:all 0.3s ease;
  box-shadow:0 3px 12px rgba(0,0,0,0.22);
  border:none;
  cursor:pointer;
  text-decoration:none;
}
.mobile-chat-btn:hover{
  background:linear-gradient(135deg,#1a1a1a 0%,#0d0d0d 100%);
  transform:translateY(-1px);
  box-shadow:0 5px 18px rgba(0,0,0,0.32);
  color:#fff;
}
.mobile-chat-btn .pulse-dot{
  width:7px;height:7px;
  background:#22c55e;
  border-radius:50%;
  flex-shrink:0;
  box-shadow:0 0 0 0 rgba(34,197,94,0.7);
  animation:pulse-green 2s infinite;
}
.mobile-chat-btn__label{
  /* label shows on larger mobile, hidden on very small screens */
}

/* Desktop: hide mobile-chat-btn */
@media(min-width:1101px){
  .mobile-chat-btn{display:none!important}
}

/* ── Show on mobile / tablet ── */
@media(max-width:1100px){
  .mobile-chat-btn{display:inline-flex}
  /* tighten header on tablet */
  .header-actions{gap:10px}
}

@media(max-width:480px){
  /* Hide text label on very small screens — keep icon + dot only */
  .mobile-chat-btn__label{display:none}
  .mobile-chat-btn{padding:8px 10px;border-radius:50%;aspect-ratio:1;justify-content:center}
  .mobile-chat-btn .pulse-dot{position:absolute;top:2px;right:2px}
}

/* ── Advanced top-bar & header glass effect ── */
.site-header{
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
}
.site-header.scrolled{
  background:rgba(255,255,255,0.98);
  box-shadow:0 4px 32px rgba(0,0,0,0.12);
}

/* Gradient accent line at bottom of header */
.header-main::after{
  height:3px;
  background:linear-gradient(90deg,#0d0d0d 0%,#fdc90f 50%,#d26a04 100%);
}

/* ── Logo enhancement ── */
.logo-mark{
  background:linear-gradient(135deg,#0d0d0d 0%,#1a1a1a 100%);
  box-shadow:0 4px 12px rgba(0,0,0,0.25);
}

/* ── Nav link hover underline color ── */
.main-nav > ul > li > a::after{
  background:linear-gradient(90deg,#0d0d0d,#fdc90f);
}

.live-chat-btn{
  padding:8px 16px;
  background:linear-gradient(135deg,#0d0d0d 0%,#1a1a1a 100%);
  color:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,0.18);
}
.live-chat-btn:hover{
  background:linear-gradient(135deg,#1a1a1a 0%,#0d0d0d 100%);
  color:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.28);
}

.header-cta{
  background:linear-gradient(135deg,#fdc90f 0%,#f5b800 100%);
  color:var(--c-deep-navy);
  font-weight:700;
  box-shadow:0 4px 14px rgba(253,201,15,0.35);
}
.header-cta:hover{
  background:linear-gradient(135deg,#d26a04 0%,#e07a00 100%);
  color:#fff;
  box-shadow:0 8px 24px rgba(210,106,4,0.35);
}

.mobile-nav{
  width:380px;
  max-width:92vw;
  box-shadow:4px 0 30px rgba(0,0,0,0.18);
}
.mobile-nav-body{
  flex:1;
  overflow-y:auto;
}
.mobile-nav-cta{
  width:calc(100% - 40px);
  margin:0 20px 20px;
  justify-content:center;
  background:linear-gradient(135deg,#0d0d0d 0%,#1a1a1a 100%);
  color:#fff;
  box-shadow:none;
}
.mobile-nav-cta:hover{
  background:var(--c-charcoal);
  color:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

/* ============================================================
   SITE FOOTER — Complete Professional Redesign
   ============================================================ */
.site-footer{
  background:#f8fafc;
  color:#4b5563;
  padding:72px 0 0;
  position:relative;
}
.site-footer::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,#0d0d0d,#fdc90f,#d26a04);
}

/* ── Footer Top Grid ── */
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 2fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:52px;
  border-bottom:1px solid #e2e8f0;
}

/* ── Brand Column ── */
.footer-brand .site-logo{
  display:inline-flex;
  align-items:center;
  gap:9px;
  text-decoration:none;
  font-weight:900;
  font-size:20px;
  color:#0d0d0d;
  letter-spacing:-0.02em;
  margin-bottom:16px;
}
.footer-brand .site-logo .logo-mark{
  background:linear-gradient(135deg,#fdc90f,#f5b800);
  color:#0a0a0a;
  border-radius:9px;
  width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
  font-size:15px;font-weight:900;flex-shrink:0;
}
.footer-brand .site-logo .name{color:#0d0d0d}
.footer-brand .site-logo .tag{color:#d26a04;font-size:10px}
.footer-brand .custom-logo-link{display:inline-block;margin-bottom:16px}
.footer-brand .custom-logo-link img{
  max-width:var(--logo-w-desktop,150px);
  height:auto;
  filter:none;
}
.footer-brand .about-text{
  font-size:14px;
  color:#6b7280;
  line-height:1.75;
  margin-bottom:22px;
  max-width:300px;
}
.footer-brand .footer-socials,
.footer-brand .top-socials{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.footer-brand .footer-socials a,
.footer-brand .top-socials a{
  width:34px;height:34px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  color:#6b7280;
  font-size:12px;font-weight:700;
  text-decoration:none;
  transition:all 0.25s;
}
.footer-brand .footer-socials a:hover,
.footer-brand .top-socials a:hover{
  background:#0d0d0d;
  border-color:#0d0d0d;
  color:#fff;
  transform:translateY(-2px);
}

/* ── Column Headers ── */
.footer-accordion-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:none;
  border:none;
  padding:0 0 14px;
  margin-bottom:18px;
  border-bottom:1px solid #e2e8f0;
  cursor:default;
  font-family:var(--font-display);
}
.footer-accordion-toggle span:first-child,
.footer-col h5{
  color:#0d0d0d;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.14em;
}
.footer-toggle-icon{
  display:none;
  font-size:20px;
  line-height:1;
  color:#d26a04;
}
.footer-accordion-panel{ overflow:hidden }

/* ── Services List ── */
.services-col .footer-accordion-panel{
  display:block;
}
/* Scrollable wrapper inside the panel */
.footer-services-scroll{
  max-height:222px; /* exactly 6 items @ ~37px each */
  overflow-y:auto;
  overflow-x:hidden;
  padding-right:8px;
  scrollbar-width:thin;
  scrollbar-color:#c4c9d4 transparent;
}
.footer-services-scroll::-webkit-scrollbar{width:4px}
.footer-services-scroll::-webkit-scrollbar-track{background:transparent}
.footer-services-scroll::-webkit-scrollbar-thumb{background:#c4c9d4;border-radius:4px}
.footer-services-scroll::-webkit-scrollbar-thumb:hover{background:#9ca3af}
.footer-services-list{
  list-style:none;
  margin:0;padding:0;
  columns:unset;
}
.footer-services-list li{
  break-inside:avoid;
  margin-bottom:8px;
}
.footer-services-list li a{
  display:flex;
  align-items:center;
  gap:7px;
  font-size:13px;
  color:#6b7280;
  text-decoration:none;
  padding:3px 0;
  transition:all 0.2s;
}
.footer-services-list li a:hover{
  color:#0d0d0d;
  padding-left:4px;
}
.footer-services-list li a .service-ico svg{
  width:12px;height:12px;
  color:#c4c9d4;
  flex-shrink:0;
  transition:color 0.2s;
}
.footer-services-list li a:hover .service-ico svg{ color:#0d0d0d }
.footer-services-list .view-all-link a{
  color:#d26a04;
  font-weight:600;
}
.footer-services-list .view-all-link a:hover{ color:#0d0d0d }

/* ── Company & Nav Links ── */
.footer-col ul{
  list-style:none;
  margin:0;padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-col ul li a{
  display:block;
  font-size:14px;
  color:#6b7280;
  text-decoration:none;
  padding:2px 0;
  transition:all 0.2s;
}
.footer-col ul li a:hover{
  color:#0d0d0d;
  padding-left:5px;
}

/* ── Contact Column ── */
.footer-col.contact-col p{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13.5px;
  color:#6b7280;
  margin-bottom:12px;
  line-height:1.5;
}
.footer-col.contact-col p i{
  color:#0d0d0d;
  display:flex;
  flex-shrink:0;
  margin-top:1px;
}
.footer-col.contact-col a{
  color:#6b7280;
  text-decoration:none;
  transition:color 0.2s;
}
.footer-col.contact-col a:hover{ color:#0d0d0d }

/* ── Footer Bottom ── */
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:20px 0;
  border-top:1px solid #e2e8f0;
  background:#f1f5f9;
  margin-top:0;
  padding:20px 24px;
  margin-left:-24px;
  margin-right:-24px;
}
.footer-bottom p{
  font-size:13px;
  color:#9ca3af;
  margin:0;
}
.footer-bottom .legal-links{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}
.footer-bottom .legal-links a{
  font-size:13px;
  color:#9ca3af;
  text-decoration:none;
  transition:color 0.2s;
}
.footer-bottom .legal-links a:hover{ color:#0d0d0d }

/* ── Responsive ── */
@media(max-width:1100px){
  .footer-top{
    grid-template-columns:1fr 1fr;
    gap:32px;
  }
  .footer-brand{ grid-column:1 / -1 }
  .services-col{ grid-column:1 / -1 }
}
@media(max-width:768px){
  .site-footer{ padding-top:48px }
  .footer-top{
    grid-template-columns:1fr;
    gap:0;
    padding-bottom:0;
    border-bottom:none;
  }
  .footer-brand{
    grid-column:auto;
    padding-bottom:28px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    margin-bottom:0;
  }
  .footer-col,.services-col{
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .footer-accordion-toggle{
    cursor:pointer;
    padding:16px 0;
    margin-bottom:0;
    border-bottom:none;
  }
  .footer-toggle-icon{ display:inline-flex }
  .footer-accordion:not(.is-open) .footer-accordion-panel{
    max-height:0 !important;
  }
  .footer-accordion-panel{
    max-height:0;
    transition:max-height 0.38s ease;
  }
  .footer-accordion.is-open .footer-accordion-panel{
    max-height:1200px;
    padding-bottom:20px;
  }
  .footer-services-list{ columns:unset }
  .footer-services-scroll{
    max-height:none !important;
    overflow:visible !important;
    padding-right:0;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:10px;
    padding:20px 0;
  }
  .footer-bottom .legal-links{ justify-content:center;gap:14px }
}

@media(min-width:769px){
  .mobile-nav-cta{
    display:none;
  }
}

/* ============================================
   SVG SERVICE ICONS — MEGA DROPDOWN & FOOTER
   ============================================ */
.ico svg,
.service-ico svg{
  display:block;
  flex-shrink:0;
  color:var(--c-deep-navy);
  transition:color 0.2s;
}
.mega-col ul li a:hover .ico svg{
  color:var(--c-burnt-orange);
}
.footer-services-list li a:hover .service-ico svg{
  color:var(--c-burnt-orange);
}
.mobile-nav .submenu li a .ico svg{
  color:var(--c-deep-navy);
  opacity:0.75;
}
.mobile-nav .submenu li a:hover .ico svg{
  opacity:1;
  color:var(--c-burnt-orange);
}
.service-ico{
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
  margin-top:1px;
}
.ico{
  width:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

/* ============================================
   MOBILE NAV CONTACT STRIP
   ============================================ */
.mobile-nav-contact{
  border-top:1px solid var(--border);
  padding:16px 20px;
  background:var(--bg-soft);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mnc-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12.5px;
  color:var(--ink-dim);
  font-weight:500;
  text-decoration:none;
}
a.mnc-item:hover{color:var(--c-deep-navy)}
.mnc-icon{
  width:26px;height:26px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  color:var(--c-deep-navy);
}

/* ============================================
   HEADER — POLISHED DESKTOP REFINEMENTS
   ============================================ */
/* Divider between logo and nav */
.header-inner{
  gap:0;
}
.main-nav{
  flex:1;
  padding-left:32px;
  border-left:1px solid var(--border-light);
  margin-left:28px;
}
/* Nav item refinement */
.menu > li > a{
  font-size:14.5px;
  letter-spacing:0.01em;
}
/* Add a subtle badge to Live Support in top bar */
.live-chat-btn{
  letter-spacing:0.03em;
  font-size:11.5px;
}
/* Header CTA refinement */
.header-cta{
  letter-spacing:0.02em;
}
/* Sidebar toggle: thinner, more refined lines */
.sidebar-toggle span{
  height:1.5px;
}
/* Mobile toggle refined */
.mobile-menu-toggle span{
  height:1.5px;
}
/* Mega dropdown — slightly elevated shadow */
.mega-dropdown{
  box-shadow:0 24px 60px rgba(0,0,0,0.14);
}
/* Top bar SVG icon size refinement */
.top-info-item svg{
  width:14px;height:14px;
}

/* ============================================
   SUBSCRIBE POPUP — Hidden by default
   ============================================ */
.subscribe-popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(4,13,26,0.65);
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:all 0.35s ease;
  backdrop-filter:blur(4px);
  padding:20px;
}
.subscribe-popup-overlay.active{
  opacity:1;
  visibility:visible;
}
.subscribe-popup{
  background:#fff;
  border-radius:20px;
  padding:36px 32px;
  max-width:480px;
  width:100%;
  position:relative;
  box-shadow:0 24px 64px rgba(4,13,26,0.2);
  transform:translateY(20px) scale(0.97);
  transition:transform 0.35s ease;
}
.subscribe-popup-overlay.active .subscribe-popup{
  transform:translateY(0) scale(1);
}
.subscribe-popup-close{
  position:absolute;
  top:14px;right:14px;
  width:32px;height:32px;
  border-radius:50%;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
  font-size:14px;
  display:flex;align-items:center;justify-content:center;
  color:var(--ink-dim);
  transition:all 0.2s;
}
.subscribe-popup-close:hover{background:var(--c-deep-navy);color:#fff;border-color:var(--c-deep-navy)}
.subscribe-popup-top{text-align:center;margin-bottom:24px}
.subscribe-icon{font-size:36px;margin-bottom:12px}
.subscribe-popup-top h3{font-size:20px;font-weight:800;color:var(--c-charcoal);margin-bottom:8px}
.subscribe-popup-top p{font-size:14px;color:var(--ink-dim);line-height:1.65}
.subscribe-form{display:flex;flex-direction:column;gap:10px}
.subscribe-form input{
  width:100%;
  padding:12px 16px;
  border:1px solid var(--border);
  border-radius:10px;
  font-size:14px;
  outline:none;
  transition:border-color 0.25s;
  color:var(--c-charcoal);
  font-family:var(--font-body);
}
.subscribe-form input:focus{border-color:var(--c-deep-navy)}
.subscribe-form button{
  padding:13px;
  background:linear-gradient(135deg,#0d0d0d,#1a1a1a);
  color:#fff;
  border:none;
  border-radius:100px;
  font-size:14.5px;
  font-weight:700;
  cursor:pointer;
  transition:all 0.3s;
  font-family:var(--font-body);
  box-shadow:0 4px 16px rgba(0,0,0,0.22);
}
.subscribe-form button:hover{
  background:linear-gradient(135deg,#fdc90f,#f5b800);
  color:#0a0a0a;
  box-shadow:0 8px 24px rgba(253,201,15,0.3);
}
.subscribe-popup-foot{
  text-align:center;
  font-size:12px;
  color:var(--ink-dim);
  margin-top:12px;
}
.subscribe-popup-foot a{color:var(--c-deep-navy);font-weight:600}

/* ============================================
   LOGO SIZE — Backend Controlled via inline CSS
   (Fallback defaults)
   ============================================ */
.custom-logo-link img,
.site-header .custom-logo,
.site-header .custom-logo-link img{
  max-width:var(--logo-w-desktop, 150px);
  height:auto;
  display:block;
}
.site-logo{
  display:inline-flex;
  align-items:center;
  gap:9px;
  text-decoration:none;
  font-family:var(--font-display);
  font-weight:900;
  font-size:var(--logo-font-desktop, 20px);
  color:var(--c-charcoal);
  letter-spacing:-0.02em;
}
.site-logo .logo-mark{
  width:var(--logo-icon-desktop, 36px);
  height:var(--logo-icon-desktop, 36px);
  background:linear-gradient(135deg,#0d0d0d,#1a1a1a);
  color:#fff;
  border-radius:9px;
  display:flex;align-items:center;justify-content:center;
  font-size:calc(var(--logo-icon-desktop, 36px) * 0.44);
  font-weight:900;
  flex-shrink:0;
}
.site-logo .logo-text-wrap{display:flex;flex-direction:column;line-height:1}
.site-logo .name{font-size:inherit;font-weight:900;color:var(--c-charcoal)}
.site-logo .tag{font-size:10px;font-weight:500;color:var(--ink-dim);letter-spacing:0.04em;margin-top:2px}
@media(max-width:768px){
  .custom-logo-link img,
  .site-header .custom-logo,
  .site-header .custom-logo-link img{
    max-width:var(--logo-w-mobile, 120px);
  }
  .site-logo{
    font-size:var(--logo-font-mobile, 17px);
  }
  .site-logo .logo-mark{
    width:var(--logo-icon-mobile, 30px);
    height:var(--logo-icon-mobile, 30px);
  }
}



/* ================================================================
   SINGLE POST — Complete Rewrite v2
   All selectors prefixed sp- to avoid any theme conflicts
   ================================================================ */

/* Reading Progress */
#sp-progress {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    height: 3px !important;
    width: 0% !important;
    background: linear-gradient(90deg, #FDC90F, #D26A04) !important;
    z-index: 99999 !important;
    transition: width .12s linear !important;
    box-shadow: 0 0 10px rgba(253,201,15,.5) !important;
}

/* ── HERO ── */
.sp-hero {
    display: block;
    width: 100%;
    background: #0A0B0D;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 72px 0 48px;
    position: relative;
}
.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 25% 50%, rgba(253,201,15,.07) 0%, transparent 70%);
    pointer-events: none;
}
.sp-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.sp-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    font-size: 12px;
    font-family: var(--font-display);
    color: rgba(255,255,255,.45);
    margin-bottom: 20px;
}
.sp-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.sp-breadcrumb a:hover { color: #FDC90F; }
.sp-bc-sep { color: rgba(255,255,255,.3); }
.sp-bc-cur { color: rgba(255,255,255,.75); }

/* Badges */
.sp-hero-badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.sp-badge-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(253,201,15,.12);
    border: 1px solid rgba(253,201,15,.25);
    color: #FDC90F;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 100px;
    text-decoration: none;
    transition: background .2s;
}
.sp-badge-cat:hover { background: rgba(253,201,15,.2); color: #FDC90F; }
.sp-badge-hot {
    padding: 5px 12px;
    background: rgba(210,106,4,.15);
    border: 1px solid rgba(210,106,4,.3);
    color: #D26A04;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 100px;
}

/* Title */
.sp-post-title {
    font-family: var(--font-display) !important;
    font-size: clamp(26px, 4vw, 50px) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.13 !important;
    letter-spacing: -.03em !important;
    max-width: 820px;
    margin: 0 0 20px !important;
    padding: 0 !important;
}

/* Excerpt */
.sp-post-excerpt {
    font-size: 17px;
    color: rgba(255,255,255,.58);
    max-width: 680px;
    line-height: 1.65;
    margin: 0 0 28px;
    font-style: italic;
}
.sp-post-excerpt p { margin: 0; color: inherit; }

/* Meta row */
.sp-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
}
.sp-meta-author { display: flex; align-items: center; gap: 10px; }
.sp-avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FDC90F, #D26A04);
    color: #0A0B0D;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.15);
}
.sp-author-n {
    display: block;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    line-height: 1.2;
    transition: color .2s;
}
.sp-author-n:hover { color: #FDC90F; }
.sp-author-r {
    display: block;
    font-family: var(--font-display);
    font-size: 11px;
    color: rgba(255,255,255,.38);
    line-height: 1.2;
}
.sp-meta-sep {
    display: inline-block;
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,.15);
    vertical-align: middle;
}
.sp-meta-it {
    font-family: var(--font-display);
    font-size: 12.5px;
    color: rgba(255,255,255,.5);
}
.sp-meta-it time { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════
   THREE-COLUMN LAYOUT WRAPPER
   ═══════════════════════════════════════ */
.sp-wrap {
    display: grid !important;
    grid-template-columns: 240px 1fr 300px !important;
    grid-template-areas: "toc art sb" !important;
    gap: 48px !important;
    align-items: start !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 56px 24px 80px !important;
    box-sizing: border-box !important;
}

/* ── LEFT: TOC ── */
.sp-toc-col {
    grid-area: toc;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #E5EBF0 transparent;
}
.sp-toc-col::-webkit-scrollbar { width: 3px; }
.sp-toc-col::-webkit-scrollbar-thumb { background: #E5EBF0; border-radius: 3px; }

.sp-toc-box {
    background: #fff;
    border: 1px solid #E5EBF0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.sp-toc-hd {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px 18px 13px;
    background: #F8FAFC;
    border-bottom: 1px solid #E5EBF0;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #1C2431;
}
.sp-toc-icon { color: #D26A04; font-size: 16px; }
.sp-toc-prog { height: 3px; background: #E5EBF0; }
.sp-toc-prog-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FDC90F, #D26A04);
    transition: width .2s;
}
.sp-toc-nav { padding: 10px 0; }
.sp-toc-nav ul { list-style: none; padding: 0; margin: 0; }
.sp-toc-nav ul li { }
.sp-toc-a {
    display: block;
    padding: 7px 18px 7px 14px;
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 500;
    color: #64748B;
    text-decoration: none;
    border-left: 2px solid transparent;
    line-height: 1.4;
    transition: all .2s;
}
.sp-toc-a:hover { color: #0A0B0D; background: #F8FAFC; text-decoration: none; }
.sp-toc-a.sp-toc-active {
    color: #D26A04;
    border-left-color: #FDC90F;
    background: #FFFBEB;
    font-weight: 600;
}
.sp-toc-h3 { padding-left: 28px; font-size: 11.5px; opacity: .75; }
.sp-toc-h3.sp-toc-active { opacity: 1; }
.sp-toc-loading { padding: 14px 18px; font-family: var(--font-display); font-size: 12px; color: #9CA3AF; margin: 0; }
.sp-toc-foot { padding: 14px 18px; border-top: 1px solid #E5EBF0; }
.sp-share-lbl { font-family: var(--font-display); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #9CA3AF; margin: 0 0 10px; }
.sp-share-row { display: flex; gap: 7px; }
.sp-sh-btn {
    width: 32px; height: 32px;
    border-radius: 8px;
    border: 1px solid #E5EBF0;
    background: #F8FAFC;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 11px; font-weight: 800;
    color: #64748B;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}
.sp-sh-btn:hover { background: #0A0B0D; border-color: #0A0B0D; color: #fff; transform: translateY(-1px); }

/* Mobile TOC */
.sp-mob-toc-btn {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 13px 18px;
    background: #F8FAFC;
    border: 1px solid #E5EBF0;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: #1C2431;
}
.sp-mob-arrow { transition: transform .3s; display: inline-block; }
.sp-mob-toc-btn.sp-mob-open .sp-mob-arrow { transform: rotate(180deg); }
.sp-mob-toc-drop { margin-bottom: 24px; }
.sp-mob-toc-inner { padding: 8px 0; background: #fff; border: 1px solid #E5EBF0; border-radius: 12px; overflow: hidden; }

/* ── CENTRE: ARTICLE ── */
.sp-article {
    grid-area: art;
    min-width: 0;
}

/* POST CONTENT TYPOGRAPHY */
.sp-content {
    font-family: 'Lora', Georgia, 'Times New Roman', serif !important;
    font-size: 17.5px !important;
    line-height: 1.8 !important;
    color: #2A3441 !important;
}
.sp-content > * { margin-bottom: 1.5em; }
.sp-content > *:last-child { margin-bottom: 0; }
.sp-content p { font-family: 'Lora', Georgia, serif; font-size: inherit; line-height: inherit; color: inherit; margin: 0 0 1.55em; }

.sp-content h2 {
    font-family: var(--font-display) !important;
    font-size: clamp(21px, 2.4vw, 30px) !important;
    font-weight: 800 !important;
    color: #0A0B0D !important;
    letter-spacing: -.025em !important;
    margin: 2.5em 0 .75em !important;
    line-height: 1.2 !important;
    scroll-margin-top: 100px;
}
.sp-content h2::before {
    content: '';
    display: block;
    width: 36px; height: 3px;
    background: linear-gradient(90deg, #FDC90F, #D26A04);
    border-radius: 3px;
    margin-bottom: 13px;
}
.sp-content h3 {
    font-family: var(--font-display) !important;
    font-size: clamp(17px, 2vw, 22px) !important;
    font-weight: 700 !important;
    color: #0A0B0D !important;
    letter-spacing: -.02em !important;
    margin: 2em 0 .6em !important;
    line-height: 1.3 !important;
    scroll-margin-top: 100px;
}
.sp-content h4 {
    font-family: var(--font-display) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #2A3441 !important;
    margin: 1.6em 0 .5em !important;
}
.sp-content h5, .sp-content h6 {
    font-family: var(--font-display) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #2A3441 !important;
    margin: 1.4em 0 .4em !important;
}

.sp-content strong, .sp-content b { font-weight: 700; color: #0A0B0D; }
.sp-content a {
    color: #D26A04;
    text-decoration: underline;
    text-decoration-color: rgba(210,106,4,.35);
    text-underline-offset: 3px;
    transition: all .2s;
}
.sp-content a:hover { color: #0A0B0D; text-decoration-color: #0A0B0D; }

/* Lists */
.sp-content ul,
.sp-content ol { margin: 0 0 1.55em; padding: 0; }
.sp-content ul li,
.sp-content ol li {
    position: relative;
    padding: 5px 0 5px 28px;
    margin-bottom: 3px;
    font-family: 'Lora', Georgia, serif;
}
.sp-content ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 15px;
    width: 8px; height: 8px;
    background: linear-gradient(135deg, #FDC90F, #D26A04);
    border-radius: 50%;
    transform: translateY(-50%);
}
.sp-content ol { counter-reset: sp-ol; }
.sp-content ol li { counter-increment: sp-ol; }
.sp-content ol li::before {
    content: counter(sp-ol);
    position: absolute;
    left: 0; top: 7px;
    width: 20px; height: 20px;
    background: #0A0B0D;
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-content li > ul,
.sp-content li > ol { margin-top: 8px; margin-bottom: 0; }

/* Blockquote */
.sp-content blockquote {
    margin: 2em 0;
    padding: 24px 24px 24px 32px;
    background: #FFFBEB;
    border-left: 4px solid #FDC90F;
    border-radius: 0 12px 12px 0;
}
.sp-content blockquote p { font-style: italic; color: #2A3441; font-size: 18px; line-height: 1.65; margin: 0; }

/* Code */
.sp-content code {
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 14px;
    color: #D26A04;
    background: #F1F5F9;
    padding: 2px 7px;
    border-radius: 5px;
}
.sp-content pre {
    background: #0D0D0D;
    border-radius: 12px;
    padding: 22px;
    overflow-x: auto;
    margin: 2em 0;
}
.sp-content pre code { background: transparent; color: #E2E8F0; padding: 0; font-size: 13.5px; line-height: 1.75; }

/* Images */
.sp-content img { border-radius: 12px; max-width: 100%; height: auto; }
.sp-content figure { margin: 2em 0; }
.sp-content figcaption { font-family: var(--font-display); font-size: 12.5px; color: #9CA3AF; text-align: center; margin-top: 10px; font-style: italic; }

/* Tables */
.sp-content table { width: 100%; border-collapse: collapse; margin: 2em 0; font-family: var(--font-display); font-size: 14.5px; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 8px rgba(0,0,0,.06); }
.sp-content th { background: #0A0B0D; color: #fff; padding: 12px 16px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; text-align: left; }
.sp-content td { padding: 11px 16px; border-bottom: 1px solid #E5EBF0; color: #64748B; }
.sp-content tr:last-child td { border-bottom: none; }
.sp-content tr:nth-child(even) td { background: #F8FAFC; }
.sp-content tr:hover td { background: #FFFBEB; }

/* HR */
.sp-content hr { border: none; border-top: 2px solid #E5EBF0; margin: 2.4em 0; }

/* ── Tags ── */
.sp-tags-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid #E5EBF0; }
.sp-tags-lbl { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: .1em; }
.sp-tag { padding: 5px 12px; background: #F8FAFC; border: 1px solid #E5EBF0; border-radius: 100px; font-family: var(--font-display); font-size: 12px; font-weight: 600; color: #64748B; text-decoration: none; transition: all .2s; }
.sp-tag:hover { background: #0A0B0D; border-color: #0A0B0D; color: #fff; }

/* ── Share bar ── */
.sp-share-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; padding: 18px 22px; background: #F8FAFC; border: 1px solid #E5EBF0; border-radius: 12px; }
.sp-share-bar-lbl { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #2A3441; flex: 1; min-width: 160px; }
.sp-pill { display: inline-flex; align-items: center; gap: 5px; padding: 8px 16px; border-radius: 100px; font-family: var(--font-display); font-size: 12.5px; font-weight: 700; cursor: pointer; transition: all .2s; border: none; text-decoration: none; }
.sp-pill-tw { background: #0F172A; color: #fff; }
.sp-pill-tw:hover { background: #1DA1F2; transform: translateY(-1px); color: #fff; }
.sp-pill-li { background: #0F172A; color: #fff; }
.sp-pill-li:hover { background: #0A66C2; transform: translateY(-1px); color: #fff; }
.sp-pill-cp { background: #fff; border: 1px solid #E5EBF0; color: #2A3441; }
.sp-pill-cp:hover { background: #0A0B0D; border-color: #0A0B0D; color: #fff; }

/* ── Author box ── */
.sp-author-box { display: flex; gap: 22px; margin-top: 40px; padding: 26px; background: #fff; border: 1px solid #E5EBF0; border-radius: 16px; box-shadow: 0 1px 8px rgba(0,0,0,.06); }
.sp-author-ava { width: 70px; height: 70px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, #FDC90F, #D26A04); color: #0A0B0D; font-family: var(--font-display); font-size: 26px; font-weight: 900; display: flex; align-items: center; justify-content: center; border: 3px solid #E5EBF0; }
.sp-author-lbl { font-family: var(--font-display); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #D26A04; margin: 0 0 4px; }
.sp-author-nm { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: #0A0B0D; letter-spacing: -.02em; margin: 0 0 10px; }
.sp-author-bio { font-family: var(--font-display); font-size: 13.5px; line-height: 1.65; color: #64748B; margin: 0 0 14px; }
.sp-author-links { display: flex; gap: 8px; flex-wrap: wrap; }
.sp-author-lnk { display: inline-flex; align-items: center; gap: 5px; padding: 6px 14px; border-radius: 100px; font-family: var(--font-display); font-size: 12px; font-weight: 600; color: #64748B; background: #F8FAFC; border: 1px solid #E5EBF0; text-decoration: none; transition: all .2s; }
.sp-author-lnk:hover { background: #0A0B0D; border-color: #0A0B0D; color: #fff; }

/* ── Post Nav ── */
.sp-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.sp-nav-card { display: flex; flex-direction: column; gap: 7px; padding: 18px 20px; background: #F8FAFC; border: 1px solid #E5EBF0; border-radius: 12px; text-decoration: none; transition: all .25s; }
.sp-nav-card:hover { background: #FFFBEB; border-color: #FDC90F; transform: translateY(-2px); }
.sp-nav-dir { font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9CA3AF; }
.sp-nav-next .sp-nav-dir { text-align: right; }
.sp-nav-ttl { font-family: var(--font-display); font-size: 13.5px; font-weight: 700; color: #0A0B0D; line-height: 1.35; }
.sp-nav-next .sp-nav-ttl { text-align: right; }

/* Page links */
.sp-page-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 28px 0; font-family: var(--font-display); font-size: 13.5px; font-weight: 600; color: #64748B; }

/* ── Related Posts ── */
.sp-related { margin-top: 48px; }
.sp-sec-eye { font-family: var(--font-display); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: #D26A04; margin: 0 0 6px; display: flex; align-items: center; gap: 8px; }
.sp-sec-eye::before { content: ''; width: 20px; height: 2px; background: #FDC90F; border-radius: 2px; display: inline-block; }
.sp-sec-ttl { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: #0A0B0D; letter-spacing: -.025em; margin: 0 0 22px; }
.sp-rel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sp-rel-card { background: #fff; border: 1px solid #E5EBF0; border-radius: 12px; overflow: hidden; text-decoration: none; transition: all .3s; box-shadow: 0 1px 6px rgba(0,0,0,.05); display: flex; flex-direction: column; }
.sp-rel-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.1); border-color: #D1D9E6; }
.sp-rel-img { height: 130px; background: #0D0D0D center/cover no-repeat; position: relative; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sp-rel-fallback { font-size: 36px; }
.sp-rel-body { padding: 14px 16px; }
.sp-rel-cat { font-family: var(--font-display); font-size: 10.5px; font-weight: 700; color: #D26A04; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 5px; display: block; }
.sp-rel-ttl { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #0A0B0D; line-height: 1.35; margin: 0 0 8px; }
.sp-rel-meta { font-family: var(--font-display); font-size: 11px; color: #9CA3AF; }

/* ── Comments ── */
.sp-comments-wrap { margin-top: 48px; }
.sp-comments-wrap .comments-area { }
.sp-comments-wrap .comments-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: #0A0B0D; letter-spacing: -.025em; margin-bottom: 24px; }
.sp-comments-wrap .comment-list { list-style: none; padding: 0; }
.sp-comments-wrap .comment { margin-bottom: 20px; }
.sp-comments-wrap .comment-body { background: #F8FAFC; border: 1px solid #E5EBF0; border-radius: 12px; padding: 18px 20px; }
.sp-comments-wrap .comment-author b { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #0A0B0D; }
.sp-comments-wrap .comment-metadata { font-family: var(--font-display); font-size: 11.5px; color: #9CA3AF; margin: 3px 0 10px; }
.sp-comments-wrap .comment-metadata a { color: #9CA3AF; text-decoration: none; }
.sp-comments-wrap .comment-content p { font-family: var(--font-display); font-size: 14.5px; line-height: 1.7; color: #64748B; margin: 0; }
.sp-comments-wrap .reply a { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: #9CA3AF; text-decoration: none; transition: color .2s; }
.sp-comments-wrap .reply a:hover { color: #D26A04; }
.sp-comments-wrap #respond { margin-top: 32px; }
.sp-comments-wrap #reply-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #0A0B0D; letter-spacing: -.02em; margin-bottom: 20px; }
.sp-comments-wrap input[type="text"],
.sp-comments-wrap input[type="email"],
.sp-comments-wrap input[type="url"],
.sp-comments-wrap .comment-form-comment textarea {
    width: 100% !important;
    padding: 11px 15px !important;
    background: #F8FAFC !important;
    border: 1px solid #E5EBF0 !important;
    border-radius: 10px !important;
    font-family: var(--font-display) !important;
    font-size: 14px !important;
    color: #0A0B0D !important;
    outline: none !important;
    transition: border .2s !important;
    margin-bottom: 14px !important;
    box-sizing: border-box !important;
}
.sp-comments-wrap input:focus,
.sp-comments-wrap textarea:focus { border-color: #FDC90F !important; box-shadow: 0 0 0 3px rgba(253,201,15,.12) !important; }
.sp-comments-wrap .comment-form-comment textarea { min-height: 120px !important; resize: vertical !important; }
.sp-comments-wrap #submit,
.sp-comments-wrap input[type="submit"] {
    padding: 12px 28px !important;
    background: #0A0B0D !important;
    color: #fff !important;
    font-family: var(--font-display) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 100px !important;
    cursor: pointer !important;
    transition: all .25s !important;
}
.sp-comments-wrap #submit:hover,
.sp-comments-wrap input[type="submit"]:hover { background: #D26A04 !important; transform: translateY(-1px) !important; }

/* ── RIGHT: SIDEBAR ── */
.sp-sidebar {
    grid-area: sb;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #E5EBF0 transparent;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sp-sidebar::-webkit-scrollbar { width: 3px; }
.sp-sidebar::-webkit-scrollbar-thumb { background: #E5EBF0; border-radius: 3px; }

/* CTA */
.sp-sb-cta { background: #0A0B0D; border-radius: 16px; padding: 24px 20px; position: relative; overflow: hidden; }
.sp-sb-cta::before { content: ''; position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; background: radial-gradient(circle, rgba(253,201,15,.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.sp-sb-cta-top { font-size: 26px; margin-bottom: 12px; }
.sp-sb-cta-eye { font-family: var(--font-display); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: rgba(253,201,15,.7); margin: 0 0 7px; }
.sp-sb-cta-ttl { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -.025em; margin: 0 0 10px; }
.sp-sb-cta-txt { font-family: var(--font-display); font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; margin: 0 0 18px; }
.sp-sb-cta-btn { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; padding: 12px 18px; background: linear-gradient(135deg, #FDC90F, #FEE965); color: #0A0B0D; font-family: var(--font-display); font-size: 13.5px; font-weight: 800; border-radius: 100px; text-decoration: none; transition: all .25s; box-shadow: 0 8px 24px rgba(253,201,15,.3); }
.sp-sb-cta-btn:hover { background: linear-gradient(135deg, #D26A04, #e07a00); color: #fff; box-shadow: 0 12px 32px rgba(210,106,4,.35); transform: translateY(-1px); }

/* Newsletter */
.sp-sb-nl { background: #fff; border: 1px solid #E5EBF0; border-radius: 16px; padding: 20px; box-shadow: 0 1px 6px rgba(0,0,0,.05); }
.sp-sb-nl-ico { font-size: 22px; margin-bottom: 10px; }
.sp-sb-nl-ttl { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: #0A0B0D; letter-spacing: -.02em; margin: 0 0 6px; }
.sp-sb-nl-txt { font-family: var(--font-display); font-size: 12.5px; color: #64748B; line-height: 1.55; margin: 0 0 14px; }
.sp-sb-nl-form { display: flex; flex-direction: column; gap: 9px; }
.sp-sb-nl-inp { width: 100%; padding: 10px 14px; background: #F8FAFC; border: 1px solid #E5EBF0; border-radius: 9px; font-family: var(--font-display); font-size: 13px; color: #0A0B0D; outline: none; transition: border .2s; box-sizing: border-box; }
.sp-sb-nl-inp:focus { border-color: #FDC90F; box-shadow: 0 0 0 3px rgba(253,201,15,.1); }
.sp-sb-nl-inp::placeholder { color: #9CA3AF; }
.sp-sb-nl-btn { padding: 11px 18px; background: #0A0B0D; color: #fff; font-family: var(--font-display); font-size: 13px; font-weight: 700; border: none; border-radius: 9px; cursor: pointer; transition: all .2s; }
.sp-sb-nl-btn:hover { background: #D26A04; transform: translateY(-1px); }
.sp-sb-nl-note { font-family: var(--font-display); font-size: 11px; color: #9CA3AF; text-align: center; margin: 10px 0 0; }

/* Widgets */
.sp-sb-widget { background: #fff; border: 1px solid #E5EBF0; border-radius: 16px; overflow: hidden; box-shadow: 0 1px 6px rgba(0,0,0,.05); }
.sp-sb-wh { padding: 13px 18px 11px; background: #F8FAFC; border-bottom: 1px solid #E5EBF0; font-family: var(--font-display); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: #1C2431; }

/* Popular */
.sp-pop-list { list-style: none; padding: 6px 0; margin: 0; }
.sp-pop-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px 16px; border-bottom: 1px solid #F1F5F9; transition: background .2s; }
.sp-pop-item:last-child { border-bottom: none; }
.sp-pop-item:hover { background: #F8FAFC; }
.sp-pop-num { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: #E5EBF0; min-width: 28px; line-height: 1; padding-top: 2px; transition: color .2s; }
.sp-pop-item:hover .sp-pop-num { color: #FDC90F; }
.sp-pop-ttl { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #2A3441; line-height: 1.35; margin-bottom: 3px; display: block; text-decoration: none; transition: color .2s; }
.sp-pop-ttl:hover { color: #D26A04; }
.sp-pop-meta { font-family: var(--font-display); font-size: 11px; color: #9CA3AF; }

/* Tags cloud */
.sp-sb-tags { display: flex; flex-wrap: wrap; gap: 7px; padding: 14px 16px; }
.sp-sb-tag { padding: 5px 11px; background: #F8FAFC; border: 1px solid #E5EBF0; border-radius: 100px; font-family: var(--font-display); font-size: 11.5px; font-weight: 600; color: #64748B; text-decoration: none; transition: all .2s; }
.sp-sb-tag:hover { background: #0A0B0D; border-color: #0A0B0D; color: #fff; }

/* Categories */
.sp-sb-cats { list-style: none; padding: 6px 0; margin: 0; }
.sp-sb-cats li { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; border-bottom: 1px solid #F1F5F9; transition: background .2s; }
.sp-sb-cats li:last-child { border-bottom: none; }
.sp-sb-cats li:hover { background: #F8FAFC; }
.sp-sb-cats li a { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: #2A3441; text-decoration: none; transition: color .2s; }
.sp-sb-cats li a:hover { color: #D26A04; }
.sp-sb-cnt { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: #9CA3AF; background: #F8FAFC; border: 1px solid #E5EBF0; border-radius: 100px; padding: 2px 8px; }

/* Floating share */
.sp-float { position: fixed; left: 18px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 7px; z-index: 200; }
.sp-fl-btn { width: 40px; height: 40px; border-radius: 10px; background: #fff; border: 1px solid #E5EBF0; box-shadow: 0 1px 6px rgba(0,0,0,.08); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 11px; font-weight: 900; color: #64748B; cursor: pointer; transition: all .25s; text-decoration: none; }
.sp-fl-btn:hover { background: #0A0B0D; border-color: #0A0B0D; color: #fff; transform: scale(1.08); }
.sp-fl-top { opacity: 0; transition: opacity .3s, background .25s, transform .25s; font-size: 16px; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width:1199px) {
    .sp-wrap { grid-template-columns: 200px 1fr 260px !important; gap: 32px !important; }
    .sp-float { display: none; }
}
@media (max-width:1023px) {
    .sp-wrap { grid-template-columns: 1fr 260px !important; grid-template-areas: "art sb" !important; gap: 28px !important; }
    .sp-toc-col { display: none !important; }
    .sp-mob-toc-btn { display: flex !important; }
    .sp-float { display: none; }
}
@media (max-width:767px) {
    .sp-hero { padding: 40px 0 36px; }
    .sp-wrap { grid-template-columns: 1fr !important; grid-template-areas: "art" "sb" !important; gap: 0 !important; padding: 32px 20px 60px !important; }
    .sp-sidebar { position: static !important; max-height: none !important; overflow: visible !important; margin-top: 40px; }
    .sp-post-title { font-size: clamp(22px, 7vw, 34px) !important; }
    .sp-rel-grid { grid-template-columns: 1fr !important; }
    .sp-post-nav { grid-template-columns: 1fr !important; }
    .sp-author-box { flex-direction: column; gap: 14px; }
    .sp-meta-sep { display: none; }
    .sp-meta-row { gap: 8px; }
    .sp-share-bar-lbl { flex-basis: 100%; }
}
@media (max-width:479px) {
    .sp-hero-inner { padding: 0 16px; }
    .sp-content { font-size: 16.5px !important; }
    .sp-sb-cta, .sp-sb-nl { padding: 18px 16px; }
}

/* ================================================================
   MARQUEE ANNOUNCEMENT BAR + TOPBAR MOBILE FIX
   ================================================================ */

/* ── Marquee Bar ── */
.ade-marquee-bar {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    background: linear-gradient(90deg, #0A0B0D 0%, #111318 50%, #0A0B0D 100%) !important;
    border-bottom: 1px solid rgba(253,201,15,0.18) !important;
    overflow: hidden !important;
    height: 36px !important;
    min-height: 36px !important;
    display: flex !important;
    align-items: center !important;
    z-index: 1001 !important;
    box-sizing: border-box !important;
}
/* Subtle shimmer line */
.ade-marquee-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(253,201,15,0.5) 40%, rgba(210,106,4,0.5) 60%, transparent 100%);
}
/* Edge fade masks */
.ade-marquee-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,  #0A0B0D 0%, transparent 80px),
        linear-gradient(to left,   #0A0B0D 0%, transparent 120px);
    pointer-events: none;
    z-index: 2;
}

/* Scrolling track */
.ade-marquee-track {
    display: flex !important;
    width: max-content !important;
    min-width: 200% !important;
    animation: adeMqScroll 55s linear infinite !important;
    will-change: transform !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}
@keyframes adeMqScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ade-marquee-inner {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}
.ade-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.01em;
}
.ade-mq-icon {
    font-size: 13px;
    line-height: 1;
    flex-shrink: 0;
}
.ade-mq-text {}
.ade-mq-dot {
    font-size: 6px;
    color: rgba(253,201,15,0.45);
    margin-left: 12px;
    flex-shrink: 0;
    vertical-align: middle;
}

/* Pause & Close buttons */
.ade-mq-pause,
.ade-mq-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255,255,255,0.45);
    transition: all 0.2s;
    z-index: 3;
    flex-shrink: 0;
    padding: 0;
}
.ade-mq-pause:hover,
.ade-mq-close:hover {
    background: rgba(253,201,15,0.15);
    border-color: rgba(253,201,15,0.35);
    color: #FDC90F;
}
.ade-mq-pause { right: 34px; }
.ade-mq-close { right: 8px; }

/* ── TOPBAR — Now visible on mobile too ── */
/* Remove the old mobile hide rule */
.site-topbar {
    display: block !important;
    background: #101010;
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Mobile topbar — simplified layout */
@media (max-width: 768px) {
    .site-topbar {
        display: block !important;
        padding: 7px 0;
    }
    .stb-inner {
        flex-wrap: wrap;
        gap: 6px 12px;
        justify-content: center;
    }
    /* Show only email + phone on mobile, hide location & hours */
    .site-topbar .top-info { gap: 12px; justify-content: center; flex-wrap: wrap; }
    .site-topbar .top-info-item:nth-child(3),
    .site-topbar .top-info-item:nth-child(4) { display: none !important; }
    .site-topbar .top-info-item { font-size: 11.5px; }
    .stb-right { justify-content: center; }
}
@media (max-width: 480px) {
    .site-topbar .top-info-item:nth-child(2) { display: none !important; }
    .stb-inner { justify-content: space-between; }
    .site-topbar .top-info { justify-content: flex-start; }
}

/* Marquee mobile — slightly smaller */
@media (max-width: 768px) {
    .ade-marquee-bar { height: 32px; }
    .ade-marquee-item { font-size: 11.5px; padding: 0 14px; gap: 6px; }
    .ade-mq-icon { font-size: 12px; }
    .ade-marquee-track { animation-duration: 40s; }
    .ade-mq-pause { display: none; }
    .ade-mq-close { right: 6px; width: 20px; height: 20px; }
}
@media (max-width: 480px) {
    .ade-marquee-bar { height: 30px; }
    .ade-marquee-item { font-size: 11px; padding: 0 10px; }
    .ade-marquee-track { animation-duration: 32s; }
}

/* ================================================================
   FIXES: Pure White Text + Portfolio Left-Align + Section Head
   ================================================================ */

/* ── Pure white topbar text ── */
.site-topbar,
.site-topbar .top-info-item,
.site-topbar .top-info-item a,
.site-topbar .top-info-item span { color: #ffffff !important; }
.site-topbar .top-info-item svg { color: #FDC90F !important; }
.site-topbar .top-info-item a:hover { color: #FDC90F !important; }

/* ── Pure white marquee text ── */
.ade-marquee-item,
.ade-mq-text { color: #ffffff !important; }
.ade-mq-icon { color: #FDC90F !important; }
.ade-mq-dot { color: rgba(253,201,15,.6) !important; }

/* ── Mobile topbar: show email + phone always ── */
@media (max-width:768px) {
    .site-topbar { display: block !important; }
    .site-topbar .top-info-item:nth-child(1),
    .site-topbar .top-info-item:nth-child(2) { display: flex !important; }
    .site-topbar .top-info-item:nth-child(3),
    .site-topbar .top-info-item:nth-child(4) { display: none !important; }
    .stb-inner { justify-content: center; flex-wrap: wrap; gap: 6px 16px; }
    .stb-right { display: none; }
}
@media (max-width:480px) {
    .stb-inner { justify-content: space-between; padding: 0 16px; }
    .site-topbar .top-info { gap: 8px; }
    .site-topbar .top-info-item { font-size: 11px; gap: 5px; }
}

/* ── Portfolio section head — LEFT aligned ── */
.hp-portfolio .hp-section-head--left,
.hp-recent-work .hp-section-head--left {
    text-align: left !important;
    align-items: flex-start !important;
}
.hp-portfolio .hp-section-head--left .hp-section-kicker,
.hp-portfolio .hp-section-head--left .hp-section-title,
.hp-portfolio .hp-section-head--left .hp-section-sub {
    text-align: left !important;
}
.hp-portfolio .hp-section-head--left .hp-section-action {
    align-self: flex-start;
}

/* ── Portfolio card thumbnail support ── */
.hp-recent-work-card__thumb {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin-bottom: 14px;
    overflow: hidden;
}

/* ── Marquee bulletproof containment fix ── */
.ade-marquee-inner {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}
.ade-marquee-item {
    white-space: nowrap !important;
    display: inline-flex !important;
}
