/* ============================================================
   FOLIO PRO — main.css
   Unique colour: Electric Violet #7C3AED (purple/violet)
   All sizing via CSS custom properties — overridden by Customizer
============================================================ */
:root {
  /* ── Unique Brand Colours ── */
  --color-accent:      #7C3AED;
  --color-accent-rgb:  124,58,237;
  --color-accent2:     #5B21B6;
  --color-accent-glow: rgba(124,58,237,0.25);

  /* ── Dark Mode (default) ── */
  --color-bg:          #0D0D12;
  --color-bg2:         #13131A;
  --color-bg3:         #1A1A24;
  --color-surface:     #1E1E2A;
  --color-border:      rgba(255,255,255,0.07);
  --color-text:        #F0EEFF;
  --color-muted:       #7A7895;
  --color-heading:     #F0EEFF;
  --color-body-text:   #7A7895;
  --color-nav-text:    #5A5878;
  --color-nav-bg:      #0D0D12;
  --vline:             rgba(124,58,237,0.08);

  /* ── Typography ── */
  --font-main:         'Jost', sans-serif;
  --font-heading:      'Jost', sans-serif;
  --font-nav:          'Jost', sans-serif;

  /* ── Sizing (overridden by Customizer inline CSS) ── */
  --size-hero:         clamp(2.5rem, 7vw, 6rem);
  --size-section:      clamp(1.6rem, 3vw, 3.2rem);
  --size-nav-menu:     clamp(1.8rem, 4vw, 4rem);
  --size-body:         16px;
  --size-subtitle:     11px;

  /* ── Layout ── */
  --radius:            12px;
  --radius-lg:         20px;
  --ease:              cubic-bezier(0.25,0.46,0.45,0.94);
  --t:                 0.35s;
  --max-w:             1200px;
  --nav-h:             80px;
}

/* ── Light Mode overrides ── */
body.light-mode {
  --color-bg:        #F7F5FF;
  --color-bg2:       #EDE9FF;
  --color-bg3:       #E3DDFF;
  --color-surface:   #FFFFFF;
  --color-border:    rgba(124,58,237,0.1);
  --color-text:      #1A1528;
  --color-muted:     #6B6880;
  --color-heading:   #1A1528;
  --color-body-text: #6B6880;
  --color-nav-text:  #9894B0;
  --color-nav-bg:    #F7F5FF;
  --vline:           rgba(124,58,237,0.07);
}

/* ── Reset ─────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth }
body { font-family:var(--font-main); background:var(--color-bg); color:var(--color-text); line-height:1.75; overflow-x:hidden; font-size:var(--size-body); transition:background .4s,color .4s }
img { display:block; max-width:100%; height:auto }
a { color:inherit; text-decoration:none }
ul,ol { list-style:none }
button { cursor:pointer; border:none; background:none; font-family:inherit }
.skip-link { position:absolute; top:-60px; left:0; background:var(--color-accent); color:#fff; padding:10px 20px; z-index:9999; border-radius:0 0 var(--radius) 0; transition:top .2s }
.skip-link:focus { top:0 }

/* ── Layout ─────────────────────────────────────────────── */
.container { width:90%; max-width:var(--max-w); margin:0 auto }
.row { display:flex; flex-wrap:wrap; margin:0 -15px }
[class*="col-"] { padding:0 15px }
.col-6 { width:50% } .col-4 { width:33.333% }
.col-5 { width:41.666% } .col-7 { width:58.333% }
.v-line { position:relative }
.v-line::before { content:''; position:absolute; top:0; bottom:0; width:1px; background:var(--vline); z-index:0 }
.v-line-left::before { left:0 } .v-line-right::before { right:0 }

/* ── Sections ───────────────────────────────────────────── */
.lui-section { padding:110px 0; position:relative; overflow:hidden }
.lui-gradient-top    { background:linear-gradient(to bottom, var(--color-bg2), var(--color-bg)) }
.lui-gradient-bottom { background:linear-gradient(to bottom, var(--color-bg), var(--color-bg2)) }
.lui-gradient-center { background:var(--color-bg) }
.lui-heading { padding-bottom:60px; text-align:center }
.m-title    { font-family:var(--font-heading); font-size:var(--size-section); font-weight:800; line-height:1.05; letter-spacing:-.02em; color:var(--color-heading) }
.m-subtitle { font-size:1rem; color:var(--color-muted); margin-top:8px; font-style:italic }
.m-subtitle b { color:var(--color-accent); font-style:normal }
.lui-subtitle { font-family:var(--font-main); font-size:var(--size-subtitle); font-weight:700; text-transform:uppercase; letter-spacing:.15em; color:var(--color-accent); display:block; margin-bottom:8px }
.lui-title { font-family:var(--font-heading); font-size:1.2rem; font-weight:700; margin:10px 0 12px; color:var(--color-heading) }
.lui-text  { font-size:14px; color:var(--color-body-text); line-height:1.8 }
.lui-bgtitle { position:absolute; bottom:10px; left:50%; transform:translateX(-50%); font-size:clamp(4rem,10vw,9rem); font-weight:900; color:transparent; -webkit-text-stroke:1px var(--vline); white-space:nowrap; pointer-events:none; z-index:0; letter-spacing:.05em }

/* ── Buttons ─────────────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; gap:10px; padding:13px 30px; border-radius:100px; font-size:13px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; cursor:pointer; transition:all var(--t) var(--ease); border:2px solid var(--color-accent); color:var(--color-accent); background:transparent }
.btn:hover { background:var(--color-accent); color:#fff; transform:translateY(-2px); box-shadow:0 12px 40px var(--color-accent-glow) }
.btn-solid { background:var(--color-accent); color:#fff }
.btn-solid:hover { background:var(--color-accent2); border-color:var(--color-accent2) }
.btn-lnk { font-size:13px; font-weight:600; color:var(--color-muted); letter-spacing:.05em; text-transform:uppercase; position:relative; padding-bottom:2px; transition:color var(--t) }
.btn-lnk::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1px; background:var(--color-accent); transition:width var(--t) }
.btn-lnk:hover { color:var(--color-accent) }
.btn-lnk:hover::after { width:100% }
.lnk { font-size:13px; font-weight:600; color:var(--color-accent); letter-spacing:.07em; text-transform:uppercase; display:inline-flex; align-items:center; gap:6px; transition:gap var(--t) }
.lnk:hover { gap:12px }
.lnk::after { content:'→' }

/* ── Scroll progress ─────────────────────────────────────── */
#scroll-progress { position:fixed; top:0; left:0; height:3px; background:linear-gradient(90deg,var(--color-accent2),var(--color-accent)); z-index:9997; transition:width .1s linear; width:0 }

/* ── Preloader ───────────────────────────────────────────── */
#preloader { position:fixed; inset:0; background:var(--color-bg); z-index:9999; display:flex; align-items:center; justify-content:center; transition:opacity .6s,visibility .6s }
#preloader.hidden { opacity:0; visibility:hidden; pointer-events:none }
.preloader-inner { text-align:center }
.preloader-name { font-size:2rem; font-weight:800; color:var(--color-text); letter-spacing:.1em }
.preloader-name span { color:var(--color-accent) }
.preloader-bar { width:120px; height:2px; background:var(--color-border); border-radius:2px; margin:16px auto 0; overflow:hidden }
.preloader-fill { height:100%; width:0; background:linear-gradient(90deg,var(--color-accent2),var(--color-accent)); border-radius:2px; animation:preload .9s var(--ease) forwards }
@keyframes preload { to { width:100% } }

/* ── Custom Cursor ───────────────────────────────────────── */
.cursor { position:fixed; width:28px; height:28px; border:2px solid var(--color-accent); border-radius:50%; pointer-events:none; z-index:9998; top:0; left:0; mix-blend-mode:difference }
.cursor.zoom { transform:scale(2.2) !important; background:rgba(var(--color-accent-rgb),.08) }
@media(pointer:coarse) { .cursor { display:none } }

/* ── Header ──────────────────────────────────────────────── */
#site-header { position:fixed; top:0; left:0; right:0; z-index:100; height:var(--nav-h); display:flex; align-items:center; transition:background .4s,box-shadow .4s }
#site-header.sticky { background:rgba(13,13,18,.94); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); box-shadow:0 1px 0 var(--color-border) }
body.light-mode #site-header.sticky { background:rgba(247,245,255,.94) }
.header-inner { display:flex; align-items:center; justify-content:space-between; width:100% }
.nav-logo { font-family:var(--font-heading); font-size:1.4rem; font-weight:800; letter-spacing:-.02em; color:var(--color-text) }
.nav-logo .accent { color:var(--color-accent) }
.nav-logo img { height:36px; width:auto }
.header-right { display:flex; align-items:center; gap:20px }

/* Theme toggle */
.theme-toggle { width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--color-muted); transition:color var(--t),background var(--t); z-index:201; position:relative }
.theme-toggle:hover { color:var(--color-accent); background:rgba(var(--color-accent-rgb),.1) }
.icon-sun  { display:none }
body.light-mode .icon-moon { display:none }
body.light-mode .icon-sun  { display:block }

/* Hamburger */
.menu-btn { display:flex; flex-direction:column; gap:5px; padding:8px; position:relative; z-index:201 }
.menu-btn span { display:block; width:26px; height:2px; border-radius:2px; transition:all .4s ease; transform-origin:center }
/* hamburger lines adapt to page bg so always visible */
.menu-btn span { background:var(--color-text) }
/* when overlay is open, lines should be white/light regardless of mode */
.menu-btn.active span { background:#F0EEFF }
.menu-btn.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px) }
.menu-btn.active span:nth-child(2) { opacity:0; transform:translateX(-10px) }
.menu-btn.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px) }

/* ── Fullscreen Nav Overlay ──────────────────────────────── */
.nav-overlay {
  position:fixed; inset:0; z-index:200;
  display:flex; align-items:center;
  opacity:0; visibility:hidden;
  transition:opacity .5s,visibility .5s;
  /* Always use dark bg for overlay regardless of light/dark mode
     so text and close button are always readable */
  background:#0D0D12 !important;
}
.nav-overlay.open { opacity:1; visibility:visible }
.nav-overlay-inner { width:100%; padding:0 5% 0 8%; display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:60px }
.nav-menu li { overflow:hidden; margin-bottom:2px }
.nav-menu a { font-family:var(--font-nav); font-size:var(--size-nav-menu); font-weight:800; line-height:1.1; color:#5A5878; display:inline-block; letter-spacing:-.02em; transform:translateY(110%); transition:transform .55s cubic-bezier(.76,0,.24,1),color var(--t) }
.nav-overlay.open .nav-menu a { transform:translateY(0) }
.nav-menu a:hover,.nav-menu a.is-active { color:var(--color-accent) }
.nav-menu li:nth-child(1) a { transition-delay:.05s }
.nav-menu li:nth-child(2) a { transition-delay:.10s }
.nav-menu li:nth-child(3) a { transition-delay:.15s }
.nav-menu li:nth-child(4) a { transition-delay:.20s }
.nav-menu li:nth-child(5) a { transition-delay:.25s }
.nav-menu li:nth-child(6) a { transition-delay:.30s }
.nav-menu li:nth-child(7) a { transition-delay:.35s }
.nav-menu li:nth-child(8) a { transition-delay:.40s }
.nav-social { display:flex; gap:12px; margin-top:40px }
.nav-social a { width:44px; height:44px; border:1px solid rgba(255,255,255,.1); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; color:rgba(255,255,255,.35); transition:all var(--t) }
.nav-social a:hover { border-color:var(--color-accent); color:var(--color-accent) }
.nav-vline { position:absolute; right:80px; top:10%; height:80%; width:1px; background:rgba(124,58,237,.1) }

/* Close button — always white since overlay is always dark */
.nav-close-btn {
  position:absolute; top:28px; right:28px;
  width:44px; height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  font-size:20px; line-height:1;
  cursor:pointer;
  transition:all var(--t);
  z-index:210;
  background:rgba(255,255,255,.05);
}
.nav-close-btn:hover { border-color:var(--color-accent); color:var(--color-accent); background:rgba(var(--color-accent-rgb),.1) }

/* ── Mobile horizontal nav (toggled via Customizer) ─────── */
.mobile-nav-horizontal .nav-overlay {
  position:fixed; inset:auto 0 0 0; top:auto;
  height:auto; min-height:auto;
  padding:16px 0 calc(16px + env(safe-area-inset-bottom));
  border-radius:20px 20px 0 0;
  border-top:1px solid rgba(var(--color-accent-rgb),.2);
  align-items:center;
}
.mobile-nav-horizontal .nav-overlay-inner {
  flex-direction:column; gap:12px; padding:0 16px; align-items:center;
}
.mobile-nav-horizontal .nav-menu {
  display:flex; flex-wrap:wrap; justify-content:center; gap:4px;
}
.mobile-nav-horizontal .nav-menu li { overflow:visible; margin:0 }
.mobile-nav-horizontal .nav-menu a {
  font-size:0.78rem !important;
  font-weight:600;
  padding:8px 14px;
  border-radius:100px;
  border:1px solid rgba(255,255,255,.08);
  transform:none !important;
  transition:background var(--t),color var(--t),border-color var(--t) !important;
}
.mobile-nav-horizontal .nav-menu a:hover,
.mobile-nav-horizontal .nav-menu a.is-active {
  background:rgba(var(--color-accent-rgb),.15);
  border-color:var(--color-accent);
  color:var(--color-accent);
}
.mobile-nav-horizontal .nav-social { margin-top:0; justify-content:center }
.mobile-nav-horizontal .nav-vline  { display:none }
.mobile-nav-horizontal .nav-close-btn { top:14px; right:14px; width:36px; height:36px; font-size:16px }

/* ── Hero ────────────────────────────────────────────────── */
#started-section { min-height:100vh; display:flex; align-items:center; padding-top:var(--nav-h) }
.hero-started { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; padding:60px 0; position:relative; z-index:1 }
.hero-title { font-family:var(--font-heading); font-size:var(--size-hero); font-weight:900; line-height:.95; letter-spacing:-.03em; margin-bottom:18px; color:var(--color-heading) }
.hero-title b { color:var(--color-accent) }
.hero-job { font-size:1.05rem; color:var(--color-muted); margin-bottom:20px }
.hero-job strong { color:var(--color-accent); font-weight:600 }
.hero-desc { font-size:15px; color:var(--color-body-text); max-width:440px; margin-bottom:32px; line-height:1.85 }
.hero-social { display:flex; gap:10px; margin-bottom:32px }
.hero-social a { width:38px; height:38px; border:1px solid var(--color-border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:14px; color:var(--color-muted); transition:all var(--t) }
.hero-social a:hover { border-color:var(--color-accent); color:var(--color-accent); transform:translateY(-3px) }
.hero-btns { display:flex; gap:16px; flex-wrap:wrap }
.hero-visual { position:relative; display:flex; justify-content:center }
.hero-photo-wrap { position:relative; z-index:2 }
.hero-photo-wrap img,.hero-photo-placeholder { width:340px; height:420px; border-radius:var(--radius-lg); object-fit:cover; display:block }
.hero-photo-placeholder { background:linear-gradient(135deg,var(--color-surface),var(--color-bg3)); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:var(--color-muted); font-size:13px; text-align:center; padding:20px }
.hero-photo-placeholder svg { opacity:.3 }
.hero-circle { position:absolute; border-radius:50% }
.hero-circle-1 { width:370px; height:370px; border:1px solid rgba(var(--color-accent-rgb),.2); bottom:-20px; left:50%; transform:translateX(-50%) }
.hero-circle-2 { width:460px; height:460px; border:1px dashed rgba(var(--color-accent-rgb),.08); bottom:-65px; left:50%; transform:translateX(-50%) }
.hero-stats-card { position:absolute; bottom:40px; left:-24px; background:var(--color-surface); border:1px solid var(--color-border); border-radius:var(--radius); padding:18px 22px; backdrop-filter:blur(10px); z-index:3 }
.hero-stats-card ul { display:flex; gap:28px }
.hero-stats-card .num { font-size:1.7rem; font-weight:900; color:var(--color-heading); line-height:1 }
.hero-stats-card .label { font-size:11px; color:var(--color-muted); text-transform:uppercase; letter-spacing:.08em; margin-top:4px; line-height:1.3 }
.hero-bgtitle { position:absolute; bottom:-10px; left:0; font-size:clamp(5rem,15vw,13rem); font-weight:900; color:transparent; -webkit-text-stroke:1px var(--vline); white-space:nowrap; pointer-events:none; z-index:0; overflow:hidden }

/* ── Services ────────────────────────────────────────────── */
.services-item { background:var(--color-surface); border:1px solid var(--color-border); border-radius:var(--radius-lg); padding:36px 30px; position:relative; overflow:hidden; transition:transform var(--t),box-shadow var(--t),border-color var(--t); height:100%; display:flex; flex-direction:column }
.services-item:hover { transform:translateY(-6px); box-shadow:0 30px 60px rgba(var(--color-accent-rgb),.12); border-color:rgba(var(--color-accent-rgb),.35) }
.services-item .svc-icon { width:50px; height:50px; border-radius:14px; background:rgba(var(--color-accent-rgb),.1); margin:14px 0 18px; display:flex; align-items:center; justify-content:center }
.services-item .svc-icon svg { width:22px; height:22px; stroke:var(--color-accent) }
.services-item .lui-text { flex:1; margin-bottom:22px }
.swiper-pagination { display:flex; justify-content:center; gap:8px; margin-top:36px !important; position:static !important }
.swiper-pagination-bullet { width:8px; height:8px; border-radius:50%; background:var(--color-border); opacity:1; transition:all var(--t) }
.swiper-pagination-bullet-active { background:var(--color-accent) !important; width:24px; border-radius:4px }

/* ── Skills ──────────────────────────────────────────────── */
.skills-item { margin-bottom:30px }
.skills-item .sk-name { font-size:var(--skill-name-size, 15px); font-weight:600; display:flex; justify-content:space-between; margin-bottom:6px; color:var(--color-heading) }
.skills-item .lui-text { margin-bottom:10px; font-size:13px }
.skills-item .bar-wrap { height:4px; background:var(--color-border); border-radius:4px; overflow:hidden }
.skills-item .bar-fill { height:100%; background:linear-gradient(90deg, var(--skill-bar-color2, var(--color-accent2)), var(--skill-bar-color, var(--color-accent))); border-radius:4px; width:0; transition:width 1.6s cubic-bezier(.25,.46,.45,.94) }
.skills-item.animated .bar-fill { width:var(--bar-w) }
.skills-item .pct { font-size:var(--skill-count-size, 13px); font-weight:700; color:var(--skill-count-color, var(--color-accent)) }

/* ── Portfolio ───────────────────────────────────────────── */
.filter-links { display:flex; gap:4px; flex-wrap:wrap; margin-bottom:36px }
.filter-links a { padding:8px 18px; border-radius:100px; font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.1em; cursor:pointer; transition:all var(--t); color:var(--color-muted); border:1px solid transparent }
.filter-links a:hover,.filter-links a.active { color:var(--color-accent); border-color:rgba(var(--color-accent-rgb),.3); background:rgba(var(--color-accent-rgb),.07) }
.works-items { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:24px }
.works-item { background:var(--color-surface); border:1px solid var(--color-border); border-radius:var(--radius-lg); overflow:hidden; transition:transform var(--t),box-shadow var(--t) }
.works-item:hover { transform:translateY(-6px); box-shadow:0 28px 56px rgba(var(--color-accent-rgb),.15) }
.works-item .wi-img { aspect-ratio:16/9; overflow:hidden; position:relative }
.works-item .wi-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s ease }
.works-item:hover .wi-img img { transform:scale(1.06) }
.works-item .wi-img .overlay { position:absolute; inset:0; background:rgba(var(--color-accent-rgb),.7); opacity:0; transition:opacity var(--t); display:flex; align-items:center; justify-content:center; font-size:2.5rem; font-weight:300; color:#fff }
.works-item:hover .wi-img .overlay { opacity:1 }
.works-item .img-placeholder { aspect-ratio:16/9; background:var(--color-bg3); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; color:var(--color-muted); font-size:13px }
.works-item .img-placeholder svg { opacity:.3 }
.works-item .wi-desc { padding:22px }
.works-item .category { font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.12em; color:var(--color-accent); display:block; margin-bottom:8px }
.works-item .wi-name { font-size:1.05rem; font-weight:700; margin-bottom:10px; font-family:var(--font-heading) }
.works-item .wi-name a { color:var(--color-heading); transition:color var(--t) }
.works-item .wi-name a:hover { color:var(--color-accent) }
.works-item .lui-text { margin-bottom:14px }

/* ── Resume ───────────────────────────────────────────────── */
.history-title { font-family:var(--font-heading); font-size:1.3rem; font-weight:700; margin-bottom:28px; padding-bottom:14px; border-bottom:1px solid var(--color-border); color:var(--color-heading) }
.history-item { border:1px solid var(--color-border); border-radius:var(--radius); margin-bottom:12px; overflow:hidden; transition:border-color var(--t) }
.history-item.opened { border-color:rgba(var(--color-accent-rgb),.4) }
.lui-collapse-btn { padding:18px 22px; font-size:15px; font-weight:600; cursor:pointer; display:flex; justify-content:space-between; align-items:center; transition:color var(--t),background var(--t); user-select:none; color:var(--color-heading) }
.lui-collapse-btn::after { content:'+'; font-size:20px; font-weight:300; color:var(--color-muted); transition:transform var(--t),color var(--t) }
.lui-collapse-btn.active { color:var(--color-accent); background:rgba(var(--color-accent-rgb),.05) }
.lui-collapse-btn.active::after { transform:rotate(45deg); color:var(--color-accent) }
.history-content { display:none; padding:0 22px 20px }
.history-item.opened .history-content { display:block }
.history-content .subname { font-size:13px; font-weight:600; color:var(--color-accent); margin-bottom:6px }
.history-content .date { font-size:12px; color:var(--color-muted); margin-bottom:10px; font-style:italic }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-item { background:var(--color-surface); border:1px solid var(--color-border); border-radius:var(--radius-lg); padding:32px; position:relative; height:100%; display:flex; flex-direction:column }
.testimonials-item .testi-head { display:flex; align-items:center; gap:14px; margin-bottom:20px }
.testimonials-item .testi-head img { width:56px; height:56px; border-radius:50%; object-fit:cover; border:2px solid rgba(var(--color-accent-rgb),.3); flex-shrink:0 }
.testimonials-item .avatar-ph { width:56px; height:56px; border-radius:50%; background:rgba(var(--color-accent-rgb),.12); display:flex; align-items:center; justify-content:center; font-size:17px; font-weight:700; color:var(--color-accent); flex-shrink:0 }
.testimonials-item .testi-quote { position:absolute; top:28px; right:28px; color:var(--color-accent); opacity:.35 }
.testimonials-item .lui-text { flex:1; font-style:italic; font-size:15px; line-height:1.85; margin-bottom:0 }
.testimonials-item .t-name { font-size:14px; font-weight:700; margin-top:20px; color:var(--color-heading) }
.testimonials-item .t-role { font-size:12px; color:var(--color-muted); text-transform:uppercase; letter-spacing:.08em }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-items { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:start; padding-top:20px }
.pricing-col { position:relative }
.pricing-item { background:var(--color-surface); border:1px solid var(--color-border); border-radius:var(--radius-lg); padding:36px 28px; transition:transform var(--t),box-shadow var(--t) }
.pricing-col.center .pricing-item { border-color:rgba(var(--color-accent-rgb),.5); transform:translateY(0); box-shadow:0 30px 70px rgba(var(--color-accent-rgb),.15); margin-top:20px }
.pricing-item:hover { transform:translateY(-6px); box-shadow:0 28px 56px rgba(var(--color-accent-rgb),.12) }
.pricing-col.center .pricing-item:hover { transform:translateY(-6px) }
.pricing-col .popular-badge { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--color-accent); color:#fff; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; padding:4px 16px; border-radius:100px; white-space:nowrap }
.pricing-item .p-icon { width:44px; height:44px; border-radius:12px; background:rgba(var(--color-accent-rgb),.1); margin:14px 0 }
.pricing-item .price { margin:14px 0 18px }
.pricing-item .price .amount { font-size:2.8rem; font-weight:900; color:var(--color-heading); line-height:1 }
.pricing-item .price .currency { font-size:1.4rem; font-weight:700; color:var(--color-accent); vertical-align:super }
.pricing-item .price .period { display:block; font-size:12px; color:var(--color-muted); margin-top:4px }
.pricing-item .feat-list { margin:0 0 28px }
.pricing-item .feat-list li { font-size:14px; color:var(--color-muted); display:flex; align-items:center; gap:10px; padding:7px 0; border-bottom:1px solid var(--color-border) }
.pricing-item .feat-list li:last-child { border:none }
.pricing-item .feat-list li i { color:var(--color-accent); font-size:12px; flex-shrink:0 }
.pricing-item .feat-list li.inactive { opacity:.35; text-decoration:line-through }

/* ── Blog ─────────────────────────────────────────────────── */
.blog-items { display:grid; grid-template-columns:repeat(2,1fr); gap:32px }
.archive-item .ai-img { border-radius:var(--radius); overflow:hidden; aspect-ratio:16/9; margin-bottom:18px }
.archive-item .ai-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s ease }
.archive-item:hover .ai-img img { transform:scale(1.05) }
.archive-item .ai-img .img-placeholder { width:100%; height:100%; background:var(--color-bg3); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; color:var(--color-muted); font-size:13px }
.archive-item .ai-img .img-placeholder svg { opacity:.3 }
.archive-item .cat-date { font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.12em; color:var(--color-accent); display:block; margin-bottom:8px }
.archive-item .ai-title { font-family:var(--font-heading); font-size:1.1rem; font-weight:700; margin-bottom:10px }
.archive-item .ai-title a { color:var(--color-heading); transition:color var(--t) }
.archive-item .ai-title a:hover { color:var(--color-accent) }
.readmore { margin-top:12px }
.load-more { text-align:center; margin-top:44px }

/* ── Contact ──────────────────────────────────────────────── */
.numbers-items { display:flex; flex-direction:column }
.numbers-item { display:flex; align-items:flex-start; gap:18px; padding:22px 0; border-bottom:1px solid var(--color-border) }
.numbers-item:first-child { padding-top:0 }
.numbers-item .ni-icon { width:44px; height:44px; border-radius:12px; background:rgba(var(--color-accent-rgb),.1); display:flex; align-items:center; justify-content:center; font-size:18px; color:var(--color-accent); flex-shrink:0 }
.numbers-item .ni-label { font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.12em; color:var(--color-muted); margin-bottom:4px }
.numbers-item .ni-val { font-size:15px; color:var(--color-heading); font-weight:500 }
.contacts-form { background:var(--color-surface); border:1px solid var(--color-border); border-radius:var(--radius-lg); padding:36px; position:relative; overflow:hidden }
.contacts-form .form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px }
.contacts-form .group { margin-bottom:16px }
.contacts-form label { display:block; font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.1em; color:var(--color-muted); margin-bottom:7px }
.contacts-form label b { color:var(--color-accent) }
.contacts-form input,
.contacts-form textarea { width:100%; background:var(--color-bg); border:1px solid var(--color-border); color:var(--color-text); border-radius:var(--radius); padding:13px 16px; font-family:var(--font-main); font-size:15px; transition:border-color var(--t),box-shadow var(--t) }
.contacts-form input:focus,
.contacts-form textarea:focus { outline:none; border-color:rgba(var(--color-accent-rgb),.5); box-shadow:0 0 0 4px rgba(var(--color-accent-rgb),.08) }
.contacts-form textarea { min-height:130px; resize:vertical }
.form-status { margin-top:14px; padding:12px 16px; border-radius:var(--radius); font-size:14px; font-weight:500; display:none }
.form-status.success { background:rgba(var(--color-accent-rgb),.1); color:var(--color-accent); border:1px solid rgba(var(--color-accent-rgb),.3); display:block }
.form-status.error { background:rgba(220,53,69,.1); color:#dc3545; border:1px solid rgba(220,53,69,.3); display:block }

/* ── Footer ──────────────────────────────────────────────── */
#site-footer { background:var(--color-bg2); border-top:1px solid var(--color-border); padding:32px 0 }
.footer-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px }
.footer-copy { font-size:13px; color:var(--color-muted) }
.footer-copy a { color:var(--color-accent) }
.footer-links { display:flex; gap:24px }
.footer-links a { font-size:13px; color:var(--color-muted); transition:color var(--t) }
.footer-links a:hover { color:var(--color-accent) }

/* ── Scroll reveal — ALWAYS VISIBLE, subtle slide-in animation ── */
.scroll-animate,
.scrolla-element-anim-1 {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: none;
}
/* Skills bars - only the width animates */
.skills-item .bar-fill {
  transition: width 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width:1024px) {
  .hero-started { grid-template-columns:1fr }
  .hero-visual  { display:none }
  .pricing-items { grid-template-columns:1fr; gap:14px }
  .pricing-col.center .pricing-item { transform:none }
  .col-5,.col-7 { width:100% }
  .contacts-form .form-row { grid-template-columns:1fr }
}
@media (max-width:768px) {
  .lui-section { padding:80px 0 }
  .works-items { grid-template-columns:1fr }
  .blog-items  { grid-template-columns:1fr }
  .col-6 { width:100% }
  .nav-vline { display:none }
}
@media (max-width:480px) {
  .filter-links a { padding:7px 14px }
  .pricing-items { grid-template-columns:1fr }
}

/* ── Read More link (unique style, not generic) ─────────── */
.fp-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(var(--color-accent-rgb),.3);
  padding-bottom: 2px;
  transition: gap var(--t), border-color var(--t), color var(--t);
}
.fp-readmore-link:hover {
  gap: 12px;
  border-color: var(--color-accent);
}
.fp-readmore-link svg {
  transition: transform var(--t);
  flex-shrink: 0;
}
.fp-readmore-link:hover svg { transform: translateX(4px); }

/* ── Hero placeholder image ──────────────────────────────── */
.hero-placeholder-img {
  width: 340px;
  height: 420px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* ── Placeholder images in cards ────────────────────────── */
.wi-img img,
.ai-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wi-img { background: var(--color-bg3); }
.ai-img { background: var(--color-bg3); }

/* ── Explore All Articles button (override any inherited) ── */
.load-more .btn {
  border-color: var(--color-accent);
  color: var(--color-accent);
  font-weight: 700;
}
.load-more .btn:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ── View Project link ───────────────────────────────────── */
.wi-desc .lnk {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

/* ── Pricing Get Started button ──────────────────────────── */
.pricing-item .btn-solid {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* ── Nav overlay always dark regardless of light mode ─────── */
.nav-overlay {
  background: #0D0D12 !important;
  color: #F0EEFF;
}

/* ── Ensure hamburger lines stay readable over light bg ──── */
#site-header .menu-btn span {
  background: var(--color-text);
}
/* When overlay open: always light lines (overlay is always dark) */
.menu-btn.active span {
  background: #F0EEFF !important;
}

/* ════════════════════════════════════════════════
   MOBILE HERO — fix empty space, show content properly
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Stack hero vertically, no wasted space */
  .hero-started {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 0 60px;
    min-height: calc(100vh - var(--nav-h));
    align-items: flex-start;
  }
  /* Show bio and buttons on mobile */
  .hero-desc { display: block !important; max-width: 100%; }
  .hero-btns { display: flex !important; }
  .hero-social { display: flex !important; }
  /* Compact stats card inline on mobile */
  .hero-stats-card {
    position: static;
    margin-top: 32px;
    display: inline-flex;
    backdrop-filter: none;
  }
  .hero-stats-card ul { gap: 20px; }
  /* Background text smaller on mobile */
  .hero-bgtitle { font-size: clamp(3rem, 18vw, 6rem); bottom: 0; }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.2rem, 12vw, 3.5rem) !important; }
  .hero-content .lui-subtitle { font-size: 10px; }
  .hero-stats-card { width: 100%; }
  .hero-stats-card ul { width: 100%; justify-content: space-around; }
}

/* ════════════════════════════════════════════════
   SINGLE POST — blog article styles
════════════════════════════════════════════════ */
.single-post-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 0 100px;
}
.single-post-header {
  margin-bottom: 48px;
}
.single-post-header .post-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.single-post-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--color-heading);
  margin-bottom: 24px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--color-muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.post-meta .meta-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb),.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
}
.post-meta .meta-info { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.post-meta .meta-dot { opacity: .3; }
.single-post-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  aspect-ratio: 16/9;
}
.single-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Post content typography */
.post-content { color: var(--color-body-text); font-size: 16px; line-height: 1.9; }
.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  margin: 2.5em 0 1em;
  line-height: 1.2;
}
.post-content h2 { font-size: 1.7rem; }
.post-content h3 { font-size: 1.35rem; }
.post-content h4 { font-size: 1.1rem; }
.post-content p  { margin-bottom: 1.6em; }
.post-content a  { color: var(--color-accent); border-bottom: 1px solid rgba(var(--color-accent-rgb),.3); transition: border-color var(--t); }
.post-content a:hover { border-color: var(--color-accent); }
.post-content ul,
.post-content ol  { margin: 0 0 1.6em 1.5em; }
.post-content li  { margin-bottom: .6em; }
.post-content ul li { list-style: disc; }
.post-content ol li { list-style: decimal; }
.post-content blockquote {
  border-left: 3px solid var(--color-accent);
  margin: 2em 0;
  padding: 1em 1.5em;
  background: rgba(var(--color-accent-rgb),.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-text);
}
.post-content blockquote p { margin: 0; }
.post-content img {
  border-radius: var(--radius);
  margin: 2em 0;
  max-width: 100%;
  height: auto;
}
.post-content pre,
.post-content code {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.post-content pre  { padding: 1.5em; overflow-x: auto; margin: 1.5em 0; }
.post-content code { padding: 2px 8px; }
.post-content pre code { padding: 0; background: none; border: none; }
/* Post footer */
.post-footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.post-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb),.08);
  border: 1px solid rgba(var(--color-accent-rgb),.2);
  padding: 4px 14px;
  border-radius: 100px;
}
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}
.post-nav-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--t), transform var(--t);
}
.post-nav-item:hover {
  border-color: rgba(var(--color-accent-rgb),.4);
  transform: translateY(-3px);
}
.post-nav-item .nav-dir {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-nav-item .nav-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
  transition: color var(--t);
}
.post-nav-item:hover .nav-title { color: var(--color-accent); }
.post-nav-item.next { text-align: right; }
.post-nav-item.next .nav-dir { justify-content: flex-end; }

/* Back to blog link */
.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-muted);
  margin-bottom: 40px;
  transition: color var(--t), gap var(--t);
}
.back-to-blog:hover { color: var(--color-accent); gap: 12px; }
.back-to-blog svg { transform: rotate(180deg); }

@media (max-width: 640px) {
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-item.next { text-align: left; }
  .post-nav-item.next .nav-dir { justify-content: flex-start; }
}

/* ── Pagination ─────────────────────────────────────────── */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  transition: all var(--t);
  text-decoration: none;
}
.page-numbers:hover,
.page-numbers.current {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.page-numbers.dots {
  border-color: transparent;
  background: transparent;
}
/* Paginate list reset */
.page-numbers li { list-style: none; display: inline-flex; }

/* ════════════════════════════════════════════════
   LIGHT MODE — Fix hidden white titles
════════════════════════════════════════════════ */
body.light-mode .m-title,
body.light-mode .hero-title,
body.light-mode .lui-title,
body.light-mode .history-title,
body.light-mode .wi-name a,
body.light-mode .ai-title a,
body.light-mode .t-name,
body.light-mode .pricing-item .amount,
body.light-mode .sk-name,
body.light-mode .lui-collapse-btn,
body.light-mode .nav-logo,
body.light-mode .post-content h1,
body.light-mode .post-content h2,
body.light-mode .post-content h3,
body.light-mode .post-content h4,
body.light-mode .single-post-header h1,
body.light-mode .history-content .subname,
body.light-mode .numbers-item .ni-val,
body.light-mode .hero-stats-card .num,
body.light-mode .pricing-item .lui-subtitle,
body.light-mode .hero-job,
body.light-mode .hero-job strong { color: #1A1528; }

body.light-mode .m-subtitle,
body.light-mode .lui-text,
body.light-mode .lui-text p,
body.light-mode .hero-desc,
body.light-mode .post-content,
body.light-mode .post-meta,
body.light-mode .history-content .date,
body.light-mode .t-role,
body.light-mode .feat-list li,
body.light-mode .testimonials-item .lui-text,
body.light-mode .numbers-item .ni-label,
body.light-mode .hero-stats-card .label,
body.light-mode .archive-item .lui-text p,
body.light-mode .cat-date { color: #5A5878; }

body.light-mode .services-item,
body.light-mode .works-item,
body.light-mode .testimonials-item,
body.light-mode .pricing-item,
body.light-mode .history-item,
body.light-mode .contacts-form,
body.light-mode .hero-stats-card,
body.light-mode .archive-item .ai-img { background: #FFFFFF; }

body.light-mode .contacts-form input,
body.light-mode .contacts-form textarea { background: #F7F5FF; color: #1A1528; }

body.light-mode .nav-logo .accent { color: var(--color-accent); }
body.light-mode .footer-copy,
body.light-mode .footer-links a { color: #6B6880; }
body.light-mode .footer-copy a  { color: var(--color-accent); }
body.light-mode #site-footer    { background: #EDE9FF; border-color: rgba(124,58,237,.1); }
body.light-mode .lui-section.lui-gradient-top    { background: linear-gradient(to bottom, #EDE9FF, #F7F5FF); }
body.light-mode .lui-section.lui-gradient-bottom { background: linear-gradient(to bottom, #F7F5FF, #EDE9FF); }
body.light-mode .lui-section.lui-gradient-center { background: #F7F5FF; }
body.light-mode .hero-bgtitle { -webkit-text-stroke-color: rgba(124,58,237,.08); }

/* ════════════════════════════════════════════════
   COMMENT FORM — full theme styling
════════════════════════════════════════════════ */
#comments {
  margin-top: 0;
}
#comments h2,
#comments .comments-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.comment-list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}
.comment-list li { list-style: none; }
.comment-body {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
}
.comment-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(var(--color-accent-rgb),.3);
  float: left;
  margin-right: 14px;
}
.comment-author .fn {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-heading);
  font-style: normal;
}
.comment-meta {
  font-size: 12px;
  color: var(--color-muted);
  margin: 4px 0 12px;
  clear: none;
}
.comment-meta a { color: var(--color-muted); }
.comment-content {
  font-size: 14px;
  color: var(--color-body-text);
  line-height: 1.8;
  clear: both;
}
.reply a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(var(--color-accent-rgb),.3);
  transition: border-color var(--t);
}
.reply a:hover { border-color: var(--color-accent); }

/* Comment form */
#respond {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 8px;
}
#respond h3,
#respond .comment-reply-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 24px;
}
#respond .comment-reply-title small { display: none; }
#respond p { margin-bottom: 16px; }
#respond label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-muted);
  margin-bottom: 7px;
}
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"],
#respond textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-main);
  font-size: 15px;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
}
#respond input:focus,
#respond textarea:focus {
  outline: none;
  border-color: rgba(var(--color-accent-rgb),.5);
  box-shadow: 0 0 0 4px rgba(var(--color-accent-rgb),.08);
}
#respond textarea {
  min-height: 140px;
  resize: vertical;
}
#respond .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
#respond .comment-form-cookies-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--color-accent);
  margin-top: 2px;
  flex-shrink: 0;
}
#respond .comment-form-cookies-consent label {
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--color-muted);
}
#respond .form-submit {
  margin-top: 8px;
  margin-bottom: 0;
}
#respond input[type="submit"],
#respond .submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
  font-family: var(--font-main);
  transition: all var(--t);
  -webkit-appearance: none;
}
#respond input[type="submit"]:hover,
#respond .submit:hover {
  background: var(--color-accent2);
  border-color: var(--color-accent2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(var(--color-accent-rgb),.3);
}
/* Two-column layout for name/email */
.comment-form .fp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media(max-width:640px) {
  .comment-form .fp-form-row { grid-template-columns: 1fr; }
  #respond { padding: 24px 20px; }
}

/* ════════════════════════════════════════════════
   SINGLE POST — fix spacing / compression
════════════════════════════════════════════════ */
.single-post-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 0 120px;
}
.single-post-header { margin-bottom: 40px; }
.single-post-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 28px;
  word-break: break-word;
}
.post-content { margin-bottom: 0; }
.post-content > * + * { margin-top: 1.4em; }
.post-content p + h2,
.post-content p + h3 { margin-top: 2.5em; }

/* Post nav — no compression */
.post-nav {
  margin-top: 48px;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.post-nav-item { word-break: break-word; }
.post-nav-item .nav-title {
  font-size: 14px;
  line-height: 1.4;
}

/* ════════════════════════════════════════════════
   FOOTER — nav above copyright, no logo
════════════════════════════════════════════════ */
#site-footer { padding: 40px 0 24px; }
.footer-inner {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--color-accent); }
.footer-copy {
  font-size: 13px;
  color: var(--color-muted);
}
.footer-copy a { color: var(--color-accent); }

/* ════════════════════════════════════════════════
   SCROLL BADGE — fix arrow direction
════════════════════════════════════════════════ */
/* The arrow SVG in the badge points UP (correct for back-to-top) */
.scroll-badge-arrow svg { transform: none !important; }

/* ════════════════════════════════════════════════
   HERO MOBILE — show photo, remove dead space
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Show the visual column on mobile */
  .hero-visual {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  /* Smaller photo on mobile */
  .hero-photo-wrap img,
  .hero-photo-placeholder,
  .hero-placeholder-img {
    width: 100%;
    max-width: 320px;
    height: 280px;
    border-radius: var(--radius-lg);
    margin: 0 auto;
    display: block;
  }
  /* Remove huge decorative circles on mobile — they cause dead space */
  .hero-circle { display: none; }
  /* Stats card inline */
  .hero-stats-card {
    position: static;
    display: inline-flex;
    margin: 24px auto 0;
    width: auto;
  }
  /* Reduce bottom padding so no giant gap */
  .hero-started {
    padding-bottom: 40px;
    gap: 32px;
  }
  .hero-bgtitle {
    display: none; /* hide on mobile — it was causing the huge gap */
  }
}

@media (max-width: 640px) {
  .hero-photo-wrap img,
  .hero-photo-placeholder,
  .hero-placeholder-img {
    max-width: 260px;
    height: 240px;
  }
  #started-section {
    min-height: auto;
    padding-bottom: 60px;
  }
}

/* ── Hero placeholder SVG sizing ────────────────────────── */
.hero-photo-wrap img[src*="placeholder-hero"],
.hero-placeholder-img {
  width: 340px;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
}

/* On mobile make it circular */
@media (max-width: 1024px) {
  .hero-photo-wrap img[src*="placeholder-hero"],
  .hero-placeholder-img {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    object-position: center top;
  }
}
@media (max-width: 640px) {
  .hero-photo-wrap img[src*="placeholder-hero"],
  .hero-placeholder-img {
    width: 160px !important;
    height: 160px !important;
  }
}


/* ════════════════════════════════════════════════
   SKILLS — Responsive grid fix
   Desktop: 3 col  |  Tablet: 2 col  |  Mobile: 1 col
════════════════════════════════════════════════ */

/* Force desktop col widths via row override */
#skills-section .row { display: flex; flex-wrap: wrap; }

/* Desktop: col-4 = 3 per row (default) */
#skills-section .col-4  { width: 33.333%; }
#skills-section .col-6  { width: 50%; }
#skills-section .col-12 { width: 100%; }

/* Tablet (max 900px): always 2 per row */
@media (max-width: 900px) {
  #skills-section .col-4,
  #skills-section .col-6,
  #skills-section .col-12 {
    width: 50% !important;
  }
}

/* Mobile (max 540px): always 1 per row — full width */
@media (max-width: 540px) {
  #skills-section .col-4,
  #skills-section .col-6,
  #skills-section .col-12 {
    width: 100% !important;
  }
  .skills-item {
    margin-bottom: 24px;
  }
  .skills-item .sk-name {
    font-size: 16px;
  }
  .skills-item .bar-wrap {
    height: 6px; /* slightly thicker bar on mobile */
  }
}

/* ════════════════════════════════════════════════
   HERO MOBILE — bigger photo, stats overlapping
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #started-section { padding-bottom: 100px; }

  .hero-started {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0 60px;
  }

  /* Photo column — show and make it BIG */
  .hero-visual {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    width: 100%;
    padding-bottom: 80px; /* space for overlapping stats */
  }

  .hero-photo-wrap {
    width: 100% !important;
    height: 320px !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    position: relative;
  }

  .hero-photo-wrap img,
  .hero-placeholder-img,
  .hero-photo-wrap img[src*="placeholder-hero"] {
    width: 100% !important;
    height: 320px !important;
    border-radius: var(--radius-lg) !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  /* Decorative circles — hide, they cause gaps */
  .hero-circle { display: none !important; }

  /* Stats card — overlap photo at bottom right */
  .hero-stats-card {
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
    min-width: 220px;
    background: var(--color-surface) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius) !important;
    padding: 16px 20px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    z-index: 5;
  }

  .hero-stats-card ul { gap: 20px; }
  .hero-stats-card .num { font-size: 1.6rem; }
  .hero-stats-card .label { font-size: 10px; }
  .hero-bgtitle { display: none !important; }
}

@media (max-width: 640px) {
  .hero-photo-wrap {
    height: 280px !important;
  }
  .hero-photo-wrap img,
  .hero-placeholder-img,
  .hero-photo-wrap img[src*="placeholder-hero"] {
    height: 280px !important;
  }
  .hero-stats-card {
    min-width: 190px;
  }
  .hero-stats-card ul { gap: 14px; }
  .hero-stats-card .num { font-size: 1.3rem; }
}

/* ════════════════════════════════════════════════
   PRICING — fix Most Popular badge visibility on mobile
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-items {
    display: flex;
    flex-direction: column;
    gap: 48px !important; /* big gap so badge has room above */
    padding-top: 16px;
  }

  .pricing-col {
    position: relative;
    width: 100%;
  }

  /* Popular badge — always visible above card */
  .pricing-col .popular-badge {
    position: absolute;
    top: -18px !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    white-space: nowrap;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Center card — remove the Y transform that hides badge */
  .pricing-col.center .pricing-item {
    transform: none !important;
    border-color: rgba(var(--color-accent-rgb),.5);
    box-shadow: 0 20px 60px rgba(var(--color-accent-rgb),.15);
  }
}

/* ════════════════════════════════════════════════
   SCROLL BADGE — size & colour via CSS vars
   (overridden by Customizer inline CSS)
════════════════════════════════════════════════ */
:root {
  --badge-size:       64px;
  --badge-color:      var(--color-accent);
  --badge-bg:         var(--color-surface);
  --badge-border:     var(--color-border);
}

.scroll-badge {
  width:  var(--badge-size) !important;
  height: var(--badge-size) !important;
}
.scroll-badge svg {
  width:  var(--badge-size) !important;
  height: var(--badge-size) !important;
}
.scroll-badge .ring-bg   { stroke: rgba(var(--color-accent-rgb),.15); }
.scroll-badge .ring-fill { stroke: var(--badge-color); }
.scroll-badge-inner      { background: var(--badge-bg); border-color: var(--badge-border); }
.scroll-badge-pct        { color: var(--badge-color); }
.scroll-badge-arrow      { color: var(--badge-color); }
.scroll-badge.at-top::after { border-color: var(--badge-color); }

/* ════════════════════════════════════════════════
   HERO PHOTO — 5 Layout Styles
   Set via body data-hero-style attribute
════════════════════════════════════════════════ */

/* ── Style 1: overlap (default) — stats overlap bottom-right ── */
.hero-visual[data-style="overlap"] .hero-visual {
  position: relative;
  padding-bottom: 80px;
}
.hero-visual[data-style="overlap"] .hero-stats-card {
  position: absolute;
  bottom: 0; right: 0; left: auto;
  transform: none;
  min-width: 220px;
  z-index: 5;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

/* ── Style 2: below — stats in a row below the photo ── */
.hero-visual[data-style="below"] .hero-visual {
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 0;
}
.hero-visual[data-style="below"] .hero-stats-card {
  position: static;
  transform: none;
  width: 100%;
  margin-top: 4px;
}
.hero-visual[data-style="below"] .hero-stats-card ul {
  justify-content: center;
  gap: 40px;
}

/* ── Style 3: side — photo left, stats stacked right ── */
.hero-visual.hero-visual[data-style="side"] {
  display: grid !important;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 0;
}
.hero-visual[data-style="side"] .hero-photo-wrap {
  width: 100% !important;
}
.hero-visual[data-style="side"] .hero-stats-card {
  position: static;
  transform: none;
  min-width: 160px;
}
.hero-visual[data-style="side"] .hero-stats-card ul {
  flex-direction: column;
  gap: 20px;
}
.hero-visual[data-style="side"] .hero-circle { display: none !important; }

/* ── Style 4: circle — circular photo, stats below centered ── */
.hero-visual[data-style="circle"] .hero-visual {
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 0;
}
.hero-visual.hero-visual[data-style="circle"] .hero-photo-wrap {
  width: 240px !important;
  height: 240px !important;
  border-radius: 50% !important;
  border: 4px solid rgba(var(--color-accent-rgb),.3) !important;
  box-shadow: 0 0 0 8px rgba(var(--color-accent-rgb),.08) !important;
  overflow: hidden;
}
.hero-visual.hero-visual.hero-visual[data-style="circle"] .hero-photo-wrap img {
  width: 240px !important;
  height: 240px !important;
  border-radius: 50% !important;
  object-position: top center;
}
.hero-visual[data-style="circle"] .hero-stats-card {
  position: static;
  transform: none;
  width: auto;
}
.hero-visual[data-style="circle"] .hero-stats-card ul { gap: 32px; }
.hero-visual[data-style="circle"] .hero-circle-1 {
  width: 270px; height: 270px;
  border: 1px solid rgba(var(--color-accent-rgb),.15);
}
.hero-visual[data-style="circle"] .hero-circle-2 {
  width: 330px; height: 330px;
}

/* ── Style 5: fullwidth — wide banner photo, stats float over ── */
.hero-visual[data-style="fullwidth"] .hero-visual {
  position: relative;
  padding-bottom: 0;
  width: 100%;
}
.hero-visual[data-style="fullwidth"] .hero-photo-wrap {
  width: 100% !important;
  height: 380px !important;
  border-radius: var(--radius-lg) !important;
}
.hero-visual[data-style="fullwidth"] .hero-photo-wrap img {
  width: 100% !important;
  height: 380px !important;
  border-radius: var(--radius-lg) !important;
  object-fit: cover;
}
.hero-visual[data-style="fullwidth"] .hero-stats-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: auto;
  transform: none;
  background: rgba(13,13,20,.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--color-accent-rgb),.2) !important;
  z-index: 5;
}
.hero-visual[data-style="fullwidth"] .hero-circle { display: none !important; }

/* Mobile: all styles collapse gracefully */
@media (max-width: 1024px) {
  .hero-visual.hero-visual[data-style="side"] {
    grid-template-columns: 1fr;
  }
  .hero-visual[data-style="side"] .hero-stats-card {
    flex-direction: row;
    width: 100%;
  }
  .hero-visual[data-style="side"] .hero-stats-card ul {
    flex-direction: row;
    gap: 24px;
  }
  .hero-visual.hero-visual[data-style="circle"] .hero-photo-wrap {
    width: 200px !important;
    height: 200px !important;
  }
  .hero-visual.hero-visual.hero-visual[data-style="circle"] .hero-photo-wrap img {
    width: 200px !important;
    height: 200px !important;
  }
}

/* ════════════════════════════════════════════════
   SKILLS — Design 1: Classic bars (default)
   Already styled as .skills-item .bar-fill etc.
════════════════════════════════════════════════ */
/* Design 1 is the default — no extra CSS needed */

/* ════════════════════════════════════════════════
   SKILLS — Design 2: Circular ring cards
════════════════════════════════════════════════ */
.skills-design-cards .row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
  margin: 0;
}
.skills-design-cards [class*="col-"] {
  width: 100% !important;
  padding: 0 !important;
}
.skills-design-cards .skills-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.skills-design-cards .skills-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(var(--color-accent-rgb),.15);
  border-color: rgba(var(--color-accent-rgb),.35);
}
.skills-design-cards .skills-item .bar-wrap { display: none !important; }
.skills-design-cards .skills-item .lui-text {
  font-size: var(--skill-text-size, 14px);
  color: var(--color-muted);
  margin: 10px 0 0;
  line-height: 1.5;
}
.skills-design-cards .skills-item .sk-name {
  justify-content: center;
  font-size: var(--skill-name-size, 16px);
  font-weight: 700;
  margin: 12px 0 0;
  color: var(--color-heading);
}
.skills-design-cards .skills-item .pct { display: none !important; }

/* SVG ring — bigger and centred */
.skill-ring-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.skill-ring-wrap svg {
  position: absolute;
  top: 0; left: 0;
  transform: rotate(-90deg);
  width: 130px;
  height: 130px;
  /* CRITICAL: transparent background so ring shows */
  background: transparent;
}
/* Track ring - visible lighter colour */
.skill-ring-bg {
  fill: none;
  stroke: rgba(var(--color-accent-rgb), 0.18);
  stroke-width: 8;
}
/* Progress ring - accent colour */
.skill-ring-fill {
  fill: none;
  stroke: var(--skill-bar-color, var(--color-accent));
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.6s cubic-bezier(.25,.46,.45,.94);
  filter: drop-shadow(0 0 4px rgba(var(--color-accent-rgb), 0.5));
}
/* Centre number */
.skill-ring-text {
  font-size: var(--skill-count-size, 24px);
  font-weight: 900;
  color: var(--skill-count-color, var(--color-heading));
  line-height: 1;
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

/* Tablet: 2 per row */
@media (max-width: 900px) {
  .skills-design-cards .row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
/* Mobile: 1 per row */
@media (max-width: 540px) {
  /* 2 per row even on small phones */
  .skills-design-cards .row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .skills-design-cards .skills-item { padding: 20px 12px 16px; }
  .skill-ring-wrap { width: 90px; height: 90px; }
  .skill-ring-wrap svg { width: 90px; height: 90px; }
  .skill-ring-text { font-size: 18px; }
  .skills-design-cards .skills-item .sk-name { font-size: 13px; }
  .skills-design-cards .skills-item .lui-text { font-size: 11px; }
}

/* ════════════════════════════════════════════════
   SKILLS — Design 3: Minimal list with badge
════════════════════════════════════════════════ */
.skills-design-minimal .row {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}
.skills-design-minimal [class*="col-"] {
  width: 100% !important;
  padding: 0;
}
.skills-design-minimal .skills-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
  margin: 0;
}
.skills-design-minimal .skills-item:last-child { border-bottom: none; }
.skills-design-minimal .skills-item .bar-wrap { flex: 1; height: 3px; }
.skills-design-minimal .skills-item .lui-text { display: none; }
.skills-design-minimal .skills-item .sk-name {
  flex-shrink: 0;
  width: 160px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}
.skills-design-minimal .skills-item .pct {
  flex-shrink: 0;
  width: 48px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--color-accent-rgb),.12);
  border: 1px solid rgba(var(--color-accent-rgb),.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  order: 3;
}

@media (max-width: 540px) {
  .skills-design-minimal .skills-item .sk-name { width: 120px; font-size: 13px; }
}

/* ════════════════════════════════════════════════
   FOOTER MENU — Foxiz style (horizontal scroll,
   never wraps). Enable via body.footer-foxiz class.
   Does NOT change the existing stacked style.
════════════════════════════════════════════════ */

/* ── Foxiz footer: horizontal scrolling single row ── */
body.footer-foxiz #site-footer {
  padding: 14px 0 !important;
  border-top: 1px solid var(--color-border);
}
body.footer-foxiz .footer-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  text-align: left !important;
  flex-wrap: nowrap !important;
}
body.footer-foxiz .footer-links {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  max-width: 60% !important;
  flex-shrink: 1 !important;
}
body.footer-foxiz .footer-links::-webkit-scrollbar { display: none !important; }
body.footer-foxiz .footer-links a {
  display: inline-block !important;
  white-space: nowrap !important;
  padding: 4px 12px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--color-muted) !important;
  border-right: 1px solid var(--color-border) !important;
  flex-shrink: 0 !important;
}
body.footer-foxiz .footer-links a:first-child { padding-left: 4px !important; }
body.footer-foxiz .footer-links a:last-child { border-right: none !important; }
body.footer-foxiz .footer-links a:hover { color: var(--color-accent) !important; }
body.footer-foxiz .footer-copy {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  font-size: 12px !important;
  max-width: 40% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* ════════════════════════════════════════════════
   HEADER NAV — Foxiz style fullscreen nav option
   (compact slide-in from right, not fullscreen dark overlay)
   Enable via body.nav-foxiz class.
   Does NOT change the existing fullscreen overlay style.
════════════════════════════════════════════════ */
body.nav-foxiz .nav-overlay {
  /* Override fullscreen to slide-in panel from right */
  inset: 0 0 0 auto !important;
  width: min(320px, 85vw) !important;
  height: 100% !important;
  padding: 0 !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  transform: translateX(100%) !important;
  transition: transform 0.4s cubic-bezier(0.76,0,0.24,1), opacity 0s 0.4s, visibility 0s 0.4s !important;
  opacity: 1 !important;
  border-left: 1px solid var(--color-border) !important;
}
body.nav-foxiz .nav-overlay.open {
  transform: translateX(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.4s cubic-bezier(0.76,0,0.24,1) !important;
}
body.nav-foxiz .nav-overlay-inner {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  padding: 80px 0 40px !important;
  width: 100% !important;
  height: 100%;
  overflow-y: auto;
}
/* Nav panel — single column list */
body.nav-foxiz .nav-menu {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;  /* ONE per line */
}
body.nav-foxiz .nav-menu li {
  width: 100% !important;
  overflow: visible !important;
  margin: 0 !important;
  border-bottom: 1px solid var(--color-border) !important;
  display: block !important;
}
body.nav-foxiz .nav-menu a {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  padding: 16px 28px !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  transform: none !important;
  color: var(--color-text) !important;
  transition: color var(--t), background var(--t), padding-left var(--t) !important;
  border-radius: 0 !important;
  letter-spacing: 0 !important;
  line-height: 1.3 !important;
}
body.nav-foxiz .nav-menu a::after {
  content: '›' !important;
  margin-left: auto !important;
  font-size: 1.2rem !important;
  opacity: 0.4 !important;
  transition: opacity var(--t), transform var(--t) !important;
}
body.nav-foxiz .nav-menu a:hover,
body.nav-foxiz .nav-menu a.is-active {
  background: rgba(var(--color-accent-rgb), 0.07) !important;
  color: var(--color-accent) !important;
  padding-left: 36px !important;
}
body.nav-foxiz .nav-menu a:hover::after,
body.nav-foxiz .nav-menu a.is-active::after {
  opacity: 1 !important;
  transform: translateX(3px) !important;
}
body.nav-foxiz .nav-menu li:nth-child(n) a { transition-delay: 0s !important; }
body.nav-foxiz .nav-social { padding: 20px 28px 0 !important; margin-top: 0 !important; }
body.nav-foxiz .nav-vline { display: none !important; }
body.nav-foxiz .nav-close-btn {
  top: 16px !important;
  right: 16px !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border) !important;
}

/* Backdrop for Foxiz nav */
body.nav-foxiz .nav-overlay::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
body.nav-foxiz .nav-overlay.open::before {
  opacity: 1;
  pointer-events: auto;
}
