/* ============================================================
   SLASHIES THEME — main.css
   ============================================================ */

/* ── 1. Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-mono: 'IBM Plex Mono', monospace;
  --font-sans: 'IBM Plex Sans', sans-serif;
  --bg: #f7f7f9;
  --fg: #0f0f10;
  --fg-muted: #6b6b78;
  --fg-subtle: #a1a1aa;
  --surface: #ffffff;
  --surface-2: #ececf0;
  --border-soft: rgba(0,0,0,0.08);
  --violet-gradient: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  --violet-50: #f5f3ff; --violet-100: #ede9fe; --violet-200: #ddd6fe;
  --violet-600: #8b5cf6; --violet-700: #7c3aed;
  --indigo-600: #6366f1;
  --purple-600: #a855f7;
  --yellow-400: #facc15; --yellow-500: #eab308;
  --neutral-50: #fafafa;  --neutral-100: #f5f5f5; --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4; --neutral-400: #a3a3a3; --neutral-500: #737373;
  --neutral-600: #525252; --neutral-700: #404040; --neutral-800: #262626;
  --neutral-900: #171717;
  --font: var(--font-mono);
  --radius-sm: 0.375rem; --radius-md: 0.5rem; --radius-lg: 0.625rem;
  --radius-xl: 0.75rem;  --radius-2xl: 1rem;   --radius-3xl: 1.5rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0/.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0/.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0/.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0/.1);
  --container-max: 1280px;
  --transition: 200ms ease;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--fg); line-height: 1.5; }
.site-main { overflow-x: clip; }

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 500; line-height: 1.15; }
h2 { font-size: clamp(1.875rem, 4vw, 3rem);   font-weight: 500; line-height: 1.2; }
h3 { font-size: 1.5rem;  font-weight: 500; line-height: 1.3; }
h4 { font-size: 1.25rem; font-weight: 500; line-height: 1.4; }
p  { font-size: 1rem;    line-height: 1.6; }

/* ── 2. Utilities ────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(1.1rem, 2.8vw, 2.4rem); }
@media (min-width: 1024px) { .container { padding: 0 2.25rem; } }
.section   { padding: 5rem 0; }
.pt-32     { padding-top: 8rem; }
.pb-12     { padding-bottom: 3rem; }
.pb-20     { padding-bottom: 5rem; }
.py-20     { padding: 5rem 0; }
.text-center { text-align: center; }
.text-white  { color: #fff; }
.text-violet { color: var(--violet-600); }
.text-neutral-300 { color: var(--neutral-300); }
.text-neutral-400 { color: var(--neutral-400); }
.text-neutral-600 { color: var(--neutral-600); }
.text-violet-100  { color: #ede9fe; }
.text-violet-200  { color: var(--violet-200); }
.text-sm   { font-size: 0.875rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; line-height: 1.3; }
.text-8xl  { font-size: 6rem; font-weight: 700; }
.font-medium { font-weight: 500; }
.leading-relaxed { line-height: 1.7; }
.lead  { font-size: 1.25rem; color: var(--neutral-600); line-height: 1.7; margin-top: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2  { margin-top: 0.5rem; }
.mt-3  { margin-top: 0.75rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-3  { margin-bottom: 0.75rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.flex  { display: flex; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.items-end    { align-items: flex-end; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.justify-center { justify-content: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.inline-flex { display: inline-flex; align-items: center; }

.bg-neutral-50  { background-color: var(--neutral-50); }
.bg-neutral-900 { background-color: var(--neutral-900); }
.bg-gradient-violet-indigo { background: linear-gradient(135deg, var(--violet-50) 0%, #eef2ff 100%); }
.bg-gradient-violet-indigo-solid { background: linear-gradient(135deg, var(--violet-600) 0%, var(--indigo-600) 100%); }
.gradient-violet-indigo { background: linear-gradient(135deg, var(--violet-600) 0%, var(--indigo-600) 100%); }
.bg-gradient-violet-light { background: linear-gradient(135deg, var(--violet-50) 0%, #eef2ff 100%); border: 2px solid var(--violet-200); }

/* ── 3. Grid Layouts ─────────────────────────────────────── */
.grid-2, .grid-3, .grid-4, .grid-5 { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-5 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ── 4. Countdown Banner ─────────────────────────────────── */
.countdown-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(90deg, var(--violet-600), var(--purple-600), var(--indigo-600));
  color: #fff; padding: 0.5rem 1rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  transition: transform .3s ease, opacity .3s ease;
}
.countdown-banner.dismissed { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.countdown-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.countdown-content { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.countdown-text  { font-size: 0.875rem; }
.countdown-timer { font-size: 0.875rem; font-weight: 600; background: rgba(255,255,255,.2); padding: .125rem .5rem; border-radius: var(--radius-full); min-width: 7.5rem; text-align: center; }
.countdown-btn   { font-size: 0.75rem; padding: .375rem 1rem; background: rgba(255,255,255,.2); border-radius: var(--radius-full); white-space: nowrap; transition: background var(--transition); display: inline-flex; align-items: center; justify-content: center; line-height: 1.1; min-height: 2rem; text-align: center; }
.countdown-btn:hover { background: rgba(255,255,255,.35); }
.countdown-close { padding: .25rem; opacity: .7; margin-left: .5rem; }
.countdown-close:hover { opacity: 1; }

/* ── 5. Global Scroll Progress ───────────────────────────── */
.site-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 140;
  background: rgba(255,255,255,.12);
  pointer-events: none;
}
.site-scroll-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--violet-600), var(--indigo-600));
  box-shadow: 0 0 18px rgba(139,92,246,.45);
}

/* ── 6. Header / Nav ─────────────────────────────────────── */
.site-header {
  position: fixed; left: 50%; transform: translateX(-50%); z-index: 40;
  width: 95%; max-width: var(--container-max);
  top: 0; transition: top .3s ease;
  padding-top: .95rem;
}
.site-header.scrolled { transform: translateX(-50%); }
.site-header.has-banner { top: 0; }
.site-header.has-context { padding-top: 4.45rem; }
.site-header.banner-hidden { top: 1rem !important; }
.header-context-pill {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .95rem .6rem;
  border-radius: 0 0 1.1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.86);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  font-size: .74rem;
  color: var(--neutral-600);
  max-width: min(100% - 2rem, 32rem);
  justify-content: center;
  text-align: center;
  border-top: 0;
}
.header-context-home {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: .8rem;
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.header-context-home:hover { transform: translateY(1px) scale(1.04); opacity: .95; }
.header-context-home svg { width: 18px; height: 18px; }
.header-context-text { white-space: nowrap; pointer-events: none; }
.header-nav {
  background: rgba(255,255,255,.7); backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  position: relative;
  z-index: 1;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem; padding: 0 1.5rem 0 1.5rem;
}
.header-links { display: none; align-items: center; gap: 1.15rem; }
@media (min-width: 1024px) { .header-links { display: flex; } }

/* Logo text fallback */
.slashies-logo-text { font-size: 1.125rem; font-weight: 600; color: var(--neutral-900); }
.slashies-logo-text .logo-slash { color: var(--violet-600); }
.custom-logo-link img { height: 2rem; width: auto; }
.header-logo .custom-logo-link img,
.header-logo img.custom-logo { height: 2.28rem; width: auto; }

.nav-link { font-size: 0.875rem; color: var(--neutral-600); transition: color var(--transition), transform .22s ease; position: relative; display: inline-flex; align-items: center; white-space: nowrap; padding-left: .55rem; }
.nav-link:hover, .nav-link.active { color: var(--neutral-900); }
.nav-link:hover { transform: translateY(-2px); }
.nav-link.active { font-weight: 500; }
.nav-link-label { display: inline-flex; align-items: center; }
.nav-slash {
  color: var(--violet-600);
  font-weight: 500;
  opacity: 0;
  transform: translateX(-3px);
  margin-right: .22rem;
  transition: opacity .22s ease, transform .22s ease;
  position: static;
  display: inline-block;
  width: .45rem;
  pointer-events: none;
}
.nav-link:hover .nav-slash,
.nav-link.active .nav-slash { opacity: 1; transform: translateX(0); }

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  padding: .5rem 1.5rem; background: var(--neutral-900); color: #fff;
  border-radius: var(--radius-full); font-size: 0.875rem;
  overflow: visible;
  transition: background var(--transition), transform .2s, box-shadow .2s ease;
}
.btn-contact::after {
  content: "";
  position: absolute;
  left: .55rem;
  right: .55rem;
  bottom: -.62rem;
  height: 48%;
  z-index: -2;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(139,92,246,.55), rgba(99,102,241,.45));
  filter: blur(18px);
  opacity: 0;
  transform: translateY(12px) scale(.86);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
.btn-contact:hover { background: var(--neutral-700); transform: translateY(-1px) scale(1.04); box-shadow: 0 16px 28px rgba(15,15,16,.12); }
.btn-contact:hover::after { opacity: 1; transform: translateY(6px) scale(1); }

.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: .6rem;
  margin-bottom: -.6rem;
}
.nav-item-dropdown::after {
  content: "";
  position: absolute;
  top: calc(100% - .1rem);
  left: 50%;
  width: max(100%, 14rem);
  height: .9rem;
  transform: translateX(-50%);
  pointer-events: none;
}
.nav-item-dropdown.has-sections[open]::after {
  pointer-events: auto;
}
.nav-item-dropdown > summary {
  list-style: none;
}
.nav-item-dropdown > summary::-webkit-details-marker {
  display: none;
}
.nav-link-dropdown-toggle,
.btn-contact--dropdown {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.nav-link-dropdown-toggle {
  gap: .18rem;
}
.btn-contact--dropdown {
  gap: .42rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-width: 10.75rem;
  justify-items: center;
}
.btn-contact--dropdown::before {
  content: "";
  width: .82rem;
  height: .82rem;
  display: block;
}
.btn-contact--dropdown .nav-link-label {
  justify-self: center;
  text-align: center;
}
.btn-contact--dropdown .nav-dropdown-chevron {
  justify-self: end;
}
.nav-dropdown-chevron {
  width: .82rem;
  height: .82rem;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .22s ease, transform .22s ease;
}
.nav-item-dropdown.has-sections .nav-dropdown-chevron {
  opacity: .72;
  transform: scale(1);
}
.nav-item-dropdown[open].has-sections .nav-dropdown-chevron {
  opacity: 1;
  transform: rotate(180deg);
}
.nav-item-dropdown .section-nav-menu {
  position: absolute;
  top: calc(100% + .34rem);
  left: 50%;
  z-index: 8;
  min-width: 13rem;
  padding: .65rem;
  border-radius: 1.15rem;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 22px 48px rgba(15,15,16,.14);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, .6rem);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.nav-item-dropdown--contact .section-nav-menu {
  left: auto;
  right: 0;
  transform: translateY(.6rem);
}
.nav-item-dropdown--contact::after {
  left: auto;
  right: 0;
  width: max(100%, 12rem);
  transform: none;
}
.nav-item-dropdown.has-sections[open] .section-nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-item-dropdown--contact.has-sections[open] .section-nav-menu {
  transform: translateY(0);
}
.section-nav-item {
  display: block;
  width: 100%;
  padding: .65rem .8rem;
  border-radius: .85rem;
  color: var(--neutral-700);
  font-size: .88rem;
  font-weight: 400;
  transition: background var(--transition), color var(--transition), transform .18s ease;
}
.section-nav-item:hover {
  background: rgba(139,92,246,.08);
  color: var(--neutral-900);
  transform: translateX(2px);
}
.section-nav-item.is-active {
  background: linear-gradient(135deg, rgba(139,92,246,.18), rgba(99,102,241,.16));
  color: var(--neutral-900);
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(139,92,246,.18);
}

/* Mobile toggle */
.mobile-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 999px;
}
.mobile-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 1.6rem;
  height: 2.5px;
  background: var(--neutral-900);
  border-radius: 999px;
  transform: translateX(-50%);
  transform-origin: center;
  backface-visibility: hidden;
  transition: top .28s ease, bottom .28s ease, transform .28s ease, opacity .18s ease;
}
.mobile-toggle span:nth-child(1) { top: .82rem; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translate(-50%, -50%); }
.mobile-toggle span:nth-child(3) { bottom: .82rem; }
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { top: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: translate(-50%, -50%) scale(.8); }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { bottom: auto; top: 50%; transform: translate(-50%, -50%) rotate(-45deg); }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-nav {
  position: absolute; top: calc(100% + .5rem); left: 0; right: 0;
  background: rgba(255,255,255,.82); backdrop-filter: blur(30px) saturate(220%); -webkit-backdrop-filter: blur(30px) saturate(220%);
  border-radius: var(--radius-3xl); border: 1px solid rgba(255,255,255,.48);
  box-shadow: 0 24px 46px rgba(15,15,16,.18); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  overflow: hidden;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-link { font-size: 1rem; color: var(--neutral-600); transition: color var(--transition); }
.mobile-link:hover { color: var(--neutral-900); }
.mobile-link.active {
  color: var(--neutral-900);
  font-weight: 500;
}
.mobile-section-nav {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: .25rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(15,15,16,.08);
}
.mobile-section-nav-title {
  margin: 0;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--neutral-500);
}
.mobile-section-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.mobile-section-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(139,92,246,.08);
  color: var(--neutral-800);
  border: 1px solid rgba(139,92,246,.14);
  font-size: .875rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow .2s ease, transform .2s ease;
}
.mobile-section-nav-link:hover {
  transform: translateY(-1px);
  background: rgba(139,92,246,.12);
}
.mobile-section-nav-link.is-active {
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 24px rgba(79,70,229,.22);
}
.mobile-contact {
  align-self: flex-start;
  width: min(100%, 12.5rem);
  text-align: center;
  padding: .625rem 1.5rem;
  margin-top: .5rem;
}
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }

@media (max-width: 1023px) {
  body.mobile-menu-open {
    overflow: hidden;
  }
  body.mobile-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 35;
    background: rgba(244,244,248,.34);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    pointer-events: none;
  }
}

/* ── 6. Buttons ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 2rem; background: var(--neutral-900); color: #fff;
  border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500;
  transition: background var(--transition), transform .2s; white-space: nowrap;
}
.btn-primary:hover { background: var(--neutral-700); transform: scale(1.03); }
.btn-primary,
a.btn-primary,
.btn-contact,
a.btn-contact { color: #fff !important; }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 2rem; border: 2px solid var(--neutral-300); color: var(--neutral-900);
  border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500;
  transition: border-color var(--transition), background var(--transition); white-space: nowrap;
}
.btn-outline:hover { border-color: var(--neutral-900); background: var(--neutral-50); }
a.btn-outline { color: var(--neutral-900); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  padding: .75rem 1.5rem; border: 2px solid var(--neutral-300); color: var(--neutral-900);
  border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500;
  transition: all var(--transition); white-space: nowrap; width: 100%;
}
.btn-outline-dark:hover { border-color: var(--neutral-900); }

.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 2rem; background: #fff; color: var(--neutral-900);
  border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500;
  transition: background var(--transition), transform .2s; white-space: nowrap;
}
.btn-white:hover { background: var(--neutral-100); transform: scale(1.03); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  padding: .75rem 2rem; border: 2px solid rgba(255,255,255,.7); color: #fff;
  border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500;
  transition: all var(--transition); white-space: nowrap;
}
.btn-outline-white:hover { background: #fff; color: var(--neutral-900); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 2rem; border: 2px solid var(--neutral-200); color: var(--neutral-700);
  border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500;
  transition: all var(--transition); white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--neutral-900); }

.btn-zapytaj {
  padding: .375rem 1rem; background: var(--violet-600); color: #fff;
  border-radius: var(--radius-full); font-size: 0.875rem; white-space: nowrap;
  transition: background var(--transition); flex-shrink: 0;
}
.btn-zapytaj:hover { background: var(--violet-700); }

/* ── 7. Page Hero ────────────────────────────────────────── */
.page-hero { max-width: 58rem; margin-left: auto; margin-right: auto; text-align: center; }
.page-hero h1 { margin-bottom: 1.5rem; }
.page-hero p  { font-size: 1.5rem; color: var(--neutral-600); line-height: 1.6; }
.hero-h1 { margin-bottom: 1.5rem; }
.hero-lead { font-size: 1.25rem; color: var(--neutral-600); line-height: 1.7; margin-top: 1rem; max-width: 36rem; }
.page-hero .hero-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
  text-align: center;
  font-size: clamp(1.1rem, 2.1vw, 1.4rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  transition: gap var(--transition), color var(--transition), opacity .2s ease;
}
.hero-secondary-link:hover {
  color: #fff;
  gap: .8rem;
}
.hero-grid  { display: grid; gap: 2rem; align-items: end; min-height: inherit; }

/* ── 8. Section Header ───────────────────────────────────── */
.section-header { text-align: center; margin: 0 auto 4rem; max-width: 58rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.25rem; color: var(--neutral-600); }
.section-header-row { display: flex; flex-direction: column; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; margin: 0 auto 4rem; max-width: 58rem; text-align: center; }
.section-header-row h2 { margin-bottom: .5rem; }
.section-header-row p  { font-size: 1.25rem; color: var(--neutral-600); }

.link-arrow { display: none; align-items: center; gap: .5rem; color: var(--violet-600); font-size: 0.875rem; white-space: nowrap; transition: gap var(--transition); }
.link-arrow:hover { gap: 1rem; }
@media (min-width: 768px) { .link-arrow { display: flex; } }

/* ── 9. Badge ────────────────────────────────────────────── */
.badge-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; background: var(--violet-50); color: var(--violet-700);
  border-radius: var(--radius-full); font-size: 0.875rem; margin-bottom: 1.5rem;
}
.badge-pill svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  overflow: visible;
}

/* ── 10. Animated Text / Gradient ───────────────────────── */
.animated-words { color: var(--violet-600); display: inline-block; transition: opacity .3s, transform .3s; }
.animated-word-wrap { white-space: nowrap; display: inline-block; }
.animated-words.fade-out { opacity: 0; transform: translateY(-8px); }
.animated-words.fade-in  { opacity: 1; transform: translateY(0); }

.gradient-text {
  background: linear-gradient(90deg, var(--violet-600), var(--indigo-600), var(--purple-600));
  background-size: 200% auto; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradient-shift 5s linear infinite;
}
@keyframes gradient-shift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-highlight,
.hero-highlight.gradient-text,
.gradient-text.hero-highlight {
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  color: var(--violet-600) !important;
}

/* ── 11. Soap Bubbles / Particles Canvas ─────────────────── */
.soap-bubbles-canvas,
.particles-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.section-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.section-hero-shell {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
}
.section-hero .hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: inherit;
}
.hero-bg-media,
.hero-bg-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg-media {
  z-index: -2;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
}
.hero-bg-overlay {
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(8, 8, 14, 0.82) 0%, rgba(12, 12, 18, 0.7) 42%, rgba(12, 12, 18, 0.56) 68%, rgba(12, 12, 18, 0.66) 100%),
    linear-gradient(180deg, rgba(8, 8, 14, 0.28) 0%, rgba(8, 8, 14, 0.42) 100%);
}
.hero-content {
  width: min(100%, 58rem);
  margin: auto 0;
  padding-top: clamp(9rem, 18vh, 12rem);
  padding-bottom: clamp(4rem, 10vh, 6rem);
  padding-left: clamp(1.5rem, 4.2vw, 4rem);
  padding-right: clamp(1.5rem, 4.2vw, 4rem);
}
.section-hero .badge-pill {
  background: rgba(255,255,255,.08);
  color: #d9cbff;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
}
.section-hero .hero-h1 {
  color: #fff;
  text-shadow: 0 10px 40px rgba(0,0,0,.18);
}
.section-hero .hero-highlight,
.section-hero .animated-words {
  color: #9f7aea !important;
}
.section-hero .hero-lead {
  color: rgba(255,255,255,.82);
  max-width: 46rem;
}
.section-hero .btn-white,
.section-hero .btn-outline-white {
  box-shadow: 0 12px 34px rgba(0,0,0,.15);
}
.hero-stats-band {
  background: linear-gradient(135deg, rgba(124,58,237,.98), rgba(79,70,229,.98));
  color: #fff;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.hero-stat {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: var(--radius-2xl);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 12px 30px rgba(15,15,16,.12);
}
.hero-stat-number {
  display: block;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: .55rem;
}
.hero-stat-label {
  display: block;
  font-size: .92rem;
  color: rgba(255,255,255,.86);
}
@media (min-width: 768px) {
  .hero-stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1023px) {
  .site-header { padding-top: .5rem; }
  .site-header.has-context { padding-top: .5rem; }
  .header-context-pill { display: none; }
  .section-hero,
  .section-hero-shell {
    min-height: auto;
  }
  .hero-content {
    width: 100%;
    padding-top: clamp(7.25rem, 16vh, 9rem);
    padding-bottom: 3.25rem;
    padding-left: .75rem;
    padding-right: .75rem;
  }
}

/* ── 12. Service Cards ───────────────────────────────────── */
.service-card {
  padding: 2rem; background: #fff; border: 1px solid var(--neutral-200);
  border-radius: var(--radius-2xl); transition: border-color var(--transition), box-shadow var(--transition), transform .3s;
}
.service-card:hover { border-color: var(--violet-600); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card h3 { font-size: 1.25rem; margin: 1rem 0 .75rem; }
.service-card p  { font-size: 0.875rem; color: var(--neutral-600); line-height: 1.6; }
.service-icon { width: 3rem; height: 3rem; background: linear-gradient(135deg,var(--violet-50),#eef2ff); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; color: var(--violet-600); }
.service-link { display: inline-flex; align-items: center; gap: .375rem; margin-top: 1rem; font-size: 0.875rem; color: var(--violet-600); transition: gap var(--transition); }
.service-link:hover { gap: .75rem; }

/* ── 13. Feature Cards (3 filary) ───────────────────────── */
.card-feature {
  padding: 2rem; background: #fff; border-radius: var(--radius-2xl);
  transition: transform .3s, box-shadow .3s; cursor: default;
}
.card-feature:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.card-feature h3 { font-size: 1.5rem; margin: 1.5rem 0 1rem; }
.card-feature p  { color: var(--neutral-600); line-height: 1.7; }
.card-hover-violet { transition: color var(--transition); }
.card-hover-violet:hover, .card-feature:hover .card-hover-violet { color: var(--violet-600); }
.gradient-icon {
  width: 4rem; height: 4rem;
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  border-radius: var(--radius-2xl); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: transform .3s, rotate .3s;
}
.card-feature:hover .gradient-icon { transform: scale(1.1) rotate(5deg); }

/* ── 14. Case Study Cards ────────────────────────────────── */
.case-card { border-radius: var(--radius-2xl); overflow: hidden; background: #fff; border: 1px solid var(--neutral-200); transition: transform .3s, box-shadow .3s; }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.case-card-link { display: block; color: inherit; text-decoration: none; }
.case-img { aspect-ratio: 4/3; overflow: hidden; }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.case-card:hover .case-img img { transform: scale(1.04); }
.case-body { padding: 1.5rem; }
.case-cat  { font-size: 0.75rem; font-weight: 600; color: var(--violet-600); text-transform: uppercase; letter-spacing: .05em; }
.case-body h3 { margin: .5rem 0 .75rem; font-size: 1.125rem; }
.case-summary {
  margin-bottom: .95rem;
  font-size: .92rem;
  color: var(--neutral-600);
  line-height: 1.65;
}
.case-tags { display: flex; flex-wrap: wrap; gap: .375rem; }
.tag { font-size: 0.75rem; padding: .25rem .625rem; background: var(--neutral-100); border-radius: var(--radius-full); color: var(--neutral-600); }

/* ── 15. Segment / For Whom ─────────────────────────────── */
.segment-card { text-align: center; transition: transform .3s; }
.segment-card:hover { transform: translateY(-8px); }
.segment-icon {
  width: 7rem; height: 7rem;
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  border-radius: 1.5rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; box-shadow: var(--shadow-xl);
  transition: transform .3s, box-shadow .3s;
}
.segment-card:hover .segment-icon { transform: scale(1.1); box-shadow: 0 20px 40px rgba(139,92,246,.4); }
.segment-icon svg { color: #fff; }
.segment-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.segment-card p  { color: var(--neutral-600); }

/* ── 16. Training Section ────────────────────────────────── */
.training-list  { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.training-item  { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.training-check { width: 1.5rem; height: 1.5rem; background: var(--violet-600); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .75rem; flex-shrink: 0; }
.training-img   { border-radius: var(--radius-3xl); overflow: hidden; aspect-ratio: 1/1; }
.training-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── 17. Process Timeline ────────────────────────────────── */
.process-timeline { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px)  { .process-timeline { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .process-timeline { grid-template-columns: repeat(4,1fr); } }
.process-step { padding: 1.5rem; background: #fff; border-radius: var(--radius-2xl); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.process-step.bg-white { background: #fff; }
.process-num { width: 3rem; height: 3rem; background: linear-gradient(135deg, var(--violet-600), var(--indigo-600)); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; }
.process-step h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.process-step p  { font-size: 0.875rem; color: var(--neutral-600); line-height: 1.6; }
.process-mini { }
.process-mini-num { width: 2.5rem; height: 2.5rem; background: linear-gradient(135deg, var(--violet-600), var(--indigo-600)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; margin-bottom: 1rem; }
.process-mini h3 { font-size: 1.125rem; margin-bottom: .375rem; }
.process-mini p  { font-size: 0.875rem; color: var(--neutral-600); }

/* Process 5 cols */
.grid-5 .process-step { }

/* ── 18. Testimonial Cards ───────────────────────────────── */
.testimonial-card {
  padding: 2rem; background: #fff; border: 2px solid var(--neutral-200);
  border-radius: var(--radius-2xl); transition: border-color var(--transition), transform .3s;
}
.testimonial-card:hover { border-color: var(--violet-600); transform: translateY(-4px); }
.testimonial-quote { font-size: 1.125rem; color: var(--neutral-700); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 2.5rem; height: 2.5rem; background: linear-gradient(135deg,var(--violet-600),var(--indigo-600)); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.875rem; }
.author-role { font-size: 0.75rem; color: var(--neutral-500); }

/* ── 19. Stats ───────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-number { font-size: 3.75rem; font-weight: 700; margin-bottom: .5rem; }
.stats-grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (min-width: 768px) { .stats-grid-4 { grid-template-columns: repeat(4,1fr); } }
.stat-card { padding: 1.5rem; }
.stat-card .stat-number { font-size: 2.5rem; }

/* ── 20. Value Cards ─────────────────────────────────────── */
.value-card {
  text-align: center; padding: 1.5rem; background: #fff;
  border: 2px solid var(--neutral-100); border-radius: var(--radius-2xl);
  transition: border-color var(--transition), transform .3s, box-shadow .3s;
}
.value-card:hover { border-color: var(--violet-600); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.value-icon { width: 4rem; height: 4rem; background: linear-gradient(135deg,var(--violet-600),var(--indigo-600)); border-radius: var(--radius-2xl); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; transition: transform .3s; }
.value-card:hover .value-icon { transform: scale(1.1) rotate(5deg); }
.value-card h3 { font-size: 1.25rem; margin-bottom: .5rem; transition: color var(--transition); }
.value-card:hover h3 { color: var(--violet-600); }
.value-card p { font-size: 0.875rem; color: var(--neutral-600); }
.grid-4 { }

/* ── 21. Newsletter ──────────────────────────────────────── */
.newsletter-wrap { background: linear-gradient(135deg, var(--neutral-900), var(--neutral-800)); border: 1px solid var(--neutral-700); border-radius: var(--radius-3xl); padding: 4rem; overflow: hidden; position: relative; }
.newsletter-inner { position: relative; z-index: 1; }
.newsletter-lightning { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
#lightning-canvas { width: 100%; height: 100%; }
.newsletter-content { max-width: 28rem; margin: 0 auto; text-align: center; }
.newsletter-icon { width: 3rem; height: 3rem; background: linear-gradient(135deg,var(--yellow-400),var(--yellow-500)); border-radius: var(--radius-2xl); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.newsletter-content h3 { color: #fff; font-size: 1.5rem; margin-bottom: .5rem; }
.newsletter-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin-top: 1rem;
}
.newsletter-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: .38rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--neutral-200);
  font-size: .75rem;
}
.newsletter-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.newsletter-input-wrap { position: relative; }
.newsletter-mail-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--neutral-500); }
.newsletter-input {
  width: 100%; padding: .875rem 1rem .875rem 3rem;
  background: var(--neutral-800); border: 1px solid var(--neutral-700); color: #fff;
  border-radius: var(--radius-xl); font-size: 1rem; transition: border-color var(--transition), box-shadow var(--transition);
}
.newsletter-input::placeholder { color: var(--neutral-500); }
.newsletter-input:focus { outline: none; border-color: var(--yellow-500); box-shadow: 0 0 0 3px rgba(234,179,8,.2); }
.btn-newsletter {
  width: 100%; padding: .875rem 1.5rem;
  background: linear-gradient(90deg,var(--yellow-400),var(--yellow-500)); color: var(--neutral-900);
  border-radius: var(--radius-xl); font-weight: 600; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: opacity var(--transition), transform .2s;
}
.btn-newsletter:hover { opacity: .9; transform: scale(1.02); }
.newsletter-msg {
  margin-top: .9rem;
  border-radius: var(--radius-xl);
  padding: .8rem .95rem;
  font-size: .875rem;
  line-height: 1.45;
}
.newsletter-msg.success {
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.26);
  color: #dcfce7;
}
.newsletter-msg.error {
  background: rgba(248,113,113,.14);
  border: 1px solid rgba(248,113,113,.24);
  color: #fecaca;
}
.newsletter-disclaimer { font-size: 0.75rem; color: var(--neutral-400); margin-top: 1rem; }

/* ── 22. CTA Blocks ──────────────────────────────────────── */
.cta-block {
  border-radius: var(--radius-3xl); padding: 3rem;
  text-align: center; position: relative; overflow: hidden;
}
@media (min-width: 1024px) { .cta-block { padding: 5rem; } }
.cta-block h2 { font-size: clamp(1.875rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.cta-block p  { font-size: 1.25rem; max-width: 40rem; margin: 0 auto 2rem; }
.cta-actions  { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── 23. Info Cards (Contact) ────────────────────────────── */
.info-card { padding: 1.5rem; background: #fff; border: 2px solid var(--neutral-200); border-radius: var(--radius-2xl); transition: border-color var(--transition), transform .3s; }
.info-card:hover { border-color: var(--violet-600); transform: translateY(-4px); }
.info-icon { width: 3rem; height: 3rem; background: linear-gradient(135deg,var(--violet-600),var(--indigo-600)); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 1rem; }
.info-card h3 { font-size: 1.125rem; font-weight: 500; margin-bottom: .5rem; }
.info-card a, .info-card p { color: var(--neutral-600); font-size: 0.9375rem; transition: color var(--transition); }
.info-card a:hover { color: var(--violet-600); }
.phone-reveal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .55rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--neutral-300);
  background: #fff;
  color: var(--neutral-800);
  font-size: .875rem;
  transition: all var(--transition);
}
.phone-reveal-btn:hover {
  border-color: var(--violet-600);
  color: var(--violet-600);
  transform: translateY(-1px);
}
.phone-reveal-link {
  display: inline-flex;
  align-items: center;
  margin-top: .4rem;
  color: var(--neutral-800);
  font-weight: 500;
}
.phone-reveal-link.is-visible:hover { color: var(--violet-600); }

/* ── 24. Contact Form ────────────────────────────────────── */
.contact-form-wrap { background: linear-gradient(135deg,var(--violet-50),#eef2ff); border: 2px solid var(--violet-200); border-radius: var(--radius-3xl); padding: 2rem; }
@media (min-width: 1024px) { .contact-form-wrap { padding: 3rem; } }
.response-note {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1rem;
  padding: .55rem .9rem;
  border-radius: var(--radius-full);
  background: rgba(22,163,74,.1);
  border: 1px solid rgba(22,163,74,.22);
  color: #166534;
  font-size: .875rem;
  line-height: 1.35;
}
.response-note--center {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.response-note-dot {
  width: .62rem;
  height: .62rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.16);
  flex-shrink: 0;
}
.response-note-dot--pulse {
  animation: response-dot-pulse 2s ease-in-out infinite;
}
@keyframes response-dot-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(34,197,94,.14);
  }
  50% {
    transform: scale(1.16);
    box-shadow: 0 0 0 8px rgba(34,197,94,.1);
  }
}
.cf7-wrapper .wpcf7-form { max-width: 56rem; margin: 0 auto; }
.cf7-wrapper input[type="text"],
.cf7-wrapper input[type="email"],
.cf7-wrapper input[type="tel"],
.cf7-wrapper textarea,
.cf7-wrapper select {
  width: 100%; padding: .875rem 1rem; border: 1px solid var(--neutral-300);
  border-radius: var(--radius-xl); font-size: 1rem; background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font);
}
.cf7-wrapper input:focus, .cf7-wrapper textarea:focus, .cf7-wrapper select:focus {
  outline: none; border-color: var(--violet-600); box-shadow: 0 0 0 3px rgba(139,92,246,.15);
}
.cf7-wrapper textarea { resize: none; min-height: 12rem; }
.cf7-wrapper .wpcf7-form-control-wrap { display: block; margin-bottom: 1.5rem; }
.cf7-wrapper .wpcf7-submit {
  width: 100%; padding: 1rem 1.5rem;
  background: linear-gradient(90deg,var(--violet-600),var(--indigo-600)); color: #fff;
  border-radius: var(--radius-xl); font-size: 1rem; font-weight: 500; cursor: pointer;
  transition: opacity .2s, transform .2s; box-shadow: 0 4px 15px rgba(139,92,246,.3);
}
.cf7-wrapper .wpcf7-submit:hover { opacity: .9; transform: scale(1.02); }
.cf7-notice { padding: 1rem; background: var(--violet-50); border: 1px solid var(--violet-200); border-radius: var(--radius-xl); color: var(--violet-700); }

.contact-form-wrap--multistep {
  max-width: min(100%, 74rem);
  margin: 0 auto;
}
.contact-direct-cta-shell {
  max-width: min(100%, 74rem);
  margin: 0 auto;
  padding-inline: clamp(1.75rem, 4vw, 4.25rem);
}
.cf7-wrapper--multistep .slashies-form-shell {
  max-width: min(100%, 58rem);
  margin: 0 auto;
}
.cf7-wrapper--multistep .slashies-form-header { display: none; }
.cf7-wrapper--multistep .slashies-progress {
  margin: 0 0 1.5rem;
}
.cf7-wrapper--multistep .slashies-progress-bar {
  height: 10px;
  background: rgba(139,92,246,.12);
}
.cf7-wrapper--multistep .slashies-progress-fill {
  background: linear-gradient(90deg, var(--violet-600), var(--indigo-600));
}
.cf7-wrapper--multistep .slashies-progress-steps {
  margin-top: .85rem;
  font-size: .78rem;
  color: var(--neutral-500);
}
.cf7-wrapper--multistep .slashies-progress-steps span.is-active {
  color: var(--neutral-900);
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-step {
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-2xl);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(15,15,16,.06);
  margin-bottom: 1.5rem;
  scroll-margin-top: 11rem;
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-step h3 {
  font-size: 1.2rem;
  color: var(--neutral-900);
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-step p {
  color: var(--neutral-600);
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-step label {
  font-size: .95rem;
  font-weight: 500;
  color: var(--neutral-700);
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-step .wpcf7-form-control-wrap {
  margin-bottom: 0;
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-step input,
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-step select,
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-step textarea {
  margin-top: .55rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-xl);
  padding: .95rem 1rem;
  background: #fff;
  font-size: .98rem;
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-step input:focus,
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-step select:focus,
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-step textarea:focus {
  outline: none;
  border-color: var(--violet-600);
  box-shadow: 0 0 0 3px rgba(139,92,246,.14);
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-nav {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1.5rem;
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-nav > p {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 0;
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-nav > p:empty {
  display: none;
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-nav button,
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-nav input[type="submit"] {
  width: auto;
  flex: 0 0 auto;
  min-height: 3.25rem;
  padding: .9rem 1.45rem;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 500;
  transition: transform .2s ease, background var(--transition), border-color var(--transition), color var(--transition);
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-next,
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-nav input[type="submit"] {
  background: var(--neutral-900);
  color: #fff;
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-next:hover,
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-nav input[type="submit"]:hover {
  background: var(--neutral-700);
  transform: translateY(-1px);
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-prev {
  background: #fff;
  color: var(--neutral-900);
  border: 2px solid var(--neutral-300) !important;
  margin-right: auto;
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-prev:hover {
  border-color: var(--neutral-900) !important;
  transform: translateY(-1px);
}
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-next,
.cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-nav input[type="submit"] {
  margin-left: auto;
}
.cf7-wrapper--multistep .wpcf7-spinner {
  margin: .5rem 0 0;
}
.cf7-wrapper--multistep .wpcf7-response-output {
  margin: 1rem 0 0 !important;
  border-radius: var(--radius-xl);
  padding: .9rem 1rem !important;
}
.contact-next-steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-next-step {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(99,102,241,.12);
  background: rgba(255,255,255,.68);
}
.contact-next-step strong {
  display: block;
  margin-bottom: .28rem;
  font-size: .95rem;
}
.contact-next-step p {
  font-size: .9rem;
  color: var(--neutral-600);
}
.contact-next-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .contact-next-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── 25. Hours / Social ──────────────────────────────────── */
.card-bordered { padding: 2rem; background: #fff; border: 2px solid var(--neutral-200); border-radius: var(--radius-2xl); transition: border-color var(--transition), transform .3s; }
.card-bordered:hover { border-color: var(--violet-600); transform: translateY(-4px); }
.card-bordered h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 1rem; }
.social-row { display: flex; gap: 1rem; }
.social-box { width: 3.85rem; height: 3.85rem; background: var(--neutral-100); border-radius: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.social-box svg { width: 1.45rem; height: 1.45rem; }
.social-box:hover { background: var(--violet-600); color: #fff; transform: scale(1.1) rotate(5deg); }
.hours-table { display: flex; flex-direction: column; gap: .5rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9375rem; color: var(--neutral-600); }

/* ── 26. CTA Light ───────────────────────────────────────── */
.cta-block-light { background: linear-gradient(135deg, var(--neutral-50), var(--violet-50)); border: 2px solid var(--neutral-200); border-radius: var(--radius-3xl); padding: 3rem; text-align: center; }
@media (min-width: 1024px) { .cta-block-light { padding: 4rem; } }
.cta-block-light h2 { margin-bottom: 1rem; }
.cta-block-light p  { font-size: 1.125rem; color: var(--neutral-600); margin-bottom: 2rem; }

/* ── 27. Portfolio Filter ────────────────────────────────── */
.portfolio-filters { display: flex; flex-wrap: wrap; gap: .75rem; }
.filter-btn { padding: .625rem 1.5rem; border-radius: var(--radius-full); font-size: 0.875rem; background: var(--neutral-100); color: var(--neutral-700); transition: all var(--transition); }
.filter-btn:hover { background: var(--neutral-200); }
.filter-btn.active { background: var(--neutral-900); color: #fff; }
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3,1fr); } }
.portfolio-empty { text-align: center; padding: 5rem 0; color: var(--neutral-500); }
.case-card.hidden { display: none; }
.detail-list { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 1.5rem; }
.detail-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9375rem; border-bottom: 1px solid var(--neutral-200); padding-bottom: .75rem; }
.detail-row dt { color: var(--neutral-500); }
.detail-row dd { margin: 0; text-align: right; font-weight: 500; color: var(--neutral-900); }

/* ── 28. FAQ Accordion ───────────────────────────────────── */
.faq-section-shell {
  max-width: min(100%, 74rem);
  margin: 0 auto;
}
.faq-section-shell--violet {
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--radius-3xl);
  background: linear-gradient(135deg, rgba(245,243,255,.95), rgba(238,242,255,.98));
  border: 1px solid rgba(196,181,253,.36);
  box-shadow: 0 18px 42px rgba(139,92,246,.08);
}
.faq-section-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 2rem; }
.faq-icon { width: 3.25rem; height: 3.25rem; background: linear-gradient(135deg, var(--violet-600), var(--indigo-600)); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 12px 28px rgba(99,102,241,.18); }
.faq-icon svg { width: 1.55rem; height: 1.55rem; }
.faq-section-header h2 { font-size: 1.875rem; }
.accordion { display: flex; flex-direction: column; gap: .75rem; }
.accordion-item { background: #fff; border: 1px solid var(--neutral-200); border-radius: var(--radius-xl); overflow: hidden; }
.accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; text-align: left; font-size: 1rem; font-weight: 500; transition: color var(--transition); }
.accordion-trigger:hover { color: var(--violet-600); }
.accordion-chevron { flex-shrink: 0; transition: transform .3s; }
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  opacity: 0;
  transition: max-height .35s ease, padding .35s ease, opacity .22s ease;
}
.accordion-item.open .accordion-content {
  max-height: 22rem;
  padding: 0 1.5rem 1.25rem;
  opacity: 1;
}
.accordion-content p { color: var(--neutral-600); line-height: 1.7; font-size: 0.9375rem; }

/* ── 29. Pricing Cards ───────────────────────────────────── */
.pricing-card {
  padding: 2rem; background: #fff; border: 2px solid var(--neutral-200);
  border-radius: var(--radius-2xl); position: relative;
  transition: border-color var(--transition), transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.pricing-card:hover { border-color: var(--violet-600); transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pricing-card.highlighted { border-color: var(--violet-600); box-shadow: 0 0 0 4px rgba(139,92,246,.1); }
.pricing-badge { position: absolute; top: -1rem; left: 50%; transform: translateX(-50%); padding: .25rem 1rem; background: var(--violet-600); color: #fff; border-radius: var(--radius-full); font-size: 0.75rem; white-space: nowrap; }
.pricing-card h3  { font-size: 1.5rem; margin-bottom: .5rem; }
.pricing-price    { font-size: 1.875rem; font-weight: 700; color: var(--violet-600); margin: .75rem 0 .25rem; }
.pricing-card > p { font-size: 0.875rem; color: var(--neutral-500); margin-bottom: 1.5rem; }
.pricing-features { display: flex; flex-direction: column; gap: .75rem; flex: 1; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: .625rem; font-size: 0.875rem; color: var(--neutral-600); }
.check-icon { color: var(--violet-600); flex-shrink: 0; font-weight: 700; }
.pricing-cta { display: block; text-align: center; padding: .875rem; border-radius: var(--radius-xl); font-weight: 500; transition: all var(--transition); }

/* ── 30. Workshops ───────────────────────────────────────── */
.workshops-list { display: flex; flex-direction: column; gap: 2rem; }
.workshop-item { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .workshop-item { grid-template-columns: 2fr 1fr; } }
.workshop-header { display: flex; align-items: flex-start; gap: 1rem; }
.workshop-icon-wrap { width: 3rem; height: 3rem; background: linear-gradient(135deg,var(--violet-50),#eef2ff); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }

/* ── 31. Text Content ────────────────────────────────────── */
.text-content { display: flex; flex-direction: column; gap: 1rem; font-size: 1.0625rem; color: var(--neutral-700); line-height: 1.8; }
.card-white { padding: 2rem; background: #fff; border-radius: var(--radius-2xl); box-shadow: var(--shadow-sm); }
.bullet-list { display: flex; flex-direction: column; gap: .5rem; }
.bullet-list li { font-size: 0.9375rem; }
.benefit-list { display: flex; flex-direction: column; gap: .75rem; }
.check-circle { width: 1.5rem; height: 1.5rem; background: linear-gradient(135deg,var(--violet-600),var(--indigo-600)); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }

/* ── 32. Industries / Tools chips ────────────────────────── */
.industries-grid { display: flex; flex-wrap: wrap; gap: .75rem; }
.industry-chip, .tool-chip, .tools-chips .tool-chip {
  padding: 1rem 1.5rem; background: #fff; border: 2px solid var(--neutral-200);
  border-radius: var(--radius-xl); font-weight: 500; transition: all var(--transition);
}
.industry-chip:hover { border-color: var(--violet-600); transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-lg); }
.tool-chip { padding: .5rem 1rem; border-radius: var(--radius-full); font-size: 0.875rem; }
.tools-chips { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.tools-grid { display: flex; flex-wrap: wrap; gap: .625rem; }

/* ── 33. Img rounded ─────────────────────────────────────── */
.img-rounded { border-radius: var(--radius-3xl); overflow: hidden; background: linear-gradient(135deg,var(--violet-100),#e0e7ff); box-shadow: var(--shadow-xl); transition: transform .3s; }
.img-rounded:hover { transform: scale(1.02); }
.img-rounded img { width: 100%; height: 100%; object-fit: cover; }

/* ── 34. Footer ──────────────────────────────────────────── */
.site-footer { background: var(--neutral-50); border-top: 1px solid var(--neutral-100); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo img { height: 2rem; width: auto; margin-bottom: 1rem; }
.footer-desc  { font-size: 0.875rem; color: var(--neutral-600); line-height: 1.7; max-width: 20rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.social-icon   { display: inline-flex; align-items: center; justify-content: center; width: 2.85rem; height: 2.85rem; border-radius: .95rem; color: var(--neutral-600); background: #fff; border: 1px solid var(--neutral-200); transition: color var(--transition), transform .2s ease, border-color var(--transition), box-shadow .2s ease; }
.social-icon:hover { color: var(--neutral-900); transform: translateY(-2px); border-color: rgba(139,92,246,.26); box-shadow: 0 16px 28px rgba(15,15,16,.08); }
.social-icon svg { width: 1.7rem; height: 1.7rem; }
.footer-mail-link { display: inline-flex; margin-top: .9rem; color: var(--neutral-600); font-size: .92rem; transition: color var(--transition); }
.footer-mail-link:hover { color: var(--violet-600); }
.footer-heading { font-size: 0.875rem; font-weight: 600; color: var(--neutral-900); margin-bottom: 1rem; }
.footer-links   { display: flex; flex-direction: column; gap: .75rem; }
.footer-links a { font-size: 0.875rem; color: var(--neutral-600); transition: color var(--transition); }
.footer-links a:hover { color: var(--neutral-900); }
.footer-bottom  { margin-top: 3rem; padding: 2rem 0; border-top: 1px solid var(--neutral-200); text-align: center; }
.footer-bottom p { font-size: 0.875rem; color: var(--neutral-500); }
.footer-logo { display: flex; align-items: center; }

.floating-cta-widget {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .9rem;
  transition: opacity .24s ease, transform .24s ease;
}
.floating-cta-toggle {
  width: 4.15rem;
  height: 4.15rem;
  border-radius: 1.45rem;
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  color: #fff;
  box-shadow: 0 20px 45px rgba(79,70,229,.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: floating-cta-bob 2.4s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-cta-widget.is-hovered .floating-cta-toggle,
.floating-cta-widget.is-open .floating-cta-toggle {
  animation-play-state: paused;
}
.floating-cta-toggle svg { transition: transform .22s ease; }
.floating-cta-toggle:hover,
.floating-cta-widget.is-hovered .floating-cta-toggle,
.floating-cta-widget.is-open .floating-cta-toggle { box-shadow: 0 22px 48px rgba(79,70,229,.34); }
.floating-cta-toggle:hover svg,
.floating-cta-widget.is-hovered .floating-cta-toggle svg,
.floating-cta-widget.is-open .floating-cta-toggle svg { transform: rotate(-12deg) scale(1.08); }
.floating-cta-panel {
  width: min(18rem, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255,255,255,.52);
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: 0 24px 50px rgba(15,15,16,.16);
  opacity: 0;
  transform: translateY(12px) scale(.96);
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}
.floating-cta-widget.is-hovered .floating-cta-panel,
.floating-cta-widget.is-open .floating-cta-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-cta-eyebrow {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--violet-600);
  margin-bottom: .35rem;
}
.floating-cta-panel h3 {
  font-size: 1.05rem;
  margin-bottom: .95rem;
}
.floating-cta-actions {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.floating-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: .8rem 1rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  transition: transform .2s ease, opacity .2s ease, background var(--transition), border-color var(--transition), color var(--transition);
}
.floating-cta-link:hover {
  transform: translateY(-1px);
}
.floating-cta-link-primary {
  background: var(--neutral-900);
  color: #fff;
}
.floating-cta-link-secondary {
  background: #fff;
  color: var(--neutral-900);
  border: 1px solid var(--neutral-300);
}
@keyframes floating-cta-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.section[id],
[data-section-nav-label][id] {
  scroll-margin-top: 9rem;
}

/* ── 35. Scroll Reveal Animations ───────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── 36A. CookieYes refinements ──────────────────────────── */
.cky-consent-container {
  right: 1.5rem !important;
  left: auto !important;
  bottom: 1.5rem !important;
}
.cky-consent-bar,
.cky-preference-center {
  border-radius: var(--radius-2xl) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16) !important;
}
.cky-notice-des,
.cky-preference-content-wrapper {
  margin-bottom: 1rem !important;
}
.cky-notice-btn-wrapper,
.cky-prefrence-btn-wrapper,
.cky-preference-footer-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: .75rem !important;
  margin-top: 1rem !important;
}
.cky-btn,
.cky-btn-customize,
.cky-btn-reject,
.cky-btn-accept {
  margin: 0 !important;
}

/* ── 36. Responsive Tweaks ───────────────────────────────── */
@media (max-width: 767px) {
  .uagb-popup-builder {
    display: none !important;
  }
  .countdown-btn { display: none; }
  .section { padding: 3rem 0; }
  .cta-block { padding: 2rem; }
  .newsletter-wrap { padding: 2rem; }
  .hero-secondary-link {
    font-size: .9rem;
  }
  .workshop-item { grid-template-columns: 1fr; }
  .service-card,
  .case-card {
    margin-inline: .75rem;
  }
  .service-card {
    padding: 1.8rem 1.45rem;
  }
  .case-body {
    padding: 1.55rem 1.35rem 1.4rem;
  }
  .cky-consent-container {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
  }
  .cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-nav button,
  .cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-nav input[type="submit"] {
    width: 100%;
    flex: 1 1 auto;
    margin-left: 0;
    margin-right: 0;
  }
  .cf7-wrapper--multistep .slashies-cf7-multistep-wrap .cf7-nav > p {
    flex-direction: column;
    align-items: stretch;
  }
  .response-note {
    width: 100%;
    text-align: center;
  }
  .contact-next-step {
    padding: .95rem 1rem;
  }
  .floating-cta-widget {
    right: 1rem;
    bottom: 1rem;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
  }
  .floating-cta-widget.is-armed,
  .floating-cta-widget.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .floating-cta-toggle {
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 1.25rem;
  }
}
