/* =========================================================================
   BitSoftSol - main.css
   Design tokens and all site styles compiled from the approved static
   design. Organized by section; class names are prefixed bss- to avoid
   collisions with plugins. Breakpoints below replace what the original
   design drove via JS-computed inline styles (see readme.txt) with real
   CSS so the exact same responsive behaviour works with JS disabled and
   indexes cleanly for SEO.
   ========================================================================= */

/* ---------- Font faces ---------- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}

/* ---------- Tokens ---------- */
:root {
  --bss-primary: #0E74BC;
  --bss-accent: #1C9BD6;
  --bss-tint: #EEF7FD;
  --bss-soft: #F8FAFC;
  --bss-ink: #000000;
  --bss-white: #FFFFFF;
  --bss-grad: linear-gradient(135deg, var(--bss-primary), var(--bss-accent));
  --bss-grad-diag: linear-gradient(120deg, var(--bss-primary) 0%, var(--bss-accent) 100%);
  --bss-font-body: 'Manrope', sans-serif;
  --bss-font-display: 'Satoshi', sans-serif;
  --bss-container: 1200px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.bitsoftsol {
  margin: 0;
  background: var(--bss-white);
  font-family: var(--bss-font-body);
  -webkit-font-smoothing: antialiased;
  color: var(--bss-ink);
}
body.bitsoftsol img { max-width: 100%; }
img { height: auto; }
::selection { background: var(--bss-accent); color: var(--bss-white); }
.bss-section { scroll-margin-top: 84px; }
a { color: inherit; }

.bss-container {
  max-width: var(--bss-container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* Cursor glow (desktop, optional via ACF > Motion Settings) */
#bss-glow {
  position: fixed; left: 0; top: 0;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,155,214,0.09), rgba(28,155,214,0) 62%);
  pointer-events: none;
  z-index: 4;
  transform: translate(-1200px,-1200px);
  transition: transform .3s ease-out;
}

/* ---------- Keyframes ---------- */
@keyframes bssFloatA { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }
@keyframes bssFloatB { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(12px); } }
@keyframes bssMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes bssBlob { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-24px) scale(1.08); } }
@keyframes bssDash { to { stroke-dashoffset: 0; } }
@keyframes bssPulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], .bss-hero-badge__dot, .bss-blob, .bss-float-a, .bss-float-b, .bss-uptime-pill {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Buttons ---------- */
.bss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--bss-font-body);
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: box-shadow .3s, transform .3s, background .25s, color .25s, border-color .25s;
}
.bss-btn-primary {
  background: var(--bss-grad);
  color: var(--bss-white);
  font-size: 15.5px;
  padding: 16px 32px;
  box-shadow: 0 10px 30px rgba(14,116,188,0.3);
}
.bss-btn-primary:hover { box-shadow: 0 16px 44px rgba(28,155,214,0.5); transform: translateY(-2px) scale(1.03); }
.bss-btn-outline {
  background: var(--bss-white);
  color: var(--bss-ink);
  font-size: 15.5px;
  padding: 16px 32px;
  border: 1.5px solid rgba(0,0,0,0.12);
}
.bss-btn-outline:hover { border-color: var(--bss-accent); box-shadow: 0 8px 24px rgba(28,155,214,0.18); transform: translateY(-2px) scale(1.03); }
.bss-btn-nav {
  background: var(--bss-grad);
  color: var(--bss-white) !important;
  font-size: 14px;
  padding: 11px 22px;
  box-shadow: 0 4px 16px rgba(14,116,188,0.25);
}
.bss-btn-nav:hover { box-shadow: 0 8px 28px rgba(28,155,214,0.45); transform: translateY(-1px) scale(1.02); }
.bss-link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--bss-primary);
  font-size: 15px; font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(14,116,188,0.25);
  padding-bottom: 4px;
  transition: border-color .25s;
}
.bss-link-arrow:hover { border-color: var(--bss-primary); }

/* ---------- Section heading blocks ---------- */
.bss-eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--bss-primary); margin-bottom: 18px;
}
.bss-h2 {
  font-family: var(--bss-font-display); font-weight: 900;
  font-size: clamp(32px,4.5vw,46px); line-height: 1.1; letter-spacing: -0.025em;
  color: var(--bss-ink); margin: 0 0 20px;
}
.bss-lead { font-size: 17px; line-height: 1.7; color: rgba(0,0,0,0.55); margin: 0; }
.bss-section-head { text-align: center; max-width: 620px; margin: 0 auto 70px; }
.bss-section-head--tight { margin-bottom: 64px; }
.bss-section-head--faq { max-width: 820px; margin: 0 auto 56px; text-align: center; }

/* =========================================================================
   HEADER / NAV
   =========================================================================
   Defensive notes: several rules below use !important and flex-shrink:0.
   This is deliberate — the header sits in a shared WP environment where
   plugins/page builders load their own CSS after ours, and WordPress
   core's own generic "img { height:auto }" style plus the admin bar have
   both been known to collide with fixed headers. Locking down box model
   and sizing here keeps the header pixel-identical to the approved design
   regardless of load order or what else is active on the site. */
body.bitsoftsol .bss-nav {
  position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; z-index: 999 !important;
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid rgba(14,116,188,0);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
body.bitsoftsol .bss-nav.is-scrolled {
  background: rgba(255,255,255,0.75);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid rgba(14,116,188,0.1);
  box-shadow: 0 8px 30px rgba(14,116,188,0.08);
}
/* WordPress admin bar: keep the fixed header sitting directly under it
   instead of relying only on WP core's html{margin-top} behaviour. */
body.bitsoftsol.admin-bar .bss-nav { top: 32px !important; }
@media screen and (max-width: 782px) {
  body.bitsoftsol.admin-bar .bss-nav { top: 46px !important; }
}

body.bitsoftsol .bss-nav__row {
  max-width: var(--bss-container); margin: 0 auto; padding: 0 clamp(20px,4vw,32px);
  box-sizing: border-box;
  height: 76px; min-height: 76px; max-height: 76px;
  display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 32px;
}
body.bitsoftsol .bss-nav__logo {
  display: flex !important; align-items: center !important; text-decoration: none;
  flex-shrink: 0; line-height: 0;
}
body.bitsoftsol .bss-nav__logo img {
  height: 30px !important; width: auto !important; max-width: none !important;
  max-height: 30px !important; display: block !important;
}
body.bitsoftsol .bss-nav__links {
  display: flex; align-items: center; gap: 34px; flex-shrink: 1;
}
body.bitsoftsol .bss-nav__links a {
  font-size: 14.5px; font-weight: 600; color: rgba(0,0,0,0.7);
  text-decoration: none; transition: color .2s; white-space: nowrap;
}
body.bitsoftsol .bss-nav__links a:hover, body.bitsoftsol .bss-nav__links a.is-active { color: var(--bss-primary); }
body.bitsoftsol .bss-nav__actions { display: flex !important; align-items: center !important; gap: 10px; flex-shrink: 0; }
body.bitsoftsol .bss-btn-nav { white-space: nowrap; }
.bss-burger {
  display: none; flex-direction: column; justify-content: center; align-items: flex-end;
  gap: 5px; width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; padding: 10px;
  flex-shrink: 0;
}
.bss-burger span { display: block; height: 2px; background: var(--bss-ink); border-radius: 2px; }
.bss-burger span:nth-child(1) { width: 22px; }
.bss-burger span:nth-child(2) { width: 22px; }
.bss-burger span:nth-child(3) { width: 14px; }

.bss-menu-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none; z-index: 958; transition: opacity .3s ease;
}
body.bss-menu-open .bss-menu-backdrop { opacity: 1; pointer-events: auto; }
.bss-mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px,84vw);
  background: var(--bss-white); z-index: 960; box-shadow: -12px 0 40px rgba(0,0,0,0.12);
  transform: translateX(110%); transition: transform .35s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column; padding: 24px 28px; box-sizing: border-box;
}
body.bss-menu-open .bss-mobile-menu { transform: translateX(0); }
.bss-mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.bss-mobile-menu__top img { height: 26px !important; width: auto !important; max-width: none !important; display: block !important; }
.bss-mobile-menu__close {
  width: 44px; height: 44px; border: none; background: var(--bss-soft); border-radius: 50%;
  cursor: pointer; font-size: clamp(13.5px,1.3vw,16px); color: var(--bss-ink);
}
.bss-mobile-menu__links { display: flex; flex-direction: column; gap: 6px; }
.bss-mobile-menu__links a {
  font-size: 17px; font-weight: 700; color: var(--bss-ink); text-decoration: none;
  padding: 14px 12px; border-radius: 12px; transition: background .2s, color .2s;
}
.bss-mobile-menu__links a:hover { background: var(--bss-tint); color: var(--bss-primary); }
.bss-mobile-menu__cta {
  margin-top: auto; display: block; text-align: center; background: var(--bss-grad);
  color: var(--bss-white); font-size: 15px; font-weight: 800; padding: 16px 0;
  border-radius: 100px; text-decoration: none; box-shadow: 0 10px 28px rgba(14,116,188,0.3);
}

@media (max-width: 960px) {
  body.bitsoftsol .bss-nav__links { display: none; }
  .bss-burger { display: flex; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.bss-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg,var(--bss-tint) 0%,var(--bss-white) 100%);
  padding: clamp(92px,12vw,104px) 0 clamp(56px,8vw,96px);
}
.bss-hero__blob { position: absolute; border-radius: 50%; filter: blur(10px); }
.bss-hero__blob--a { top: -180px; right: -140px; width: 560px; height: 560px; background: radial-gradient(circle,rgba(28,155,214,0.16),rgba(28,155,214,0) 65%); animation: bssBlob 12s ease-in-out infinite; }
.bss-hero__blob--b { bottom: -220px; left: -160px; width: 520px; height: 520px; background: radial-gradient(circle,rgba(14,116,188,0.10),rgba(14,116,188,0) 65%); animation: bssBlob 14s ease-in-out infinite reverse; }
.bss-hero__grid {
  position: relative; max-width: var(--bss-container); margin: 0 auto; padding: 0 clamp(20px,4vw,32px);
  display: grid; grid-template-columns: repeat(auto-fit,minmax(min(420px,100%),1fr));
  gap: clamp(40px,5vw,72px); align-items: center;
}
.bss-hero-badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--bss-white);
  border: 1px solid rgba(14,116,188,0.16); border-radius: 100px; padding: 8px 18px;
  box-shadow: 0 2px 12px rgba(14,116,188,0.08); margin-bottom: 28px;
}
.bss-hero-badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bss-accent); animation: bssPulse 2s ease-in-out infinite; }
.bss-hero-badge span.bss-hero-badge__label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; color: var(--bss-primary); text-transform: uppercase; }
.bss-hero h1 {
  font-family: var(--bss-font-display); font-weight: 900; font-size: clamp(38px,6vw,64px);
  line-height: 1.04; letter-spacing: -0.03em; color: var(--bss-ink); margin: 0 0 24px;
}
.bss-hero h1 span.bss-line { display: block; }
.bss-hero .bss-gradient-text {
  background: var(--bss-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bss-hero__desc { font-size: 18px; line-height: 1.7; color: rgba(0,0,0,0.55); max-width: 480px; margin: 0 0 40px; }
.bss-hero__cta-row { display: flex; align-items: center; justify-content: flex-start; gap: 16px; flex-wrap: wrap; }
.bss-hero__strip { display: flex; align-items: center; justify-content: flex-start; flex-wrap: wrap; gap: clamp(16px,3vw,28px); margin-top: 44px; }
.bss-hero__stat { display: flex; flex-direction: column; gap: 2px; flex: 0 1 auto; align-items: flex-start; text-align: center; }
.bss-hero__stat b { font-family: var(--bss-font-display); font-weight: 900; font-size: 22px; color: var(--bss-ink); }
.bss-hero__stat span { font-size: 12.5px; font-weight: 600; color: rgba(0,0,0,0.45); }
.bss-hero__divider { width: 1px; height: 34px; background: rgba(0,0,0,0.1); }

@media (max-width: 640px) {
  .bss-hero__cta-row { justify-content: center; }
  .bss-hero__cta-row .bss-btn { width: 100%; }
  .bss-hero__strip { justify-content: center; }
  .bss-hero__stat { flex: 1 1 88px; align-items: center; }
  .bss-hero__divider { display: none; }
  .bss-hero__float { display: none !important; }
}

/* Hero dashboard illustration */
.bss-hero__illustration { position: relative; min-height: 520px; }
.bss-hero__panel {
  position: relative; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(14,116,188,0.12); border-radius: 24px; box-shadow: 0 30px 80px rgba(14,116,188,0.18);
  padding: 24px; z-index: 2;
}
.bss-hero__panel-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.bss-hero__dots { display: flex; gap: 7px; }
.bss-hero__dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,0.12); }
.bss-hero__dots span:last-child { background: var(--bss-accent); }
.bss-hero__url { font-size: 11.5px; font-weight: 700; color: rgba(0,0,0,0.35); background: var(--bss-soft); border: 1px solid rgba(0,0,0,0.06); border-radius: 100px; padding: 5px 14px; }
.bss-hero__kpis { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(120px,100%),1fr)); gap: 12px; margin-bottom: 18px; }
.bss-hero__kpi { background: var(--bss-soft); border-radius: 14px; padding: 14px 16px; }
.bss-hero__kpi--accent { background: var(--bss-grad); }
.bss-hero__kpi-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; color: rgba(0,0,0,0.4); text-transform: uppercase; margin-bottom: 6px; }
.bss-hero__kpi--accent .bss-hero__kpi-label { color: rgba(255,255,255,0.75); }
.bss-hero__kpi-value { font-family: var(--bss-font-display); font-weight: 900; font-size: 20px; color: var(--bss-ink); }
.bss-hero__kpi--accent .bss-hero__kpi-value { color: var(--bss-white); }
.bss-hero__kpi-delta { font-size: 11px; font-weight: 700; color: var(--bss-primary); margin-top: 2px; }
.bss-hero__kpi--accent .bss-hero__kpi-delta { color: rgba(255,255,255,0.85); }
.bss-hero__chart { background: var(--bss-white); border: 1px solid rgba(14,116,188,0.1); border-radius: 16px; padding: 18px 18px 8px; }
.bss-hero__chart-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.bss-hero__chart-title { font-size: 12.5px; font-weight: 800; color: var(--bss-ink); }
.bss-hero__chart-badge { font-size: 10.5px; font-weight: 700; color: var(--bss-primary); background: var(--bss-tint); border-radius: 100px; padding: 4px 12px; }
.bss-hero__chart svg { width: 100%; height: auto; display: block; }
.bss-hero__bars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.bss-hero__bar-card { background: var(--bss-soft); border-radius: 14px; padding: 14px 16px; }
.bss-hero__bar-top { display: flex; justify-content: space-between; font-size: 11.5px; font-weight: 700; color: rgba(0,0,0,0.5); margin-bottom: 8px; }
.bss-hero__bar-track { height: 6px; border-radius: 100px; background: rgba(14,116,188,0.12); }
.bss-hero__bar-fill { height: 100%; border-radius: 100px; background: var(--bss-grad); }

.bss-hero__float { position: absolute; z-index: 3; background: var(--bss-white); border: 1px solid rgba(14,116,188,0.12); border-radius: 16px; box-shadow: 0 16px 40px rgba(14,116,188,0.2); }
.bss-hero__float--deploy { top: -26px; right: -18px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; animation: bssFloatA 6s ease-in-out infinite; }
.bss-hero__float-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--bss-grad); display: flex; align-items: center; justify-content: center; }
.bss-hero__float-title { font-size: 13px; font-weight: 800; color: var(--bss-ink); display: block; }
.bss-hero__float-sub { font-size: 11px; font-weight: 600; color: rgba(0,0,0,0.4); display: block; }
.bss-hero__float--signups { bottom: -24px; left: clamp(-30px,-2vw,-8px); padding: 16px 18px; animation: bssFloatB 7s ease-in-out infinite; }
.bss-hero__signup-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: rgba(0,0,0,0.4); text-transform: uppercase; margin-bottom: 4px; }
.bss-hero__signup-row { display: flex; align-items: flex-end; gap: 12px; }
.bss-hero__signup-num { font-family: var(--bss-font-display); font-weight: 900; font-size: 24px; color: var(--bss-ink); }
.bss-hero__float--uptime {
  top: 118px; left: clamp(-46px,-3vw,-10px); border-radius: 100px; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px); border-color: rgba(14,116,188,0.14); box-shadow: 0 10px 28px rgba(14,116,188,0.16);
  padding: 10px 18px; display: flex; align-items: center; gap: 8px; animation: bssFloatA 8s ease-in-out infinite;
}
.bss-uptime-pill { width: 7px; height: 7px; border-radius: 50%; background: var(--bss-accent); animation: bssPulse 2s ease-in-out infinite; }
.bss-hero__float--uptime span.bss-uptime-label { font-size: 12px; font-weight: 800; color: var(--bss-primary); }

/* =========================================================================
   TRUSTED / MARQUEE
   ========================================================================= */
.bss-trusted { background: var(--bss-white); padding: 56px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.bss-trusted__label { text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(0,0,0,0.35); margin: 0 0 30px; }
.bss-marquee { overflow: hidden; position: relative; }
.bss-marquee::before, .bss-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; }
.bss-marquee::before { left: 0; background: linear-gradient(90deg,var(--bss-white),rgba(255,255,255,0)); }
.bss-marquee::after { right: 0; background: linear-gradient(270deg,var(--bss-white),rgba(255,255,255,0)); }
.bss-marquee__track { display: flex; gap: 88px; width: max-content; animation: bssMarquee 30s linear infinite; align-items: center; }
.bss-marquee__item { font-family: var(--bss-font-display); font-weight: 900; font-size: 21px; letter-spacing: 0.02em; color: rgba(0,0,0,0.26); white-space: nowrap; }

/* =========================================================================
   ABOUT / INTRO
   ========================================================================= */
.bss-about { background: var(--bss-soft); padding: clamp(72px,10vw,130px) 0; }
.bss-about__grid { max-width: var(--bss-container); margin: 0 auto; padding: 0 clamp(20px,4vw,32px); display: grid; grid-template-columns: repeat(auto-fit,minmax(min(320px,100%),1fr)); gap: clamp(40px,6vw,80px); align-items: center; }
.bss-about h2 { font-family: var(--bss-font-display); font-weight: 900; font-size: clamp(32px,4.5vw,46px); line-height: 1.1; letter-spacing: -0.025em; color: var(--bss-ink); margin: 0 0 24px; }
.bss-about p { font-size: 17px; line-height: 1.75; color: rgba(0,0,0,0.55); margin: 0 0 20px; }
.bss-about-highlights { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(14px,2vw,20px); }
.bss-highlight { background: var(--bss-white); border: 1px solid rgba(14,116,188,0.08); border-radius: 20px; padding: clamp(20px,3vw,30px) clamp(16px,2.5vw,26px); box-shadow: 0 4px 24px rgba(14,116,188,0.06); transition: transform .3s, box-shadow .3s; }
.bss-highlight:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(14,116,188,0.16); }
.bss-highlight--offset { margin-top: 28px; }
.bss-highlight--accent { background: var(--bss-grad); box-shadow: 0 12px 36px rgba(14,116,188,0.3); }
.bss-highlight--accent:hover { box-shadow: 0 20px 52px rgba(28,155,214,0.45); }
.bss-highlight__num { font-family: var(--bss-font-display); font-weight: 900; font-size: clamp(24px,2.5vw,34px); color: var(--bss-primary); margin-bottom: 6px; }
.bss-highlight--accent .bss-highlight__num { color: var(--bss-white); }
.bss-highlight__desc { font-size: 14px; line-height: 1.6; color: rgba(0,0,0,0.5); font-weight: 600; }
.bss-highlight--accent .bss-highlight__desc { color: rgba(255,255,255,0.85); }

@media (max-width: 360px) {
  .bss-about-highlights { grid-template-columns: 1fr; }
  .bss-highlight--offset { margin-top: 0; }
}

/* =========================================================================
   SERVICES
   ========================================================================= */
.bss-services { background: var(--bss-white); padding: clamp(72px,10vw,130px) 0; }
.bss-services__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(240px,100%),1fr)); gap: 22px; }
.bss-service-card {
  background: var(--bss-white); border: 1px solid rgba(14,116,188,0.09); border-radius: 20px;
  padding: clamp(20px,3vw,30px) clamp(16px,2.5vw,26px); box-shadow: 0 4px 24px rgba(14,116,188,0.05);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.bss-service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(28,155,214,0.18); border-color: rgba(28,155,214,0.35); }
.bss-service-card__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--bss-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.bss-service-card h3 { font-family: var(--bss-font-display); font-weight: 700; font-size: 18.5px; color: var(--bss-ink); margin: 0 0 10px; }
.bss-service-card p { font-size: 14px; line-height: 1.65; color: rgba(0,0,0,0.5); margin: 0; }
.bss-tag-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.bss-tag { font-size: 13px; font-weight: 700; color: var(--bss-primary); background: var(--bss-tint); border: 1px solid rgba(14,116,188,0.14); border-radius: 100px; padding: 9px 20px; }

/* =========================================================================
   WHY CHOOSE
   ========================================================================= */
.bss-why { background: var(--bss-tint); padding: clamp(72px,10vw,130px) 0; }
.bss-why__grid { max-width: var(--bss-container); margin: 0 auto; padding: 0 clamp(20px,4vw,32px); display: grid; grid-template-columns: repeat(auto-fit,minmax(min(340px,100%),1fr)); gap: clamp(40px,6vw,80px); align-items: start; }
.bss-why__intro { position: sticky; top: 120px; }
.bss-why__intro h2 { font-family: var(--bss-font-display); font-weight: 900; font-size: clamp(32px,4.5vw,46px); line-height: 1.1; letter-spacing: -0.025em; color: var(--bss-ink); margin: 0 0 24px; }
.bss-why__intro p { font-size: 17px; line-height: 1.75; color: rgba(0,0,0,0.55); margin: 0 0 36px; }
.bss-why__cta-wrap { text-align: left; }
.bss-why-list { display: flex; flex-direction: column; gap: 18px; }
.bss-why-item { display: flex; gap: 24px; background: var(--bss-white); border: 1px solid rgba(14,116,188,0.08); border-radius: 20px; padding: 30px 32px; box-shadow: 0 4px 24px rgba(14,116,188,0.05); transition: transform .3s, box-shadow .3s; }
.bss-why-item:hover { transform: translateX(8px); box-shadow: 0 16px 40px rgba(28,155,214,0.16); }
.bss-why-item__num { font-family: var(--bss-font-display); font-weight: 900; font-size: 15px; color: var(--bss-accent); padding-top: 3px; }
.bss-why-item h3 { font-family: var(--bss-font-display); font-weight: 700; font-size: 19px; color: var(--bss-ink); margin: 0 0 8px; }
.bss-why-item p { font-size: 14.5px; line-height: 1.65; color: rgba(0,0,0,0.5); margin: 0; }

@media (max-width: 768px) {
  .bss-why__intro { position: static; }
  .bss-why__cta-wrap { text-align: center; }
}

/* =========================================================================
   STATISTICS
   ========================================================================= */
.bss-stats { background: var(--bss-grad-diag); padding: clamp(64px,8vw,88px) 0; position: relative; overflow: hidden; }
.bss-stats__blob { position: absolute; border-radius: 50%; }
.bss-stats__blob--a { top: -120px; right: 10%; width: 380px; height: 380px; background: rgba(255,255,255,0.08); filter: blur(4px); animation: bssBlob 11s ease-in-out infinite; }
.bss-stats__blob--b { bottom: -160px; left: 6%; width: 320px; height: 320px; background: rgba(0,0,0,0.08); animation: bssBlob 13s ease-in-out infinite reverse; }
.bss-stats__inner { position: relative; max-width: var(--bss-container); margin: 0 auto; padding: 0 clamp(20px,4vw,32px); }
.bss-stats__head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.bss-stats__head h2 { font-family: var(--bss-font-display); font-weight: 900; font-size: clamp(30px,4.5vw,42px); line-height: 1.12; letter-spacing: -0.025em; color: var(--bss-white); margin: 0 0 18px; }
.bss-stats__head p { font-size: 16.5px; line-height: 1.7; color: rgba(255,255,255,0.85); margin: 0; }
.bss-stats__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(220px,100%),1fr)); gap: 32px; }
.bss-stat { text-align: center; }
.bss-stat__num { font-family: var(--bss-font-display); font-weight: 900; font-size: clamp(40px,5.5vw,56px); color: var(--bss-white); letter-spacing: -0.02em; }
.bss-stat__label { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.8); margin-top: 6px; line-height: 1.5; }
.bss-stats__source { text-align: center; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.55); margin: 48px 0 0; }

/* =========================================================================
   PORTFOLIO / FEATURED WORK
   ========================================================================= */
.bss-portfolio { background: var(--bss-white); padding: clamp(72px,10vw,130px) 0; }
.bss-section-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 64px; flex-wrap: wrap; }
.bss-section-row .bss-h2 { margin: 0; }
.bss-section-row__intro { max-width: 560px; }
.bss-portfolio__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(300px,100%),1fr)); gap: 26px; }
.bss-project-card { background: var(--bss-white); border: 1px solid rgba(14,116,188,0.09); border-radius: 24px; overflow: hidden; box-shadow: 0 4px 24px rgba(14,116,188,0.06); transition: transform .35s, box-shadow .35s; }
.bss-project-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px rgba(28,155,214,0.2); }
.bss-project-card__media { height: 210px; position: relative; overflow: hidden; padding: 28px 28px 0; }
.bss-project-card__body { padding: 28px; }
.bss-project-card__tags { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.bss-project-card__tags span { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bss-primary); background: var(--bss-tint); border-radius: 100px; padding: 5px 12px; }
.bss-project-card h3 { font-family: var(--bss-font-display); font-weight: 700; font-size: 21px; color: var(--bss-ink); margin: 0 0 10px; }
.bss-project-card p { font-size: 14px; line-height: 1.65; color: rgba(0,0,0,0.5); margin: 0 0 18px; }
.bss-project-card__quote { font-size: 13.5px; font-weight: 700; color: var(--bss-primary); line-height: 1.55; }
.bss-project-card__mock { background: #FFFFFF; border-radius: 14px 14px 0 0; box-shadow: 0 -6px 30px rgba(14,116,188,0.15); height: 100%; padding: 16px 18px; }

/* =========================================================================
   INDUSTRIES
   ========================================================================= */
.bss-industries { background: var(--bss-soft); padding: clamp(72px,10vw,130px) 0; }
.bss-industries__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(210px,100%),1fr)); gap: 20px; }
.bss-industry-card { background: var(--bss-white); border: 1px solid rgba(14,116,188,0.08); border-radius: 18px; padding: 26px; display: flex; align-items: center; gap: 14px; box-shadow: 0 2px 16px rgba(14,116,188,0.04); transition: transform .3s, box-shadow .3s; }
.bss-industry-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(28,155,214,0.16); }
.bss-industry-card__dot { width: 10px; height: 10px; border-radius: 3px; background: var(--bss-grad); flex-shrink: 0; }
.bss-industry-card span.bss-industry-card__name { font-family: var(--bss-font-display); font-weight: 700; font-size: 16.5px; color: var(--bss-ink); }

/* =========================================================================
   TECHNOLOGY STACK
   ========================================================================= */
.bss-stack { background: var(--bss-white); padding: clamp(72px,10vw,130px) 0; }
.bss-stack__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(240px,100%),1fr)); gap: clamp(10px,1.6vw,18px); }
.bss-tech-card { background: var(--bss-soft); border: 1px solid rgba(14,116,188,0.07); border-radius: 16px; padding: clamp(12px,1.8vw,22px) clamp(6px,1.6vw,20px); text-align: center; transition: transform .25s, box-shadow .25s, background .25s; }
.bss-tech-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(28,155,214,0.15); background: var(--bss-white); }
.bss-tech-card__logo { max-height: 26px; margin: 0 auto 8px; display: block; }
.bss-tech-card__name { font-family: var(--bss-font-display); font-weight: 700; font-size: clamp(13.5px,1.3vw,16px); color: var(--bss-ink); }
.bss-tech-card__cat { font-size: 11.5px; font-weight: 600; color: rgba(0,0,0,0.38); margin-top: 3px; }

@media (max-width: 768px) {
  .bss-stack__grid { grid-template-columns: repeat(3,1fr); }
}

/* =========================================================================
   PROCESS
   ========================================================================= */
.bss-process { background: var(--bss-tint); padding: clamp(72px,10vw,130px) 0; }
.bss-process__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(300px,100%),1fr)); gap: 22px; }
.bss-process-card { position: relative; background: var(--bss-white); border: 1px solid rgba(14,116,188,0.08); border-radius: 20px; padding: 34px 30px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.bss-process-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(28,155,214,0.16); }
.bss-process-card__num { position: absolute; top: 14px; right: 20px; font-family: var(--bss-font-display); font-weight: 900; font-size: 64px; color: rgba(14,116,188,0.07); line-height: 1; }
.bss-process-card h3 { font-family: var(--bss-font-display); font-weight: 700; font-size: 19px; color: var(--bss-ink); margin: 0 0 10px; }
.bss-process-card p { font-size: 14px; line-height: 1.65; color: rgba(0,0,0,0.5); margin: 0; }
.bss-process-card--accent { background: var(--bss-grad); box-shadow: 0 14px 40px rgba(14,116,188,0.3); }
.bss-process-card--accent:hover { box-shadow: 0 22px 56px rgba(28,155,214,0.45); }
.bss-process-card--accent .bss-process-card__num { color: rgba(255,255,255,0.14); }
.bss-process-card--accent h3, .bss-process-card--accent p { color: var(--bss-white); }
.bss-process-card--accent p { color: rgba(255,255,255,0.85); }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.bss-testimonials { background: var(--bss-white); padding: clamp(72px,10vw,130px) 0; }
.bss-testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(300px,100%),1fr)); gap: 26px; }
.bss-testimonial-card { background: var(--bss-soft); border: 1px solid rgba(14,116,188,0.07); border-radius: 22px; padding: 36px 32px; display: flex; flex-direction: column; gap: 24px; transition: transform .3s, box-shadow .3s; }
.bss-testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(28,155,214,0.16); }
.bss-testimonial-card__quote { font-size: 15.5px; line-height: 1.75; color: rgba(0,0,0,0.65); font-weight: 500; margin: 0; flex: 1; }
.bss-testimonial-card__person { display: flex; align-items: center; gap: 14px; }
.bss-testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bss-grad); display: flex; align-items: center; justify-content: center; font-family: var(--bss-font-display); font-weight: 900; font-size: 16px; color: var(--bss-white); overflow: hidden; }
.bss-testimonial-card__avatar img { width: 100% !important; height: 100% !important; max-width: none !important; object-fit: cover; }
.bss-testimonial-card__name { font-family: var(--bss-font-display); font-weight: 700; font-size: 15px; color: var(--bss-ink); display: block; }
.bss-testimonial-card__role { font-size: 12.5px; font-weight: 600; color: rgba(0,0,0,0.45); display: block; }

/* =========================================================================
   PRICING
   ========================================================================= */
.bss-pricing { background: var(--bss-soft); padding: clamp(72px,10vw,130px) 0; }
.bss-pricing__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(300px,100%),1fr)); gap: 26px; align-items: stretch; }
.bss-price-card { background: var(--bss-white); border: 1px solid rgba(14,116,188,0.12); border-radius: 26px; padding: 40px 34px; display: flex; flex-direction: column; transition: transform .35s, box-shadow .35s, border-color .35s; }
.bss-price-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(28,155,214,0.18); border-color: rgba(28,155,214,0.4); }
.bss-price-card__name { font-family: var(--bss-font-display); font-weight: 700; font-size: 19px; color: var(--bss-ink); }
.bss-price-card__tagline { font-size: 13.5px; font-weight: 600; color: rgba(0,0,0,0.45); margin: 6px 0 26px; }
.bss-price-card__amount-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.bss-price-card__amount { font-family: var(--bss-font-display); font-weight: 900; font-size: 44px; letter-spacing: -0.02em; color: var(--bss-ink); }
.bss-price-card__amount--gradient { background: var(--bss-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bss-price-card__amount--white { color: var(--bss-white); }
.bss-price-card__unit { font-size: 12.5px; font-weight: 600; color: rgba(0,0,0,0.4); margin-bottom: 30px; }
.bss-price-card__features { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.bss-price-card__feature { display: flex; gap: 11px; font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.6); }
.bss-price-card__feature svg { flex-shrink: 0; margin-top: 1px; }
.bss-price-card__cta { margin-top: 34px; }

.bss-price-card--featured {
  position: relative; border: 2px solid rgba(28,155,214,0.55);
  box-shadow: 0 24px 64px rgba(14,116,188,0.22); padding: 48px 34px 40px;
  transform: translateY(-14px);
}
.bss-price-card--featured:hover { transform: translateY(-24px); box-shadow: 0 36px 84px rgba(28,155,214,0.32); }
.bss-price-card__badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--bss-grad); color: var(--bss-white); font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 100px; padding: 8px 20px;
  box-shadow: 0 8px 20px rgba(14,116,188,0.35); white-space: nowrap;
}
.bss-price-card--dark { background: var(--bss-ink); border-color: rgba(28,155,214,0.3); }
.bss-price-card--dark .bss-price-card__name, .bss-price-card--dark .bss-price-card__amount { color: var(--bss-white); }
.bss-price-card--dark .bss-price-card__tagline { color: rgba(255,255,255,0.5); }
.bss-price-card--dark .bss-price-card__unit { color: rgba(255,255,255,0.4); }
.bss-price-card--dark .bss-price-card__feature { color: rgba(255,255,255,0.72); }
.bss-price-card--dark:hover { box-shadow: 0 24px 56px rgba(28,155,214,0.3); }

@media (max-width: 768px) {
  .bss-price-card--featured { transform: translateY(0); }
  .bss-price-card--featured:hover { transform: translateY(-8px); }
}

/* =========================================================================
   FAQ
   ========================================================================= */
.bss-faq { background: var(--bss-tint); padding: clamp(72px,10vw,130px) 0; }
.bss-faq__inner { max-width: 820px; margin: 0 auto; padding: 0 clamp(20px,4vw,32px); }
.bss-faq-item { background: var(--bss-white); border: 1px solid rgba(14,116,188,0.09); border-radius: 18px; margin-bottom: 14px; overflow: hidden; box-shadow: 0 2px 14px rgba(14,116,188,0.04); transition: box-shadow .3s; }
.bss-faq-item:hover { box-shadow: 0 10px 30px rgba(28,155,214,0.12); }
.bss-faq-item__q { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; cursor: pointer; background: transparent; border: none; width: 100%; text-align: left; font: inherit; }
.bss-faq-item__q span.bss-faq-item__q-text { font-family: var(--bss-font-display); font-weight: 700; font-size: 17px; color: var(--bss-ink); }
.bss-faq-item__icon { width: 30px; height: 30px; border-radius: 50%; background: var(--bss-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .3s ease, transform .35s ease; }
.bss-faq-item__icon svg path { stroke: var(--bss-primary); transition: stroke .3s ease; }
.bss-faq-item.is-open .bss-faq-item__icon { background: var(--bss-grad); transform: rotate(180deg); }
.bss-faq-item.is-open .bss-faq-item__icon svg path { stroke: var(--bss-white); }
.bss-faq-item__a { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.22,1,.36,1), opacity .4s ease; }
.bss-faq-item.is-open .bss-faq-item__a { max-height: 400px; opacity: 1; }
.bss-faq-item__a p { font-size: 15px; line-height: 1.75; color: rgba(0,0,0,0.55); margin: 0; padding: 0 28px 26px; }

/* =========================================================================
   INSIGHTS / BLOG
   ========================================================================= */
.bss-insights { background: var(--bss-white); padding: clamp(72px,10vw,130px) 0; }
.bss-insights__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(300px,100%),1fr)); gap: 26px; }
.bss-post-card { text-decoration: none; background: var(--bss-white); border: 1px solid rgba(14,116,188,0.09); border-radius: 22px; overflow: hidden; box-shadow: 0 4px 24px rgba(14,116,188,0.05); display: block; transition: transform .3s, box-shadow .3s; }
.bss-post-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(28,155,214,0.18); }
.bss-post-card__media { height: 170px; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.bss-post-card__media--fallback-1 { background: var(--bss-grad); }
.bss-post-card__media--fallback-2 { background: linear-gradient(135deg,#000000,var(--bss-primary)); }
.bss-post-card__media--fallback-3 { background: linear-gradient(135deg,var(--bss-accent),var(--bss-tint) 140%); }
.bss-post-card__cat { position: absolute; bottom: 22px; left: 24px; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bss-primary); background: var(--bss-white); border-radius: 100px; padding: 6px 14px; }
.bss-post-card__body { padding: 26px; }
.bss-post-card h3 { font-family: var(--bss-font-display); font-weight: 700; font-size: 18.5px; line-height: 1.35; color: var(--bss-ink); margin: 0 0 14px; }
.bss-post-card__read { font-size: 13px; font-weight: 800; color: var(--bss-primary); transition: transform .25s ease; display: inline-block; }
.bss-post-card:hover .bss-post-card__read { transform: translateX(4px); }

/* =========================================================================
   CONTACT CTA
   ========================================================================= */
.bss-contact { background: var(--bss-soft); padding: clamp(72px,10vw,130px) 0; }
.bss-contact__panel { position: relative; background: var(--bss-grad-diag); border-radius: 32px; padding: clamp(56px,8vw,90px) clamp(24px,5vw,64px); text-align: center; overflow: hidden; box-shadow: 0 30px 80px rgba(14,116,188,0.3); }
.bss-contact__blob { position: absolute; border-radius: 50%; }
.bss-contact__blob--a { top: -140px; left: -80px; width: 380px; height: 380px; background: rgba(255,255,255,0.1); animation: bssBlob 12s ease-in-out infinite; }
.bss-contact__blob--b { bottom: -180px; right: -60px; width: 420px; height: 420px; background: rgba(0,0,0,0.1); animation: bssBlob 14s ease-in-out infinite reverse; }
.bss-contact__content { position: relative; }
.bss-contact h2 { font-family: var(--bss-font-display); font-weight: 900; font-size: clamp(34px,5vw,52px); line-height: 1.08; letter-spacing: -0.025em; color: var(--bss-white); margin: 0 auto 22px; max-width: 640px; }
.bss-contact p { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 44px; }
.bss-contact__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.bss-contact__btn-solid { display: inline-flex; align-items: center; gap: 10px; background: var(--bss-white); color: var(--bss-primary); font-size: 15.5px; font-weight: 800; padding: 17px 34px; border-radius: 100px; text-decoration: none; box-shadow: 0 12px 32px rgba(0,0,0,0.18); transition: transform .3s, box-shadow .3s; }
.bss-contact__btn-solid:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 48px rgba(0,0,0,0.28); }
.bss-contact__btn-ghost { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.12); color: var(--bss-white); font-size: 15.5px; font-weight: 800; padding: 17px 34px; border-radius: 100px; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.4); backdrop-filter: blur(6px); transition: background .3s, transform .3s; }
.bss-contact__btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px) scale(1.03); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.bss-footer { background: var(--bss-ink); padding: 88px 0 0; }
.bss-footer__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(220px,100%),1fr)); gap: clamp(32px,4vw,56px); padding-bottom: 64px; }
.bss-footer__brand-col { grid-column: auto; }
.bss-footer__logo { font-family: var(--bss-font-display); font-weight: 900; font-size: 26px; letter-spacing: -0.01em; color: var(--bss-white); display: flex; align-items: center; gap: 2px; margin-bottom: 20px; text-decoration: none; }
.bss-footer__logo .dot { color: var(--bss-accent); }
.bss-footer__logo img { height: 30px !important; width: auto !important; max-width: none !important; display: block !important; }
.bss-footer__desc { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 300px; margin: 0 0 26px; }
.bss-footer__social { display: flex; gap: 12px; flex-wrap: wrap; }
.bss-footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.7); transition: border-color .25s ease, color .25s ease, background .25s ease, transform .25s ease; }
.bss-footer__social a:hover { border-color: var(--bss-accent); color: var(--bss-white); background: rgba(28,155,214,0.18); transform: translateY(-2px); }
.bss-footer__heading { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 22px; }
.bss-footer__links { display: flex; flex-direction: column; gap: 13px; }
.bss-footer__links a { font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.65); text-decoration: none; transition: color .2s; }
.bss-footer__links a:hover { color: var(--bss-accent); }
.bss-footer__contact-col { grid-column: auto; text-align: left; }
.bss-footer__email { display: block; font-size: 15px; font-weight: 700; color: var(--bss-accent); text-decoration: none; margin-bottom: 10px; }
.bss-footer__site { display: block; font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 28px; transition: color .2s; }
.bss-footer__site:hover { color: var(--bss-accent); }
.bss-footer__cta { display: inline-flex; align-items: center; gap: 10px; background: var(--bss-grad); color: var(--bss-white); font-size: 14px; font-weight: 700; padding: 13px 26px; border-radius: 100px; text-decoration: none; box-shadow: 0 8px 24px rgba(14,116,188,0.4); transition: box-shadow .3s, transform .3s; }
.bss-footer__cta:hover { box-shadow: 0 14px 36px rgba(28,155,214,0.55); transform: translateY(-2px) scale(1.03); }
.bss-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.bss-footer__copyright { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4); }
.bss-footer__legal { display: flex; gap: 26px; }
.bss-footer__legal a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4); text-decoration: none; transition: color .2s; }
.bss-footer__legal a:hover { color: var(--bss-accent); }

@media (max-width: 700px) {
  .bss-footer__grid { grid-template-columns: 1fr 1fr; padding-bottom: 28px; }
  .bss-footer__brand-col, .bss-footer__contact-col { grid-column: 1 / -1; }
  .bss-footer__contact-col { text-align: center; }
}

/* =========================================================================
   Reveal-on-scroll utility (JS toggles .is-visible; selector targets the
   data-reveal attribute directly since the element already carries its
   own class="" — see bss_reveal_attr() in inc/template-tags.php)
   ========================================================================= */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Custom cursor (desktop, pointer:fine, optional via ACF > Motion Settings) */
body.bss-custom-cursor, body.bss-custom-cursor a, body.bss-custom-cursor button { cursor: none; }
.bss-cursor-dot, .bss-cursor-ring { position: fixed; left: 0; top: 0; border-radius: 50%; pointer-events: none; will-change: transform; }
.bss-cursor-dot { width: 7px; height: 7px; background: var(--bss-primary); z-index: 99999; transform: translate(-100px,-100px) translate(-50%,-50%); }
.bss-cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(28,155,214,0.55); z-index: 99998; transform: translate(-100px,-100px) translate(-50%,-50%); transition: width .25s ease,height .25s ease,background .25s ease,border-color .25s ease,box-shadow .25s ease; }
.bss-cursor-ring.is-hot { width: 50px; height: 50px; background: rgba(28,155,214,0.08); border-color: rgba(28,155,214,0.9); box-shadow: 0 0 22px rgba(28,155,214,0.35); }
.bss-cursor-ripple { position: fixed; left: 0; top: 0; width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(28,155,214,0.6); pointer-events: none; z-index: 99997; }

/* WordPress core alignment helpers used inside post/page content */
.alignwide { max-width: 1140px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: none; }
.wp-caption, .wp-block-image { max-width: 100%; }

/* =========================================================================
   GENERIC INNER PAGES (blog, single post, page.php, 404, portfolio archive)
   ========================================================================= */
.bss-page-header {
  background: linear-gradient(180deg,var(--bss-tint) 0%,var(--bss-white) 100%);
  padding: clamp(140px,16vw,164px) 0 clamp(48px,6vw,64px);
  text-align: center;
}
.bss-page-header h1 {
  font-family: var(--bss-font-display); font-weight: 900; font-size: clamp(30px,4.5vw,46px);
  line-height: 1.12; letter-spacing: -0.025em; color: var(--bss-ink); margin: 0 0 12px;
}
.bss-page-header p { font-size: 16.5px; color: rgba(0,0,0,0.55); max-width: 560px; margin: 0 auto; }

.bss-content-wrap { padding: clamp(56px,8vw,96px) 0; background: var(--bss-white); }
.bss-content-narrow { max-width: 760px; margin: 0 auto; padding: 0 clamp(20px,4vw,32px); }

.bss-entry-content { font-size: 16.5px; line-height: 1.8; color: rgba(0,0,0,0.68); }
.bss-entry-content h2 { font-family: var(--bss-font-display); font-weight: 800; font-size: 28px; color: var(--bss-ink); margin: 40px 0 16px; }
.bss-entry-content h3 { font-family: var(--bss-font-display); font-weight: 700; font-size: 22px; color: var(--bss-ink); margin: 32px 0 14px; }
.bss-entry-content p { margin: 0 0 20px; }
.bss-entry-content a { color: var(--bss-primary); text-decoration: underline; }
.bss-entry-content img { border-radius: 16px; margin: 12px 0; }
.bss-entry-content ul, .bss-entry-content ol { margin: 0 0 20px; padding-left: 22px; }
.bss-entry-content blockquote { border-left: 3px solid var(--bss-accent); margin: 24px 0; padding: 4px 0 4px 20px; color: rgba(0,0,0,0.55); font-style: italic; }

.bss-post-meta { font-size: 13px; font-weight: 700; color: rgba(0,0,0,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.bss-post-meta a { color: var(--bss-primary); text-decoration: none; }

.bss-blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(300px,100%),1fr)); gap: 26px; max-width: var(--bss-container); margin: 0 auto; padding: 0 clamp(20px,4vw,32px); }

.bss-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 48px; }
.bss-pagination a, .bss-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 100px; border: 1px solid rgba(14,116,188,0.15); text-decoration: none; color: var(--bss-ink); font-weight: 700; font-size: 14px; }
.bss-pagination .current { background: var(--bss-grad); color: var(--bss-white); border-color: transparent; }
.bss-pagination a:hover { border-color: var(--bss-primary); color: var(--bss-primary); }

.bss-404 { padding: clamp(140px,16vw,164px) 0 clamp(96px,10vw,120px); text-align: center; }
.bss-404__code { font-family: var(--bss-font-display); font-weight: 900; font-size: clamp(80px,14vw,140px); line-height: 1; background: var(--bss-grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 8px; }
.bss-404 h1 { font-family: var(--bss-font-display); font-weight: 800; font-size: clamp(24px,3vw,32px); margin: 0 0 14px; }
.bss-404 p { color: rgba(0,0,0,0.55); font-size: 16px; margin: 0 0 32px; }

.bss-comments { max-width: 760px; margin: 0 auto; padding: 0 clamp(20px,4vw,32px) 80px; }
.bss-comments .comment-list { list-style: none; margin: 0; padding: 0; }
.bss-comments .comment-body { background: var(--bss-soft); border-radius: 16px; padding: 22px 24px; margin-bottom: 16px; }
.bss-comments .comment-form input[type="text"],
.bss-comments .comment-form input[type="email"],
.bss-comments .comment-form input[type="url"],
.bss-comments .comment-form textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.15);
  font-family: var(--bss-font-body); font-size: 15px; margin-bottom: 14px;
}
.bss-comments .comment-form textarea { min-height: 120px; }
.bss-comments .comment-form .submit { background: var(--bss-grad); color: var(--bss-white); border: none; border-radius: 100px; padding: 13px 28px; font-weight: 700; cursor: pointer; }

.bss-sidebar-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; max-width: var(--bss-container); margin: 0 auto; padding: 0 clamp(20px,4vw,32px); align-items: start; }
.bss-widget { background: var(--bss-soft); border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.bss-widget__title { font-family: var(--bss-font-display); font-weight: 700; font-size: 16px; margin: 0 0 14px; }

@media (max-width: 860px) {
  .bss-sidebar-layout { grid-template-columns: 1fr; }
}
