/*
Theme Name: SimpleWebSA
Theme URI: https://simplewebsa.com
Author: SimpleWebSA
Author URI: https://simplewebsa.com
Description: Custom WordPress theme for SimpleWebSA — professional website design studio based in Durban, South Africa. Fast, modern, SEO-optimised.
Version: 5.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simplewebsa
Tags: custom, dark, modern, business
*/

/* NOTE: Google Fonts are loaded via wp_enqueue_style() in functions.php
 * (simplewebsa_assets), NOT via @import here. This eliminates the
 * render-blocking CSS @import penalty and improves Core Web Vitals.
 *
 * v3.0.0 — "Showcase" redesign. Same brand colours, same content, new
 * cinematic motion layer: aurora ambience, glass nav, spotlight cards,
 * 3D tilt, magnetic CTAs, cursor glow, word-reveal hero. Every effect
 * animates transform/opacity only (GPU-composited, no layout thrash),
 * is disabled for prefers-reduced-motion, and touch devices skip all
 * pointer-driven extras. Zero external libraries. */

/* ─── CSS VARIABLES (global) ─── */
:root {
  --bg:#08090D;
  --surf:#0F1118;
  --surf2:#161A24;
  --brd:#1E2230;
  --acc:#C8FF00;
  --txt:#F0F2FF;
  --muted:#5A6278;
  --muted2:#8891A8;
  /* Derived tokens — all built from the same brand colours */
  --acc-06:rgba(200,255,0,.06);
  --acc-08:rgba(200,255,0,.08);
  --acc-12:rgba(200,255,0,.12);
  --acc-20:rgba(200,255,0,.2);
  --acc-30:rgba(200,255,0,.3);
  --acc-45:rgba(200,255,0,.45);
  --glass:rgba(8,9,13,.72);
  --ease:cubic-bezier(.16,1,.3,1);
  --spring:cubic-bezier(.34,1.56,.64,1);
  --nav-h:68px;
}

/* Rotating angle for animated gradient borders (falls back to static
   gradient in browsers without @property support) */
@property --swsa-ang {
  syntax: '<angle>';
  initial-value: 135deg;
  inherits: false;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Film-grain texture — single tiny inline SVG, painted once, zero requests */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

a { text-decoration: none !important; }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--acc); color: #08090D; }

/* Slim brand scrollbar */
html { scrollbar-width: thin; scrollbar-color: #262c3a var(--bg); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #262c3a; border-radius: 6px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--acc); }

/* WordPress admin bar offset */
.admin-bar .swsa-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .swsa-nav { top: 46px; }
}

/* Screen-reader-only utility (kept for future use) */
.swsa-seo-h1, .swsa-sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0; margin: 0; padding: 0;
}

/* ─── SVG ICON SYSTEM (replaces emoji icons) ─── */
.swsa-ic {
  width: 1.15em; height: 1.15em;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; display: inline-block; vertical-align: -0.18em;
}
.swsa-ic-lg { width: 1.6em; height: 1.6em; }

/* ─── SCROLL PROGRESS BAR ─── */
.swsa-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--acc), #8fd400);
  transform-origin: 0 50%; transform: scaleX(0);
  z-index: 10001; pointer-events: none;
  box-shadow: 0 0 12px var(--acc-45);
}
.admin-bar .swsa-progress { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .swsa-progress { top: 46px; } }

/* ─── CURSOR GLOW RING (desktop pointer devices only) ─── */
.swsa-cur {
  position: fixed; top: 0; left: 0; z-index: 10000;
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 1.5px solid rgba(200,255,0,.55);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s, width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease), border-color .3s, background .3s;
  will-change: transform;
  display: none;
}
.swsa-cur.on { opacity: 1; }
.swsa-cur.hover {
  width: 56px; height: 56px; margin: -28px 0 0 -28px;
  background: var(--acc-08);
  border-color: var(--acc);
}
.swsa-cur.down { width: 26px; height: 26px; margin: -13px 0 0 -13px; }
@media (hover: hover) and (pointer: fine) {
  .swsa-cur { display: block; }
}

/* ─── NAV — glassmorphism ─── */
.swsa-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: var(--nav-h);
  background: rgba(8,9,13,0); border-bottom: 1px solid transparent;
  position: sticky; top: 0; z-index: 999;
  transition: background .35s, border-color .35s, box-shadow .35s;
  will-change: background; gap: 16px;
}
.swsa-nav.swsa-scrolled {
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--brd);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.swsa-nlogo { display: flex; align-items: center; gap: 10px; }
.swsa-nlogo-icon { width: 34px; height: 34px; background: var(--acc); border-radius: 9px; display: flex; align-items: center; justify-content: center; transition: transform .25s, box-shadow .25s; flex-shrink: 0; }
.swsa-nlogo:hover .swsa-nlogo-icon { transform: rotate(-8deg) scale(1.05); box-shadow: 0 0 16px rgba(200,255,0,.4); }
.swsa-nlogo-txt { font-weight: 800; font-size: 1rem; color: var(--txt); }
.swsa-nlogo-txt span { color: var(--acc); }
.swsa-nlinks { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.swsa-nlinks a { color: var(--muted2) !important; font-size: .87rem; font-weight: 500; transition: color .2s; position: relative; }
.swsa-nlinks a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--acc); transform: scaleX(0); transform-origin: left; transition: transform .25s; box-shadow: 0 0 8px var(--acc-45); }
.swsa-nlinks a:hover { color: var(--txt) !important; }
.swsa-nlinks a:hover::after { transform: scaleX(1); }
/* Scrollspy — current section highlighted */
.swsa-nlinks a.swsa-active { color: var(--acc) !important; }
.swsa-nlinks a.swsa-active::after { transform: scaleX(1); }
.swsa-nlinks li { list-style: none; }
.swsa-ncta { background: var(--acc); color: #08090D !important; padding: 9px 20px; border-radius: 100px; font-weight: 700; font-size: .84rem; white-space: nowrap; transition: box-shadow .3s var(--ease), transform .35s var(--spring); display: inline-flex; align-items: center; gap: 7px; }
.swsa-ncta:hover { box-shadow: 0 0 24px rgba(200,255,0,.5); transform: translateY(-1px); }
.swsa-ncta:active { transform: translateY(0) scale(.97); }
.swsa-ham { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 6px; cursor: pointer; background: none; border: none; padding: 10px; margin: -10px; min-width: 44px; min-height: 44px; flex-shrink: 0; }
.swsa-ham span { display: block; width: 24px; height: 2px; background: var(--txt); border-radius: 2px; transition: transform .35s var(--ease), opacity .2s; flex-shrink: 0; }
.swsa-ham.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.swsa-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.swsa-ham.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.swsa-mob-menu { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(8,9,13,.96); border-bottom: 1px solid var(--brd); padding: 0 5%; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 998; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s var(--ease), opacity .3s, padding .4s; pointer-events: none; }
.swsa-mob-menu.open { max-height: 560px; opacity: 1; padding: 16px 5% 24px; pointer-events: auto; }
.swsa-mob-menu a { display: flex; align-items: center; color: var(--muted2) !important; font-size: 1rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--brd); transition: color .2s, transform .25s; flex-shrink: 0; }
.swsa-mob-menu a:last-child { border-bottom: none; }
.swsa-mob-menu a:hover { color: var(--txt) !important; transform: translateX(4px); }
.swsa-mob-cta { margin-top: 12px; background: var(--acc) !important; color: #08090D !important; text-align: center; justify-content: center; padding: 13px 24px; border-radius: 100px; font-weight: 700; font-size: .95rem; border-bottom: none !important; transition: box-shadow .3s, transform .3s !important; gap: 8px; }
.admin-bar .swsa-mob-menu { top: calc(var(--nav-h) + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .swsa-mob-menu { top: calc(var(--nav-h) + 46px); }
}

/* ─── AURORA AMBIENT BACKGROUND (pre-blurred gradients, transform-only motion) ─── */
.swsa-aur { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.swsa-aur i {
  position: absolute; border-radius: 50%; display: block;
  will-change: transform;
}
.swsa-aur i:nth-child(1) {
  width: 640px; height: 640px; top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(200,255,0,.10) 0%, rgba(200,255,0,.04) 38%, transparent 68%);
  animation: swsa-drift1 22s ease-in-out infinite alternate;
}
.swsa-aur i:nth-child(2) {
  width: 520px; height: 520px; bottom: -220px; left: -160px;
  background: radial-gradient(circle, rgba(255,61,107,.06) 0%, rgba(255,61,107,.025) 40%, transparent 70%);
  animation: swsa-drift2 28s ease-in-out infinite alternate;
}
.swsa-aur i:nth-child(3) {
  width: 380px; height: 380px; top: 30%; left: 38%;
  background: radial-gradient(circle, rgba(0,168,204,.05) 0%, transparent 65%);
  animation: swsa-drift3 26s ease-in-out infinite alternate;
}
@keyframes swsa-drift1 { from { transform: translate3d(0,0,0) rotate(0deg) scale(1); } to { transform: translate3d(-90px,70px,0) rotate(40deg) scale(1.15); } }
@keyframes swsa-drift2 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(110px,-60px,0) scale(1.2); } }
@keyframes swsa-drift3 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-70px,-80px,0) scale(1.25); } }
@media (max-width: 900px) {
  .swsa-aur i:nth-child(3) { display: none; }
  .swsa-aur i { animation-duration: 34s; }
}

/* ─── HERO ─── */
.swsa-hero { padding: 90px 5% 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; overflow: hidden; }
.swsa-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200,255,0,.07) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 5% 80%, rgba(255,61,107,.04) 0%, transparent 60%); }
.swsa-gbg { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(var(--brd) 1px, transparent 1px), linear-gradient(90deg, var(--brd) 1px, transparent 1px); background-size: 60px 60px; opacity: .3; mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%); animation: swsa-gridfade 1.6s var(--ease) both; }
@keyframes swsa-gridfade { from { opacity: 0; } to { opacity: .3; } }
.swsa-hero > div { position: relative; z-index: 2; }
.swsa-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--acc-08); border: 1px solid rgba(200,255,0,.25); border-radius: 100px; padding: 6px 16px; font-size: .78rem; font-weight: 600; color: var(--acc); margin-bottom: 22px; animation: swsa-up .6s var(--ease) both; will-change: opacity, transform; position: relative; overflow: hidden; }
.swsa-badge::after { content: ''; position: absolute; top: 0; left: 0; width: 40%; height: 100%; background: linear-gradient(105deg, transparent, rgba(200,255,0,.18), transparent); transform: translateX(-150%) skewX(-15deg); animation: swsa-badgeshine 5s 2s ease-in-out infinite; }
@keyframes swsa-badgeshine { 0% { transform: translateX(-150%) skewX(-15deg); } 30%, 100% { transform: translateX(380%) skewX(-15deg); } }
.swsa-bdot { width: 7px; height: 7px; border-radius: 50%; background: var(--acc); animation: swsa-pulse 2.2s cubic-bezier(0.4,0,0.6,1) infinite; box-shadow: 0 0 8px var(--acc); }
@keyframes swsa-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(1.45); } }

/* Hero headline — the page H1, word-by-word cinematic reveal */
h1.swsa-h1-visual, h2.swsa-h1-visual { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 5.5vw, 5.5rem); line-height: .95; letter-spacing: 1px; margin: 0 0 22px 0; color: var(--txt); will-change: opacity; }
h1.swsa-h1-visual .swsa-a, h2.swsa-h1-visual .swsa-a { color: var(--acc); text-shadow: 0 0 34px var(--acc-30); }
h1.swsa-h1-visual .swsa-s, h2.swsa-h1-visual .swsa-s { -webkit-text-stroke: 2px var(--txt); color: transparent; transition: color .5s var(--ease), text-shadow .5s; }
h1.swsa-h1-visual:hover .swsa-s { color: var(--acc); -webkit-text-stroke-color: var(--acc); text-shadow: 0 0 44px var(--acc-45); }
/* Word reveal — outer clips, inner slides up. Text stays plain text for SEO. */
.swsa-w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .06em; margin-bottom: -.06em; }
.swsa-w > span { display: inline-block; transform: translateY(115%); animation: swsa-wup .75s var(--ease) forwards; will-change: transform; }
@keyframes swsa-wup { to { transform: translateY(0); } }

/* ─── YOAST SEO CONTENT SECTION ─── */
.swsa-yoast-content { padding-top: 56px; padding-bottom: 12px; }
.swsa-yc-inner { max-width: 760px; margin: 0 auto; padding: 0 5%; }
.swsa-yc-inner p { font-size: 1.05rem; line-height: 1.8; color: var(--muted2); margin: 0 0 1.25em 0; }
.swsa-yc-inner h2 { font-size: clamp(1.25rem, 2.4vw, 1.65rem); font-weight: 700; color: var(--txt); margin: 2em 0 0.55em 0; letter-spacing: -.01em; }
.swsa-yc-inner h3 { font-size: 1.1rem; font-weight: 600; color: var(--txt); margin: 1.5em 0 0.45em 0; }
.swsa-yc-inner a { color: var(--acc); text-decoration: underline; text-underline-offset: 3px; }
.swsa-yc-inner a:hover { opacity: .8; }
.swsa-yc-inner strong { color: var(--txt); font-weight: 600; }
.swsa-yc-inner ul, .swsa-yc-inner ol { padding-left: 1.4em; margin: 0 0 1.25em 0; }
.swsa-yc-inner li { margin-bottom: 0.4em; color: var(--muted2); font-size: 1rem; line-height: 1.7; }
.swsa-yc-inner figure { margin: 1.5em 0 2em; }
.swsa-yc-inner figure img { width: 100%; height: auto; border-radius: 14px; display: block; }
.swsa-yc-inner figcaption { font-size: .78rem; color: var(--muted); margin-top: .5em; text-align: center; }
@media (max-width: 600px) {
  .swsa-yc-inner h2 { font-size: 1.2rem; }
}
.swsa-h2 .swsa-a { color: var(--acc); }
.swsa-hsub { font-size: 1rem; color: var(--muted2); line-height: 1.75; max-width: 480px; margin: 0 0 34px 0; animation: swsa-up .65s .35s var(--ease) both; will-change: opacity, transform; }
.swsa-hsub strong { color: var(--txt); font-weight: 600; }
.swsa-hbtns { display: flex; gap: 12px; flex-wrap: wrap; animation: swsa-up .65s .5s var(--ease) both; will-change: opacity, transform; }
.swsa-htrust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; animation: swsa-up .65s .62s var(--ease) both; }
.swsa-htrust span { font-size: .75rem; color: var(--muted2); display: flex; align-items: center; gap: 6px; }
.swsa-htrust .swsa-ic { color: var(--acc); width: 1em; height: 1em; }
@keyframes swsa-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll cue */
.swsa-scue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--muted); animation: swsa-up 1s 1.4s var(--ease) both; }
.swsa-scue::after { content: ''; width: 1px; height: 30px; background: linear-gradient(180deg, var(--acc), transparent); animation: swsa-scue 1.8s var(--ease) infinite; }
@keyframes swsa-scue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 900px) { .swsa-scue { display: none; } }

/* ─── BUTTONS ─── */
.swsa-bp { background: var(--acc); color: #08090D !important; padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: .93rem; transition: transform .35s var(--spring), box-shadow .3s; display: inline-flex; align-items: center; gap: 8px; position: relative; overflow: hidden; will-change: transform; }
.swsa-bp::before { content: ''; position: absolute; top: 0; left: 0; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent); transform: translateX(-200%); transition: transform .55s; }
.swsa-bp:hover::before { transform: translateX(320%); }
.swsa-bp:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(200,255,0,.45), 0 10px 30px rgba(0,0,0,.35); }
.swsa-bp:active { transform: translateY(0) scale(.97); }
.swsa-bg { background: rgba(15,17,24,.5); color: var(--txt) !important; padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: .93rem; border: 1px solid var(--brd); transition: border-color .25s, background .25s, transform .35s var(--spring); display: inline-flex; align-items: center; gap: 8px; will-change: transform; }
.swsa-bg:hover { border-color: var(--muted2); background: var(--surf); transform: translateY(-2px); }
.swsa-bg:active { transform: translateY(0) scale(.97); }
.swsa-bp .swsa-ic, .swsa-bg .swsa-ic, .swsa-ncta .swsa-ic { transition: transform .35s var(--spring); }
.swsa-bp:hover .swsa-ic, .swsa-ncta:hover .swsa-ic { transform: translateX(2px) rotate(-8deg) scale(1.1); }

/* ─── BROWSER MOCKUP — 3D tilt stage ─── */
.swsa-vis { position: relative; animation: swsa-up .75s .3s var(--ease) both; will-change: opacity, transform; perspective: 1100px; z-index: 2; }
.swsa-brow {
  background: var(--surf); border-radius: 14px; border: 1px solid var(--brd); overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(200,255,0,.04);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .25s var(--ease), box-shadow .45s;
  transform-style: preserve-3d;
  will-change: transform;
}
.swsa-vis:hover .swsa-brow { box-shadow: 0 56px 100px rgba(0,0,0,.7), 0 0 44px rgba(200,255,0,.08); }
.swsa-bbar { background: var(--surf2); padding: 10px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--brd); }
.swsa-dots { display: flex; gap: 6px; margin: 0; padding: 0; }
.swsa-dots span { width: 10px; height: 10px; border-radius: 50%; }
.swsa-dr { background: #FF5F57; } .swsa-dy { background: #FEBC2E; } .swsa-dg { background: #28C840; }
.swsa-url { flex: 1; background: var(--bg); border-radius: 5px; padding: 4px 10px; font-size: .72rem; color: var(--muted2); position: relative; overflow: hidden; white-space: nowrap; }
.swsa-url::after { content: '|'; color: var(--acc); font-size: .8rem; animation: swsa-blink 1s step-end infinite; margin-left: 1px; }
@keyframes swsa-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.swsa-bbody { padding: 20px; }
.swsa-fk { background: linear-gradient(135deg, var(--surf2) 0%, #0D1020 100%); border-radius: 8px; padding: 22px; border: 1px solid var(--brd); position: relative; overflow: hidden; }
.swsa-fk::after { content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(200,255,0,.04), transparent); transform: translateX(-200%); animation: swsa-sweep 4s 1.5s ease-in-out infinite; }
@keyframes swsa-sweep { 0% { transform: translateX(-200%); } 50%, 100% { transform: translateX(400%); } }
.swsa-ftag { background: rgba(200,255,0,.15); color: var(--acc); font-size: .62rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; display: inline-block; margin: 0 0 10px 0; letter-spacing: 1px; }
.swsa-fh { background: var(--brd); border-radius: 4px; margin-bottom: 8px; }
.swsa-fh1 { height: 22px; width: 80%; } .swsa-fh2 { height: 22px; width: 55%; }
.swsa-fp { height: 9px; background: rgba(255,255,255,.06); border-radius: 4px; margin-bottom: 6px; }
.swsa-fp1 { width: 100%; } .swsa-fp2 { width: 82%; } .swsa-fp3 { width: 65%; }
.swsa-fbtn { background: var(--acc); color: #08090D; font-size: .68rem; font-weight: 700; padding: 7px 14px; border-radius: 100px; display: inline-block; margin-top: 12px; }
.swsa-fl { position: absolute; background: rgba(22,26,36,.82); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid var(--brd); border-radius: 12px; padding: 10px 14px; font-size: .78rem; font-weight: 600; display: flex; align-items: center; gap: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.4); white-space: nowrap; color: var(--txt); will-change: transform; }
.swsa-fl .swsa-ic { color: var(--acc); }
.swsa-fl1 { bottom: -18px; left: -28px; animation: swsa-f1 4.5s cubic-bezier(0.4,0,0.6,1) infinite; }
.swsa-fl2 { top: -14px; right: -22px; animation: swsa-f2 5.5s cubic-bezier(0.4,0,0.6,1) infinite; }
.swsa-fl3 { bottom: 50px; right: -40px; animation: swsa-f1 6.2s 1.4s cubic-bezier(0.4,0,0.6,1) infinite; }
@keyframes swsa-f1 { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-9px) rotate(1deg); } }
@keyframes swsa-f2 { 0%, 100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(9px) rotate(-1.5deg); } }

/* ─── MARQUEE — pill chips ─── */
.swsa-mq { border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); padding: 18px 0; overflow: hidden; background: var(--surf); mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%); }
.swsa-mq-t { display: flex; animation: swsa-mq 36s linear infinite; width: max-content; will-change: transform; }
.swsa-mq-i { display: flex; align-items: center; gap: 10px; margin: 0 9px; padding: 8px 18px; font-size: .78rem; font-weight: 600; color: var(--muted2); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; border: 1px solid var(--brd); border-radius: 100px; background: rgba(8,9,13,.55); transition: border-color .3s, color .3s; }
.swsa-mq-i:hover { border-color: var(--acc-30); color: var(--txt); }
.swsa-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--acc); flex-shrink: 0; box-shadow: 0 0 6px var(--acc-45); }
@keyframes swsa-mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.swsa-mq:hover .swsa-mq-t { animation-play-state: paused; }

/* ─── SECTIONS ─── */
.swsa-sec { padding: 90px 5%; position: relative; }
.swsa-sb { background: var(--surf); }
.swsa-s3 { background: var(--surf2); }
.swsa-tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--acc); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.swsa-tag::before { content: ''; width: 22px; height: 1px; background: linear-gradient(90deg, var(--acc), transparent); flex-shrink: 0; }
.swsa-hd.swsa-c .swsa-tag { justify-content: center; }
.swsa-hd.swsa-c .swsa-tag::after { content: ''; width: 22px; height: 1px; background: linear-gradient(270deg, var(--acc), transparent); flex-shrink: 0; }
.swsa-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.3rem, 4vw, 3.5rem); line-height: 1; margin: 0 0 14px 0; color: var(--txt); }
.swsa-sub { color: var(--muted2); font-size: .97rem; max-width: 520px; line-height: 1.7; margin: 0; }
.swsa-hd { margin-bottom: 52px; }
.swsa-hd.swsa-c { text-align: center; }
.swsa-hd.swsa-c .swsa-sub { margin: 0 auto; }

/* ─── SCROLL REVEAL ─── */
.swsa-rv { opacity: 0; transform: translateY(26px) scale(.985); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.swsa-rv.on { opacity: 1; transform: translateY(0) scale(1); }
.swsa-rv-d1 { transition-delay: .05s; } .swsa-rv-d2 { transition-delay: .10s; } .swsa-rv-d3 { transition-delay: .15s; }
.swsa-rv-d4 { transition-delay: .20s; } .swsa-rv-d5 { transition-delay: .25s; } .swsa-rv-d6 { transition-delay: .30s; }
.swsa-rv-d7 { transition-delay: .35s; } .swsa-rv-d8 { transition-delay: .40s; } .swsa-rv-d9 { transition-delay: .45s; }
.swsa-rv-d10 { transition-delay: .50s; } .swsa-rv-d11 { transition-delay: .55s; } .swsa-rv-d12 { transition-delay: .60s; }

/* ─── SPOTLIGHT HOVER (cards track the cursor with a soft lime light) ─── */
.swsa-spot { position: relative; }
.swsa-spot::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(200,255,0,.07), transparent 65%);
  opacity: 0; transition: opacity .4s; z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .swsa-spot:hover::before { opacity: 1; }
}

/* ─── STATS ─── */
.swsa-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--brd); border: 1px solid var(--brd); border-radius: 18px; overflow: hidden; }
.swsa-stat { background: var(--surf); padding: 34px 22px; text-align: center; position: relative; overflow: hidden; }
.swsa-stat::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(200,255,0,.08) 0%, transparent 70%); opacity: 0; transition: opacity .4s; }
.swsa-stat:hover::after { opacity: 1; }
.swsa-stn { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; line-height: 1; margin-bottom: 5px; transition: transform .4s var(--spring); background: linear-gradient(180deg, var(--acc) 30%, #8fd400 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--acc); }
.swsa-stat:hover .swsa-stn { transform: scale(1.08); }
.swsa-stl { font-size: .81rem; color: var(--muted2); font-weight: 500; }

/* ─── WHY SECTION ─── */
.swsa-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.swsa-why-prose { display: flex; flex-direction: column; gap: 18px; }
.swsa-why-prose p { font-size: .97rem; color: var(--muted2); line-height: 1.85; margin: 0; }
.swsa-why-prose p strong { color: var(--txt); font-weight: 600; }
.swsa-why-cards { display: flex; flex-direction: column; gap: 14px; }
.swsa-why-card { background: var(--bg); border: 1px solid var(--brd); border-radius: 14px; padding: 20px 22px; display: flex; align-items: flex-start; gap: 16px; transition: border-color .3s, transform .35s var(--spring), box-shadow .35s; overflow: hidden; }
.swsa-why-card:hover { border-color: var(--acc-20); transform: translateX(6px); box-shadow: -6px 12px 32px rgba(0,0,0,.35); }
.swsa-why-ico { width: 42px; height: 42px; background: var(--acc-08); border: 1px solid var(--acc-12); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; transition: background .3s, transform .4s var(--spring), box-shadow .3s; color: var(--acc); }
.swsa-why-card:hover .swsa-why-ico { background: var(--acc-12); transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 18px var(--acc-20); }
.swsa-why-ct h3, .swsa-why-ct h4 { font-size: .95rem; font-weight: 700; color: var(--txt); margin: 0 0 4px 0; }
.swsa-why-ct p { font-size: .82rem; color: var(--muted2); margin: 0; line-height: 1.6; }

/* ─── SERVICES ─── */
.swsa-sg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--brd); border: 1px solid var(--brd); border-radius: 18px; overflow: hidden; }
.swsa-sc { background: var(--bg); padding: 30px 26px; transition: background .35s; position: relative; overflow: hidden; }
.swsa-sc::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--acc), rgba(200,255,0,.3)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); z-index: 2; }
.swsa-sc:hover { background: var(--surf2); }
.swsa-sc:hover::after { transform: scaleX(1); }
.swsa-sc-new { position: relative; }
.swsa-sc-badge { position: absolute; top: 14px; right: 14px; background: var(--acc); color: #08090D; font-size: .58rem; font-weight: 800; padding: 3px 8px; border-radius: 100px; letter-spacing: .5px; text-transform: uppercase; z-index: 2; animation: swsa-badgepop 2.6s var(--spring) infinite; }
@keyframes swsa-badgepop { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(200,255,0,.4); } 50% { transform: scale(1.07); box-shadow: 0 0 14px rgba(200,255,0,.45); } }
.swsa-si { width: 44px; height: 44px; margin: 0 0 16px 0; display: flex; align-items: center; justify-content: center; background: var(--acc-08); border: 1px solid var(--acc-12); border-radius: 12px; color: var(--acc); transition: transform .4s var(--spring), background .3s, box-shadow .3s; position: relative; z-index: 2; font-size: 1.15rem; }
.swsa-sc:hover .swsa-si { transform: scale(1.12) rotate(-6deg); background: var(--acc-12); box-shadow: 0 0 20px var(--acc-20); }
.swsa-st { font-size: 1rem; font-weight: 700; margin: 0 0 8px 0; color: var(--txt); position: relative; z-index: 2; }
.swsa-sd { font-size: .84rem; color: var(--muted2); line-height: 1.7; margin: 0 0 14px 0; position: relative; z-index: 2; }
.swsa-sl { list-style: none; display: flex; flex-direction: column; gap: 5px; margin: 0; padding: 0; position: relative; z-index: 2; }
.swsa-sl li { font-size: .77rem; color: var(--muted2); display: flex; align-items: center; gap: 8px; transition: color .25s; }
.swsa-sl li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--acc); flex-shrink: 0; transition: box-shadow .3s; }
.swsa-sc:hover .swsa-sl li::before { box-shadow: 0 0 8px var(--acc-45); }

/* ─── STEPS ─── */
.swsa-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.swsa-steps::before { content: ''; position: absolute; top: 57px; left: 8%; right: 8%; height: 1px; background: repeating-linear-gradient(90deg, var(--brd) 0 8px, transparent 8px 16px); z-index: 0; }
@media (max-width: 900px) { .swsa-steps::before { display: none; } }
.swsa-step { background: var(--surf); border: 1px solid var(--brd); border-radius: 18px; padding: 34px 30px; position: relative; overflow: hidden; transition: border-color .35s, transform .4s var(--spring), box-shadow .35s; z-index: 1; }
.swsa-step:hover { border-color: var(--acc-20); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(200,255,0,.1); }
.swsa-stepn { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; line-height: 1; position: absolute; top: 8px; right: 18px; pointer-events: none; user-select: none; transition: opacity .3s; color: transparent; -webkit-text-stroke: 1px var(--brd); }
.swsa-step:hover .swsa-stepn { -webkit-text-stroke-color: var(--acc-30); }
.swsa-stepico { width: 46px; height: 46px; background: var(--acc-08); border: 1px solid var(--acc-12); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 20px; transition: background .3s, transform .4s var(--spring), box-shadow .3s; color: var(--acc); }
.swsa-step:hover .swsa-stepico { background: var(--acc-12); transform: scale(1.12) rotate(-4deg); box-shadow: 0 0 20px var(--acc-20); }
.swsa-stept { font-size: 1.1rem; font-weight: 700; margin: 0 0 10px 0; color: var(--txt); }
.swsa-stepd { font-size: .87rem; color: var(--muted2); line-height: 1.7; margin: 0; }
.swsa-stepl { display: inline-flex; align-items: center; gap: 6px; color: var(--acc) !important; font-size: .83rem; font-weight: 600; margin-top: 16px; transition: color .2s; }
.swsa-stepl span.swsa-arr { display: inline-block; transition: transform .3s var(--spring); }
.swsa-stepl:hover span.swsa-arr { transform: translateX(5px); }

/* ─── TESTIMONIALS ─── */
.swsa-tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.swsa-tc { background: var(--surf); border: 1px solid var(--brd); border-radius: 18px; padding: 30px; transition: border-color .35s, transform .4s var(--spring), box-shadow .35s; }
.swsa-tc:hover { border-color: rgba(200,255,0,.25); transform: translateY(-4px); box-shadow: 0 20px 52px rgba(0,0,0,.4); }
.swsa-stars { color: var(--acc); font-size: .87rem; margin-bottom: 14px; letter-spacing: 3px; }
.swsa-tt { font-size: .92rem; color: var(--muted2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.swsa-ta { display: flex; align-items: center; gap: 12px; }
.swsa-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--acc) 0%, #00A8CC 100%); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .82rem; color: #08090D; flex-shrink: 0; transition: transform .4s var(--spring); }
.swsa-tc:hover .swsa-av { transform: scale(1.1); }
.swsa-tn { font-weight: 700; font-size: .87rem; color: var(--txt); }
.swsa-tr { font-size: .74rem; color: var(--muted2); }
.swsa-rating-note { text-align: center; margin-top: 22px; font-size: .79rem; color: var(--muted2); }
.swsa-rating-note span { color: var(--acc); font-weight: 600; }

/* ─── ABOUT ─── */
.swsa-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.swsa-about-img { background: linear-gradient(135deg, var(--surf2) 0%, #0D1020 100%); border-radius: 20px; padding: 48px 36px; text-align: center; position: relative; overflow: hidden; border: 1px solid transparent; background-clip: padding-box; }
.swsa-about-img::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px; padding: 1px;
  background: conic-gradient(from var(--swsa-ang, 135deg), var(--acc-30), transparent 30%, transparent 55%, var(--acc-12) 75%, var(--acc-30));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: swsa-spin 7s linear infinite; pointer-events: none;
}
@keyframes swsa-spin { to { --swsa-ang: 495deg; } }
.swsa-about-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(200,255,0,.05) 0%, transparent 70%); }
.swsa-about-icon { font-size: 5rem; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; width: 96px; height: 96px; background: var(--acc-08); border: 1px solid var(--acc-20); border-radius: 26px; color: var(--acc); animation: swsa-f1 5.5s ease-in-out infinite; }
.swsa-about-icon .swsa-ic { width: 48px; height: 48px; stroke-width: 1.6; }
.swsa-about-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--txt); margin: 0 0 6px 0; position: relative; z-index: 1; }
.swsa-about-role { font-size: .84rem; color: var(--acc); font-weight: 600; position: relative; z-index: 1; }
.swsa-about-badges { display: flex; gap: 10px; justify-content: center; margin-top: 18px; flex-wrap: wrap; position: relative; z-index: 1; }
.swsa-about-badge { background: var(--acc-08); border: 1px solid var(--acc-20); border-radius: 100px; padding: 5px 14px; font-size: .72rem; font-weight: 600; color: var(--acc); display: inline-flex; align-items: center; gap: 6px; transition: background .3s, transform .3s var(--spring); }
.swsa-about-badge:hover { background: var(--acc-12); transform: translateY(-2px); }
.swsa-about-prose { display: flex; flex-direction: column; gap: 16px; }
.swsa-about-prose p { font-size: .97rem; color: var(--muted2); line-height: 1.85; margin: 0; }
.swsa-about-prose p strong { color: var(--txt); font-weight: 600; }
.swsa-about-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.swsa-trust-item { background: var(--surf2); border: 1px solid var(--brd); border-radius: 12px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; transition: border-color .3s, transform .35s var(--spring); }
.swsa-trust-item:hover { border-color: var(--acc-20); transform: translateY(-2px); }
.swsa-trust-ico { font-size: 1.05rem; flex-shrink: 0; color: var(--acc); display: flex; align-items: center; }
.swsa-trust-t { font-size: .8rem; font-weight: 600; color: var(--txt); }
.swsa-trust-s { font-size: .72rem; color: var(--muted2); }

/* ─── FAQ ─── */
.swsa-faq { max-width: 780px; margin: 0 auto; }
.swsa-faq-item { border-bottom: 1px solid var(--brd); overflow: hidden; transition: background .3s; }
.swsa-faq-item:first-child { border-top: 1px solid var(--brd); }
.swsa-faq-item[open] { background: linear-gradient(90deg, var(--acc-06), transparent 40%); }
.swsa-faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; gap: 16px; font-size: 1rem; font-weight: 600; color: var(--txt); transition: color .2s, padding-left .3s var(--ease); user-select: none; list-style: none; }
.swsa-faq-q::-webkit-details-marker { display: none; }
.swsa-faq-q:hover { color: var(--acc); padding-left: 6px; }
.swsa-faq-item[open] .swsa-faq-q { padding-left: 10px; }
.swsa-faq-icon { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--brd); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; color: var(--acc); transition: transform .35s var(--spring), background .25s, border-color .25s; }
details[open] .swsa-faq-icon { transform: rotate(45deg); background: var(--acc-12); border-color: var(--acc-30); }
.swsa-faq-a { font-size: .92rem; color: var(--muted2); line-height: 1.75; padding: 0 0 20px 10px; max-width: 660px; }
details[open] .swsa-faq-a { animation: swsa-faqin .4s var(--ease); }
@keyframes swsa-faqin { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ─── ARTICLES STRIP ─── */
.swsa-art-strip { background: var(--surf2); border: 1px solid var(--brd); border-radius: 18px; padding: 32px 36px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden; transition: border-color .35s, transform .4s var(--spring), box-shadow .35s; }
.swsa-art-strip:hover { border-color: var(--acc-20); transform: translateY(-3px); box-shadow: 0 18px 48px rgba(0,0,0,.4); }
.swsa-art-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 40% 100% at 90% 50%, var(--acc-06), transparent 70%); pointer-events: none; }
.swsa-art-strip h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--txt); margin: 0 0 6px 0; display: flex; align-items: center; gap: 10px; }
.swsa-art-strip h3 .swsa-ic { color: var(--acc); }
.swsa-art-strip p { font-size: .87rem; color: var(--muted2); margin: 0; }

/* ─── CTA ─── */
.swsa-cta { padding: 110px 5%; text-align: center; position: relative; overflow: hidden; }
.swsa-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200,255,0,.07) 0%, transparent 70%); pointer-events: none; animation: swsa-ctapulse 6s cubic-bezier(0.4,0,0.6,1) infinite; will-change: transform, opacity; }
@keyframes swsa-ctapulse { 0%, 100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.2); opacity: .4; } }
.swsa-cta > * { position: relative; z-index: 2; }
.swsa-cta .swsa-tag { justify-content: center; }
.swsa-cta .swsa-tag::after { content: ''; width: 22px; height: 1px; background: linear-gradient(270deg, var(--acc), transparent); flex-shrink: 0; }
.swsa-cta .swsa-h2 { font-size: clamp(2.6rem, 4.5vw, 4.5rem); }
.swsa-ctabtns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.swsa-ctanote { margin-top: 16px; font-size: .79rem; color: var(--muted); }

/* ─── CONTACT ─── */
.swsa-cgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: start; }
.swsa-cinfo { display: flex; flex-direction: column; gap: 22px; }
.swsa-ci { display: flex; align-items: flex-start; gap: 14px; }
.swsa-cico { width: 42px; height: 42px; background: var(--acc-08); border: 1px solid rgba(200,255,0,.15); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; transition: background .3s, transform .4s var(--spring), box-shadow .3s; color: var(--acc); }
.swsa-ci:hover .swsa-cico { background: var(--acc-12); transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 16px var(--acc-20); }
.swsa-cl { font-size: .73rem; font-weight: 600; color: var(--muted2); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 1px; }
.swsa-cv { font-size: .9rem; font-weight: 600; color: var(--txt); }
.swsa-cv a { color: var(--txt) !important; transition: color .2s; }
.swsa-cv a:hover { color: var(--acc) !important; }
.swsa-form { display: flex; flex-direction: column; gap: 13px; background: rgba(15,17,24,.55); border: 1px solid var(--brd); border-radius: 20px; padding: 26px; }
.swsa-fr { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.swsa-fg { display: flex; flex-direction: column; gap: 6px; }
.swsa-fg label { font-size: .79rem; font-weight: 600; color: var(--muted2); }
.swsa-fg input, .swsa-fg select, .swsa-fg textarea { background: var(--bg) !important; border: 1px solid var(--brd) !important; border-radius: 10px !important; padding: 11px 13px !important; color: var(--txt) !important; font-family: 'Outfit', sans-serif !important; font-size: .87rem !important; outline: none !important; width: 100% !important; box-shadow: none !important; transition: border-color .2s, box-shadow .2s, transform .2s; }
.swsa-fg select option { background: #08090D; color: #F0F2FF; }
.swsa-fg input:focus, .swsa-fg select:focus, .swsa-fg textarea:focus { border-color: var(--acc) !important; box-shadow: 0 0 0 3px rgba(200,255,0,.08), 0 0 20px rgba(200,255,0,.06) !important; }
.swsa-fg textarea { min-height: 110px; resize: vertical; }
.swsa-fsub { background: var(--acc); color: #08090D; border: none; border-radius: 100px; padding: 13px 28px; font-family: 'Outfit', sans-serif; font-size: .92rem; font-weight: 700; cursor: pointer; transition: box-shadow .3s, transform .35s var(--spring); width: 100%; position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.swsa-fsub::before { content: ''; position: absolute; top: 0; left: 0; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent); transform: translateX(-200%); transition: transform .55s; }
.swsa-fsub:hover::before { transform: translateX(320%); }
.swsa-fsub:hover { box-shadow: 0 0 36px rgba(200,255,0,.4); transform: translateY(-1px); }
.swsa-fsub:active { transform: scale(.98); }
.swsa-fsub.sent { background: #28C840; color: #fff; }

/* ─── FOOTER ─── */
.swsa-foot { background: var(--bg); border-top: 1px solid var(--brd); padding: 54px 5% 34px; position: relative; overflow: hidden; }
.swsa-foot::before { content: ''; position: absolute; top: -1px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--acc-45), transparent); }
.swsa-ftop { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; gap: 40px; position: relative; z-index: 1; }
.swsa-fbrand { max-width: 300px; }
.swsa-flogo { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.swsa-flogoi { width: 30px; height: 30px; background: var(--acc); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.swsa-fn { font-weight: 800; font-size: .98rem; color: var(--txt); }
.swsa-fn span { color: var(--acc); }
.swsa-ftagline { font-size: .84rem; color: var(--muted2); line-height: 1.6; margin: 0 0 10px 0; }
.swsa-fgeo { font-size: .78rem; color: var(--muted); line-height: 1.5; margin: 0; }
.swsa-fgeo .swsa-ic { color: var(--acc); width: 1em; height: 1em; }
.swsa-fcols { display: flex; gap: 52px; }
.swsa-fcol h4 { font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--muted2); margin: 0 0 16px 0; }
.swsa-fcol a { display: block; font-size: .85rem; color: var(--muted2) !important; margin-bottom: 9px; transition: color .2s, transform .35s var(--spring); transform-origin: left; }
.swsa-fcol a:hover { color: var(--txt) !important; transform: translateX(4px); }
.swsa-fbot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--brd); padding-top: 22px; font-size: .77rem; color: var(--muted); flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.swsa-fbot a { color: var(--acc) !important; }
.swsa-fprivacy { display: flex; gap: 16px; }
.swsa-fprivacy a { color: var(--muted) !important; transition: color .2s; }
.swsa-fprivacy a:hover { color: var(--acc) !important; }
/* Giant outlined watermark */
.swsa-fmark { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4rem, 13vw, 12rem); line-height: .8; text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(30,34,48,.9); letter-spacing: 6px; user-select: none; pointer-events: none; margin: 34px 0 -20px; white-space: nowrap; transition: -webkit-text-stroke-color .6s; }
.swsa-foot:hover .swsa-fmark { -webkit-text-stroke-color: rgba(200,255,0,.14); }

/* ─── WHATSAPP FAB ─── */
.swsa-wa { position: fixed; bottom: 24px; right: 24px; z-index: 9999; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(37,211,102,.45); transition: transform .4s var(--spring), box-shadow .3s; animation: swsa-wapop .7s .6s var(--spring) both; }
@keyframes swsa-wapop { from { opacity: 0; transform: scale(.3); } to { opacity: 1; transform: scale(1); } }
.swsa-wa:hover { transform: scale(1.14); box-shadow: 0 14px 44px rgba(37,211,102,.65); }
.swsa-wa svg { width: 25px; height: 25px; fill: white; }
.swsa-wa::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(37,211,102,.55); animation: swsa-waring 2.8s cubic-bezier(0,0,.2,1) .8s infinite; }
@keyframes swsa-waring { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.9); opacity: 0; } }

/* ─── BLOG CARDS (home.php / archive.php) ─── */
.swsa-bcard { background: var(--surf); border: 1px solid var(--brd); border-radius: 18px; overflow: hidden; transition: border-color .3s, transform .4s var(--spring), box-shadow .35s; display: flex; flex-direction: column; }
.swsa-bcard:hover { border-color: var(--acc-20); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.45); }
.swsa-bcard-thumb { display: block; overflow: hidden; height: 160px; }
.swsa-bcard-thumb img { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.swsa-bcard:hover .swsa-bcard-thumb img { transform: scale(1.06); }
.swsa-bcard-noimg { height: 120px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--surf2), #0D1020); border-bottom: 1px solid var(--brd); color: var(--acc); }
.swsa-bcard-noimg .swsa-ic { width: 34px; height: 34px; stroke-width: 1.6; opacity: .8; }
.swsa-bcard-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.swsa-bcard-cat { font-size: .65rem; font-weight: 700; color: var(--acc); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.swsa-bcard-h { font-size: .97rem; font-weight: 700; color: var(--txt); margin: 0 0 10px; line-height: 1.35; }
.swsa-bcard-h a { color: inherit !important; transition: color .2s; }
.swsa-bcard:hover .swsa-bcard-h a { color: var(--acc) !important; }
.swsa-bcard-p { font-size: .82rem; color: var(--muted2); line-height: 1.65; margin: 0 0 14px; flex: 1; }
.swsa-bcard-foot { display: flex; align-items: center; justify-content: space-between; font-size: .72rem; color: var(--muted); padding-top: 12px; border-top: 1px solid var(--brd); flex-wrap: wrap; gap: 6px; }
.swsa-bcard-foot span { display: inline-flex; align-items: center; gap: 5px; }
.swsa-bcard-read { color: var(--acc) !important; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.swsa-bcard-read .swsa-arr { display: inline-block; transition: transform .3s var(--spring); }
.swsa-bcard:hover .swsa-bcard-read .swsa-arr { transform: translateX(4px); }

/* ─── ARTICLES PAGE ─── */
.swsa-art-wrap { background: var(--bg); color: var(--txt); font-family: 'Outfit', sans-serif; overflow-x: hidden; width: 100%; }
.sart-inner { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.sart-crumb-bar { background: var(--surf); border-bottom: 1px solid var(--brd); }
.sart-crumb { padding: 12px 0; display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--muted2); margin: 0; }
.sart-crumb a { color: var(--muted2) !important; transition: color .2s; }
.sart-crumb a:hover { color: var(--acc) !important; }
.sart-crumb-sep { color: var(--muted); }
.sart-header { padding: 68px 0 56px; position: relative; overflow: hidden; border-bottom: 1px solid var(--brd); background: var(--surf); }
.sart-header::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(200,255,0,.05) 0%, transparent 70%); }
.sart-tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--acc); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.sart-tag::before { content: ''; width: 22px; height: 1px; background: linear-gradient(90deg, var(--acc), transparent); }
.sart-h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1; margin: 0 0 16px 0; color: var(--txt); }
.sart-h1 span { color: var(--acc); text-shadow: 0 0 30px var(--acc-30); }
.sart-header-sub { color: var(--muted2); font-size: 1rem; max-width: 580px; line-height: 1.7; margin: 0 0 24px 0; }
.sart-header-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: .8rem; color: var(--muted2); position: relative; z-index: 1; }
.sart-header-meta span { display: flex; align-items: center; gap: 6px; }
.sart-header-meta strong { color: var(--acc); }
.sart-header-meta .swsa-ic { color: var(--acc); }
.sart-body { padding: 52px 0 72px; }
.sart-filter { padding: 0 0 28px 0; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; border-bottom: 1px solid var(--brd); margin-bottom: 48px; }
.sart-search { flex: 1; min-width: 200px; background: var(--surf); border: 1px solid var(--brd); border-radius: 100px; padding: 10px 18px; color: var(--txt); font-family: 'Outfit', sans-serif; font-size: .87rem; outline: none; transition: border-color .2s, box-shadow .2s; }
.sart-search::placeholder { color: var(--muted2); }
.sart-search:focus { border-color: var(--acc); box-shadow: 0 0 0 3px rgba(200,255,0,.08); }
.sart-cats { display: flex; gap: 8px; flex-wrap: wrap; }
.sart-cat { background: var(--surf); border: 1px solid var(--brd); border-radius: 100px; padding: 8px 16px; font-size: .78rem; font-weight: 600; color: var(--muted2); cursor: pointer; transition: all .25s var(--ease); white-space: nowrap; font-family: 'Outfit', sans-serif; }
.sart-cat:hover, .sart-cat.active { background: var(--acc-12); border-color: var(--acc-30); color: var(--acc); }
.sart-cat.active { box-shadow: 0 0 14px var(--acc-12); }
.sart-featured { background: var(--surf); border: 1px solid var(--brd); border-radius: 20px; padding: 44px; margin-bottom: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; overflow: hidden; transition: border-color .3s, box-shadow .3s, transform .4s var(--spring); cursor: pointer; }
.sart-featured:hover { border-color: rgba(200,255,0,.25); box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(200,255,0,.08); transform: translateY(-4px); }
.sart-featured::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(200,255,0,.04) 0%, transparent 70%); }
.sart-feat-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--acc-12); border: 1px solid var(--acc-30); color: var(--acc); font-size: .7rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: 1px; margin-bottom: 18px; text-transform: uppercase; }
.sart-feat-h { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; color: var(--txt); margin: 0 0 14px 0; }
.sart-feat-h a { color: inherit !important; transition: color .2s; }
.sart-feat-h a:hover { color: var(--acc) !important; }
.sart-feat-p { font-size: .93rem; color: var(--muted2); line-height: 1.75; margin: 0 0 18px 0; }
.sart-meta { display: flex; align-items: center; gap: 14px; font-size: .76rem; color: var(--muted); flex-wrap: wrap; }
.sart-meta span { display: inline-flex; align-items: center; gap: 5px; }
.sart-meta-cat { background: var(--acc-12); color: var(--acc); padding: 3px 10px; border-radius: 100px; font-weight: 600; font-size: .7rem; }
.sart-feat-img { background: linear-gradient(135deg, var(--surf2) 0%, #0D1020 100%); border-radius: 14px; border: 1px solid var(--brd); height: 220px; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; color: var(--acc); }
.sart-feat-img::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(200,255,0,.06) 0%, transparent 70%); }
.sart-feat-img .swsa-ic { width: 84px; height: 84px; stroke-width: 1.3; opacity: .9; }
.sart-btns { display: flex; gap: 12px; margin-top: 22px; align-items: center; flex-wrap: wrap; }
.sart-btn { background: var(--acc); color: #08090D !important; padding: 11px 22px; border-radius: 100px; font-weight: 700; font-size: .85rem; transition: transform .35s var(--spring), box-shadow .3s; display: inline-flex; align-items: center; gap: 6px; position: relative; overflow: hidden; cursor: pointer; border: none; font-family: 'Outfit', sans-serif; }
.sart-btn::before { content: ''; position: absolute; top: 0; left: 0; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent); transform: translateX(-200%); transition: transform .55s; }
.sart-btn:hover::before { transform: translateX(320%); }
.sart-btn:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(200,255,0,.4); }
.sart-ghost { display: inline-flex; align-items: center; gap: 6px; color: var(--txt) !important; font-size: .85rem; font-weight: 600; padding: 11px 0; transition: color .2s; cursor: pointer; background: none; border: none; font-family: 'Outfit', sans-serif; }
.sart-ghost:hover { color: var(--acc) !important; }
.sart-arr { display: inline-block; transition: transform .3s var(--spring); }
.sart-ghost:hover .sart-arr, .sart-card-link:hover .sart-arr { transform: translateX(4px); }
.sart-grid-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--muted); margin-bottom: 24px; }
.sart-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 52px; }
.sart-card { background: var(--surf); border: 1px solid var(--brd); border-radius: 18px; overflow: hidden; transition: border-color .3s, box-shadow .3s, transform .4s var(--spring); cursor: pointer; display: flex; flex-direction: column; position: relative; }
.sart-card:hover { border-color: var(--acc-20); box-shadow: 0 16px 48px rgba(0,0,0,.45); transform: translateY(-5px); }
.sart-card-img { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; background: linear-gradient(135deg, var(--surf2), #0D1020); border-bottom: 1px solid var(--brd); position: relative; flex-shrink: 0; color: var(--acc); }
.sart-card-img::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(200,255,0,.04) 0%, transparent 70%); }
.sart-card-img .swsa-ic { width: 40px; height: 40px; stroke-width: 1.5; opacity: .85; transition: transform .4s var(--spring); }
.sart-card:hover .sart-card-img .swsa-ic { transform: scale(1.12) rotate(-4deg); }
.sart-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.sart-card-cat { font-size: .65rem; font-weight: 700; color: var(--acc); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.sart-card-h { font-size: .97rem; font-weight: 700; color: var(--txt); line-height: 1.35; margin: 0 0 10px 0; transition: color .2s; }
.sart-card:hover .sart-card-h { color: var(--acc); }
.sart-card-p { font-size: .82rem; color: var(--muted2); line-height: 1.65; margin: 0 0 14px 0; flex: 1; }
.sart-card-foot { display: flex; align-items: center; justify-content: space-between; font-size: .72rem; color: var(--muted); flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--brd); }
.sart-card-foot span { display: inline-flex; align-items: center; gap: 5px; }
.sart-card-link { color: var(--acc) !important; font-weight: 600; transition: color .2s; display: inline-flex; align-items: center; gap: 4px; cursor: pointer; background: none; border: none; font-family: 'Outfit', sans-serif; font-size: .72rem; padding: 0; }
.sart-card-link:hover { color: var(--txt) !important; }
.sart-full { background: var(--surf); border: 1px solid var(--brd); border-radius: 20px; padding: 52px; max-width: 820px; margin: 0 auto 52px; display: none; }
.sart-full.visible { display: block; animation: swsa-faqin .5s var(--ease); }
.sart-back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted2) !important; font-size: .83rem; font-weight: 600; margin-bottom: 28px; transition: color .2s; cursor: pointer; background: none; border: none; padding: 0; font-family: 'Outfit', sans-serif; }
.sart-back:hover { color: var(--acc) !important; }
.sart-full-h { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--txt); margin: 0 0 16px 0; line-height: 1.05; }
.sart-full-meta { display: flex; align-items: center; gap: 14px; font-size: .76rem; color: var(--muted); flex-wrap: wrap; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--brd); }
.sart-full-meta span { display: inline-flex; align-items: center; gap: 5px; }
.sart-full p { font-size: .96rem; color: var(--muted2); line-height: 1.85; margin: 0 0 18px 0; }
.sart-full h3 { font-size: 1.15rem; font-weight: 700; color: var(--txt); margin: 32px 0 12px 0; }
.sart-full ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0 0 22px 0; padding: 0; }
.sart-full ul li { font-size: .93rem; color: var(--muted2); display: flex; align-items: flex-start; gap: 12px; line-height: 1.65; }
.sart-full ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--acc); flex-shrink: 0; margin-top: 8px; }
.sart-full strong { color: var(--txt); font-weight: 600; }
.sart-full em { color: var(--txt); font-style: italic; }
.sart-cta-box { background: var(--acc-06); border: 1px solid var(--acc-20); border-radius: 16px; padding: 32px; margin-top: 36px; text-align: center; }
.sart-cta-box p { color: var(--txt); font-size: .97rem; font-weight: 600; margin: 0 0 16px 0 !important; line-height: 1.5; }
.sart-cta-box .swsa-ic { color: var(--acc); }
.sart-divider { border: none; border-top: 1px solid var(--brd); margin: 28px 0; }
.sart-nl { background: var(--surf2); border: 1px solid var(--brd); border-radius: 18px; padding: 40px; text-align: center; position: relative; overflow: hidden; }
.sart-nl::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 90% at 50% 110%, var(--acc-06), transparent 70%); pointer-events: none; }
.sart-nl h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--txt); margin: 0 0 10px 0; position: relative; }
.sart-nl p { color: var(--muted2); font-size: .9rem; margin: 0 0 24px 0; position: relative; }
.sart-nl-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; position: relative; }
.sart-nl-form input { flex: 1; min-width: 160px; background: var(--bg); border: 1px solid var(--brd); border-radius: 100px; padding: 12px 18px; color: var(--txt); font-family: 'Outfit', sans-serif; font-size: .87rem; outline: none; transition: border-color .2s, box-shadow .2s; }
.sart-nl-form input:focus { border-color: var(--acc); box-shadow: 0 0 0 3px rgba(200,255,0,.08); }
.sart-nl-form button { background: var(--acc); color: #08090D; border: none; border-radius: 100px; padding: 12px 24px; font-family: 'Outfit', sans-serif; font-size: .87rem; font-weight: 700; cursor: pointer; transition: box-shadow .3s, transform .35s var(--spring); white-space: nowrap; }
.sart-nl-form button:hover { box-shadow: 0 0 24px rgba(200,255,0,.4); transform: translateY(-1px); }
.sart-nl-note { font-size: .74rem; color: var(--muted); margin-top: 12px; }

/* Articles reveal */
.sart-rv { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.sart-rv.on { opacity: 1; transform: translateY(0); }
.sart-rv-d1 { transition-delay: .04s; } .sart-rv-d2 { transition-delay: .09s; } .sart-rv-d3 { transition-delay: .14s; }
.sart-rv-d4 { transition-delay: .19s; } .sart-rv-d5 { transition-delay: .24s; } .sart-rv-d6 { transition-delay: .29s; }
.sart-rv-d7 { transition-delay: .34s; } .sart-rv-d8 { transition-delay: .39s; } .sart-rv-d9 { transition-delay: .44s; }
.sart-rv-d10 { transition-delay: .49s; } .sart-rv-d11 { transition-delay: .54s; } .sart-rv-d12 { transition-delay: .59s; }

/* ─── SINGLE POST / PAGE CONTENT ─── */
.swsa-post-content h2, .swsa-page-content h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 700; color: var(--txt); margin: 2em 0 .55em; }
.swsa-post-content h3, .swsa-page-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--txt); margin: 1.5em 0 .45em; }
.swsa-post-content a, .swsa-page-content a { color: var(--acc); text-decoration: underline !important; text-underline-offset: 3px; }
.swsa-post-content a:hover, .swsa-page-content a:hover { opacity: .8; }
.swsa-post-content strong, .swsa-page-content strong { color: var(--txt); }
.swsa-post-content img, .swsa-page-content img { border-radius: 14px; }
.swsa-post-content blockquote, .swsa-page-content blockquote { border-left: 3px solid var(--acc); margin: 1.5em 0; padding: .5em 0 .5em 1.2em; background: var(--acc-06); border-radius: 0 12px 12px 0; color: var(--txt); }

/* ─── RESPONSIVE ─── */
@media(max-width: 900px) {
  .swsa-hero { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 60px; }
  .swsa-vis { display: none; }
  .swsa-stats { grid-template-columns: repeat(2, 1fr); }
  .swsa-sg { grid-template-columns: 1fr 1fr; }
  .swsa-steps { grid-template-columns: 1fr; }
  .swsa-tg { grid-template-columns: 1fr; }
  .swsa-cgrid { grid-template-columns: 1fr; gap: 44px; }
  .swsa-why-grid, .swsa-about-grid { grid-template-columns: 1fr; gap: 44px; }
  .swsa-ftop { flex-direction: column; }
  .swsa-fcols { flex-wrap: wrap; gap: 28px; }
  .swsa-nlinks { display: none; }
  .swsa-fr { grid-template-columns: 1fr; }
  .swsa-ham { display: flex !important; min-width: 44px; min-height: 44px; width: 44px; height: 44px; padding: 10px; flex-shrink: 0; }
  .swsa-ncta { display: none; }
  .swsa-rv { transform: translateY(12px); }
  .swsa-art-strip { flex-direction: column; }
  .swsa-about-trust { grid-template-columns: 1fr; }
  .sart-featured { grid-template-columns: 1fr; }
  .sart-feat-img { height: 160px; }
  .sart-grid { grid-template-columns: 1fr 1fr; }
  .swsa-form { padding: 20px; }
}
@media(max-width: 600px) {
  .swsa-sg { grid-template-columns: 1fr; }
  .swsa-sec { padding: 70px 5%; }
  .swsa-hbtns { flex-direction: column; }
  .swsa-hbtns a { text-align: center; justify-content: center; }
  .swsa-nlogo-txt { font-size: .9rem; }
  .swsa-fprivacy { flex-direction: column; gap: 8px; }
  .sart-grid { grid-template-columns: 1fr; }
  .sart-header { padding: 44px 0 36px; }
  .sart-body { padding: 36px 0 52px; }
  .sart-inner { padding: 0 4%; }
  .sart-full { padding: 28px 20px; }
  .sart-nl { padding: 28px 20px; }
  .sart-nl-form { flex-direction: column; }
  .sart-btns { flex-direction: column; align-items: flex-start; }
}
@media(prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .swsa-w > span { transform: none; }
  .swsa-cur { display: none !important; }
  html { scroll-behavior: auto; }
}

/* ─── SKIP LINK (accessibility) ─── */
.swsa-skip { position: absolute; left: -9999px; top: 0; z-index: 10000; background: var(--acc); color: #08090D; font-weight: 700; padding: 12px 22px; border-radius: 0 0 12px 0; font-size: .9rem; }
.swsa-skip:focus { left: 0; }

/* ─── FOCUS VISIBILITY (keyboard users) ─── */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; border-radius: 4px; }

/* ─── BLOG GRID (home.php / archive.php) — responsive ─── */
.swsa-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 52px; }
@media (max-width: 900px) { .swsa-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .swsa-blog-grid { grid-template-columns: 1fr; } }

/* ─── PAGINATION (WordPress the_posts_pagination) ─── */
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; justify-content: center; }
.pagination .page-numbers { background: var(--surf); border: 1px solid var(--brd); border-radius: 10px; padding: 9px 15px; color: var(--muted2); font-size: .85rem; font-weight: 600; transition: border-color .2s, color .2s; }
.pagination .page-numbers.current { background: var(--acc); color: #08090D; border-color: var(--acc); }
.pagination a.page-numbers:hover { border-color: var(--acc); color: var(--txt); }

/* ── ANIMATED HERO BACKGROUND (canvas · assets/js/hero-anim.js) ─────────
   Silent, seamless dark "build → go live" scene. Sits ABOVE the static grid
   + aurora (which stay as a no-JS fallback behind the transparent canvas) and
   BELOW all hero content. A dark scrim keeps the headline crisp while the
   animation stays bold in the open centre/right. */
/* NOTE the selector: the theme already has `.swsa-hero > div { position: relative; z-index: 2 }`,
   which is MORE specific than a bare `.swsa-heroanim` and would force this layer back into the
   flow (collapsing it to 0×0 inside the flex hero). `.swsa-hero > div.swsa-heroanim` outranks it. */
.swsa-hero > div.swsa-heroanim,
.swsa-heroanim { position: absolute; inset: 0; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.swsa-heroanim canvas, .swsa-heroanim video { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.swsa-heroanim video { object-fit: cover; }
.swsa-heroanim::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(96deg, var(--bg) 0%, rgba(8,9,13,.85) 26%, rgba(8,9,13,.45) 46%, rgba(8,9,13,0) 62%);
}
.swsa-hcopy { position: relative; z-index: 2; }
.swsa-hero .swsa-scue { z-index: 2; }
@media (max-width: 900px) {
  .swsa-heroanim::after { background: linear-gradient(180deg, rgba(8,9,13,.5) 0%, rgba(8,9,13,.35) 45%, rgba(8,9,13,.72) 100%); }
}

/* ── CINEMATIC HERO (video-forward: title + tagline + CTAs, full-screen) ──
   The animated background is the focus; copy is anchored lower-left. */
.swsa-hero-cinema {
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  min-height: 100vh; min-height: 100svh; padding: 110px 7% 46px;
}
.swsa-hero-cinema .swsa-hcopy { max-width: 560px; }
.swsa-hero-cinema .swsa-h1-visual { font-size: clamp(2rem, 4.1vw, 3.4rem); margin-bottom: 12px; }
.swsa-hero-cinema .swsa-htag { font-size: clamp(.88rem, 1.1vw, 1.02rem); margin-bottom: 18px; max-width: 500px; }
.swsa-htag {
  font-size: clamp(1rem, 1.55vw, 1.3rem); line-height: 1.6; color: var(--muted2);
  max-width: 640px; margin: 0 0 30px; animation: swsa-up .7s .5s var(--ease) both; will-change: opacity, transform;
}
.swsa-htag strong { color: var(--txt); font-weight: 600; }
/* visually hidden — kept in the DOM for SEO + screen readers */
.swsa-vh { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
/* buttons-only hero: just a whisper of scrim at the very bottom for CTA contrast */
.swsa-hero-cinema .swsa-heroanim::after {
  background: linear-gradient(to top, rgba(8,9,13,.72) 0%, rgba(8,9,13,.26) 12%, rgba(8,9,13,0) 30%);
}
@media (max-width: 900px) {
  .swsa-hero-cinema { padding: 92px 6% 40px; min-height: 86vh; }
  .swsa-hero-cinema .swsa-heroanim::after {
    background: linear-gradient(to top, rgba(8,9,13,.72) 0%, rgba(8,9,13,.28) 16%, rgba(8,9,13,0) 40%);
  }
}


/* ══════════════════════════════════════════════════════════════════════
   v5.0.0 ADDITIONS
   ══════════════════════════════════════════════════════════════════════
   1. Hero H1 kicker           — the keyword line above the headline
   2. Article cards as links   — cards are real <a> elements now, not
                                 onclick handlers on a <div>
   3. Pagination & empty state — the article list is paginated now
   4. Service & location pages — styling for the new landing pages
   5. Related posts block
   ══════════════════════════════════════════════════════════════════════ */

/* ─── 1. HERO / H1 PLACEMENT ────────────────────────────────────────
 * No CSS needed here. The hero is animation + buttons only, exactly as
 * in v4, and the page H1 lives in template-parts/why.php as
 * <h1 class="swsa-h2">.
 *
 * Every .swsa-h2 rule above is written against the CLASS, not the tag,
 * so the promoted heading renders pixel-identically to the h2 it
 * replaced. Nothing to override.
 *
 * Browser default h1 sizing is irrelevant — .swsa-h2 sets font-size,
 * line-height and margin explicitly. */

/* ─── 2. ARTICLE CARDS AS LINKS ─────────────────────────────────── */
.sart-card-a { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.sart-card-a:hover { text-decoration: none; }
.sart-card-img-photo { padding: 0; overflow: hidden; }
.sart-card-img-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sart-card .sart-card-link { color: var(--acc); font-weight: 600; }

/* The featured block is an <a> in v5 — strip default link styling. */
a.sart-featured { text-decoration: none; color: inherit; }
a.sart-featured:hover { text-decoration: none; }
a.sart-featured .sart-btn { display: inline-flex; align-items: center; }

/* Cards hidden by the filter use [hidden]; make sure grid honours it. */
.sart-card[hidden], .sart-featured[hidden] { display: none !important; }

/* ─── 3. PAGINATION & EMPTY STATE ───────────────────────────────── */
.sart-pager { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 44px; }
.sart-pager .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 14px;
  background: var(--surf); border: 1px solid var(--brd); border-radius: 10px;
  color: var(--txt2); font-size: .9rem; font-weight: 600; text-decoration: none;
  transition: border-color .2s, color .2s, transform .2s;
}
.sart-pager .page-numbers:hover { border-color: var(--acc-30); color: var(--acc); transform: translateY(-2px); }
.sart-pager .page-numbers.current { background: var(--acc); border-color: var(--acc); color: #08090D; }
.sart-pager .page-numbers.dots { background: none; border: none; }

.sart-empty { text-align: center; padding: 56px 20px; }
.sart-empty p { color: var(--txt2); margin: 0 0 20px; font-size: 1.02rem; }

/* ─── 4. SERVICE & LOCATION PAGES ───────────────────────────────── */
.swsa-lander { max-width: 860px; margin: 0 auto; padding: clamp(5.5rem, 11vw, 8rem) clamp(1.15rem, 5vw, 2rem) 4.5rem; color: var(--txt); }
.swsa-lander h1 { font-size: clamp(1.85rem, 4.4vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: #fff; margin: 0 0 1.1rem; text-wrap: balance; }
.swsa-lander h2 { font-size: clamp(1.3rem, 2.7vw, 1.85rem); font-weight: 700; line-height: 1.22; color: #fff; margin: 2.9rem 0 .9rem; letter-spacing: -.01em; }
.swsa-lander h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 700; color: #fff; margin: 1.9rem 0 .6rem; }
.swsa-lander p, .swsa-lander li { font-size: 1.03rem; line-height: 1.72; color: var(--txt2); }
.swsa-lander p { margin: 0 0 1.15rem; }
.swsa-lander ul, .swsa-lander ol { margin: 0 0 1.5rem; padding-left: 1.35rem; }
.swsa-lander li { margin-bottom: .6rem; }
.swsa-lander strong { color: #fff; font-weight: 650; }
.swsa-lander a { color: var(--acc); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: opacity .18s; }
.swsa-lander a:hover { opacity: .75; }
.swsa-lander .swsa-lead { font-size: clamp(1.08rem, 2vw, 1.22rem); line-height: 1.62; color: var(--txt); margin-bottom: 2.2rem; }

.swsa-crumb { font-size: .82rem; letter-spacing: .02em; color: var(--txt2); margin-bottom: 1.5rem; }
.swsa-crumb a { text-decoration: none; color: var(--txt2); }
.swsa-crumb a:hover { color: var(--acc); opacity: 1; }
.swsa-crumb span { margin: 0 .45rem; opacity: .45; }

.swsa-lander .swsa-inline-cta { background: var(--surf); border: 1px solid var(--brd); border-radius: 16px; padding: 1.65rem 1.6rem; margin: 2.6rem 0; }
.swsa-lander .swsa-inline-cta p { margin: 0 0 1rem; color: #fff; font-weight: 600; font-size: 1.05rem; }
.swsa-lander .swsa-inline-cta a { display: inline-block; background: var(--acc); color: #08090D; font-weight: 750; font-size: .95rem; padding: .8rem 1.5rem; border-radius: 999px; text-decoration: none; transition: transform .18s, box-shadow .18s; }
.swsa-lander .swsa-inline-cta a:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(200,255,0,.22); opacity: 1; }

.swsa-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: .85rem; margin: 2rem 0 2.6rem; padding: 0; list-style: none; }
.swsa-facts li { background: var(--surf); border: 1px solid var(--brd); border-radius: 13px; padding: 1rem 1.1rem; margin: 0; font-size: .9rem; line-height: 1.45; }
.swsa-facts li b { display: block; color: var(--acc); font-size: 1.22rem; font-weight: 800; margin-bottom: .15rem; }

/* ─── 5. RELATED POSTS ──────────────────────────────────────────── */
.swsa-related { border-top: 1px solid var(--brd); margin-top: 3.4rem; padding-top: 1.9rem; }
.swsa-related h2 { font-size: 1.15rem; margin: 0 0 1rem; color: #fff; }
.swsa-related ul { list-style: none; padding: 0; margin: 0; }
.swsa-related li { margin-bottom: .65rem; }
.swsa-related a { color: var(--acc); text-decoration: none; }
.swsa-related a:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  .swsa-lander .swsa-inline-cta a,
  .sart-pager .page-numbers { transition: none; }
  .swsa-lander .swsa-inline-cta a:hover,
  .sart-pager .page-numbers:hover { transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   v5.1.0 — HOMEPAGE ARTICLE CARDS
   The homepage previously linked to zero posts. These styles support
   the rebuilt template-parts/articles-strip.php, which now surfaces the
   six most recent posts plus a category row.
   Uses only existing brand tokens: --bg --surf --surf2 --brd --acc --txt
   ═══════════════════════════════════════════════════════════════════ */

.swsa-artgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.swsa-artcard {
  background: var(--surf);
  border: 1px solid var(--brd);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.swsa-artcard:hover {
  transform: translateY(-4px);
  border-color: var(--acc-30);
  box-shadow: 0 14px 34px -18px rgba(0,0,0,.9), 0 0 0 1px var(--acc-12);
}

.swsa-artcard-link { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }

.swsa-artcard-img { aspect-ratio: 1200 / 630; overflow: hidden; background: var(--surf2); border-bottom: 1px solid var(--brd); }
.swsa-artcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.swsa-artcard:hover .swsa-artcard-img img { transform: scale(1.04); }

.swsa-artcard-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }

.swsa-artcard-cat {
  align-self: flex-start;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--acc); background: var(--acc-08);
  border: 1px solid var(--acc-20); border-radius: 100px; padding: 4px 10px;
}

.swsa-artcard-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.32rem; line-height: 1.12; letter-spacing: .4px;
  color: var(--txt); margin: 0;
}
.swsa-artcard:hover .swsa-artcard-title { color: var(--acc); }

.swsa-artcard-ex { font-size: .86rem; line-height: 1.6; color: var(--muted2); margin: 0; flex: 1; }

.swsa-artcard-more { font-size: .82rem; font-weight: 700; color: var(--acc); display: inline-flex; align-items: center; gap: 6px; }
.swsa-artcard-more .swsa-arr { transition: transform .25s var(--ease); }
.swsa-artcard:hover .swsa-artcard-more .swsa-arr { transform: translateX(4px); }

/* ── category row ── */
.swsa-arttopics {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--brd);
}
.swsa-arttopics-lbl {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-right: 4px;
}
.swsa-arttopics a {
  font-size: .84rem; font-weight: 600; color: var(--muted2) !important;
  background: var(--surf); border: 1px solid var(--brd); border-radius: 100px;
  padding: 8px 15px; display: inline-flex; align-items: center; gap: 7px;
  transition: color .2s, border-color .2s, background .2s;
}
.swsa-arttopics a:hover { color: var(--txt) !important; border-color: var(--acc-30); background: var(--surf2); }
.swsa-arttopics a em { font-style: normal; font-size: .72rem; color: var(--acc); opacity: .85; }
.swsa-arttopics-all { color: var(--acc) !important; border-color: var(--acc-20) !important; }

@media (max-width: 620px) {
  .swsa-artgrid { grid-template-columns: 1fr; gap: 16px; }
  .swsa-artcard-title { font-size: 1.2rem; }
}

/* v5.1.0 — contextual guide link inside a service card */
.swsa-sguide {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: .8rem; font-weight: 600; color: var(--acc) !important;
  border-top: 1px solid var(--brd); padding-top: 12px; width: 100%;
  transition: color .2s;
}
.swsa-sguide .swsa-arr { transition: transform .25s var(--ease); }
.swsa-sguide:hover .swsa-arr { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════════
   v6.0.0 — STATIC SITE ADDITIONS (Cloudflare build)
   Breadcrumbs, blog search + topic chips, post FAQ, HTML sitemap.
   ═══════════════════════════════════════════════════════════════════ */
.swsa-crumbs a { color: var(--muted2) !important; transition: color .2s; }
.swsa-crumbs a:hover { color: var(--acc) !important; }
.swsa-crumbs span[aria-current] { color: var(--txt); }

.swsa-post-cover img { border-radius: 16px; width: 100%; height: auto; display: block; }
.swsa-post-faq { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--brd); }
.swsa-post-faq h3 { font-size: 1.02rem; font-weight: 700; color: var(--txt); margin: 1.4em 0 .4em; }
.swsa-related li { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.swsa-related-cat { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.swsa-sguide-page { margin-top: 6px; }

.swsa-blogtools { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.swsa-search { display: flex; align-items: center; gap: 10px; background: var(--surf); border: 1px solid var(--brd); border-radius: 12px; padding: 0 16px; max-width: 560px; transition: border-color .2s; }
.swsa-search:focus-within { border-color: var(--acc); }
.swsa-search .swsa-ic { width: 18px; height: 18px; color: var(--muted2); flex: none; }
.swsa-search input { flex: 1; background: transparent; border: 0; color: var(--txt); font: inherit; font-size: .95rem; padding: 14px 0; outline: none; min-width: 0; }
.swsa-search input::placeholder { color: var(--muted); }
.swsa-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.swsa-chip { font-size: .78rem; font-weight: 600; letter-spacing: .02em; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--brd); color: var(--muted2) !important; background: var(--surf); transition: all .2s; }
.swsa-chip:hover { border-color: var(--acc); color: var(--txt) !important; }
.swsa-chip.is-on { background: var(--acc); border-color: var(--acc); color: #08090D !important; }
.swsa-noresults { color: var(--muted2); padding: 40px 0; text-align: center; }
.swsa-noresults a { color: var(--acc); }
.swsa-bcard[hidden], .swsa-artcard[hidden] { display: none; }

.swsa-sitemap-list { list-style: none; padding: 0; margin: 0 0 2rem; columns: 2; column-gap: 32px; }
.swsa-sitemap-list li { break-inside: avoid; margin-bottom: .5rem; font-size: .92rem; }
.swsa-sitemap-list li small { color: var(--muted); margin-left: 6px; }
.swsa-sitemap-list a { color: var(--acc); }
@media (max-width: 620px) { .swsa-sitemap-list { columns: 1; } }

.swsa-lander-body .swsa-lander { max-width: none; padding: 0; }
.swsa-postnav a { color: var(--acc); }
.swsa-postnav a:hover { text-decoration: underline !important; text-underline-offset: 3px; }
.swsa-crumbs a { color: var(--muted2); }


/* Services & areas band - real internal links from the strongest page */
.swsa-reach { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1100px; margin: 0 auto; }
.swsa-reach-col { background: var(--surf); border: 1px solid var(--brd); border-radius: 18px; padding: 28px 26px; }
.swsa-reach-h { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .5px; color: var(--acc); margin: 0 0 18px; }
.swsa-reach-list { list-style: none; padding: 0; margin: 0 0 18px; }
.swsa-reach-list li { border-top: 1px solid var(--brd); }
.swsa-reach-list li:first-child { border-top: 0; }
.swsa-reach-list a { display: block; padding: 13px 0; transition: padding-left .2s var(--ease); }
.swsa-reach-list a:hover { padding-left: 8px; }
.swsa-reach-list strong { display: block; color: var(--txt); font-size: .95rem; font-weight: 600; margin-bottom: 3px; }
.swsa-reach-list a:hover strong { color: var(--acc); }
.swsa-reach-list span { display: block; color: var(--muted2); font-size: .82rem; line-height: 1.5; }
.swsa-reach-all { display: inline-block; color: var(--acc) !important; font-size: .86rem; font-weight: 600; }
@media (max-width: 820px) { .swsa-reach { grid-template-columns: 1fr; } }

/* Category hub intro copy, under the cards */
.swsa-hubintro { max-width: 780px; margin: 64px auto 0; padding-top: 40px; border-top: 1px solid var(--brd); font-size: .97rem; color: var(--muted2); line-height: 1.85; }
.swsa-hubintro h2 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 700; color: var(--txt); margin: 1.9em 0 .5em; }
.swsa-hubintro p:first-child { font-size: 1.05rem; color: var(--txt); }

/* Blog listing: show a first screenful, keep every link in the HTML.
   The Worker strips future posts from the stream, so nth-child counts only
   what is actually live. Works with no JavaScript at all. */
#swsa-more:not(:checked) ~ #swsa-grid > .swsa-bcard:nth-child(n+25) { display: none; }
#swsa-more:checked ~ .swsa-morebtn { display: none; }
.swsa-morebtn { display: inline-flex; align-items: center; gap: 8px; margin: 34px auto 0; padding: 14px 30px; border: 1px solid var(--brd); border-radius: 999px; background: var(--surf); color: var(--txt); font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .2s var(--ease); width: fit-content; }
.swsa-morebtn:hover { border-color: var(--acc); color: var(--acc); }
.swsa-morebtn::after { content: "\2193"; }
#swsa-more:focus-visible ~ .swsa-morebtn { outline: 2px solid var(--acc); outline-offset: 3px; }
