/* =============================================================
   WIAKO PRO — Premium enterprise design system
   Palette inspired by leading cybersecurity firms (deep navy +
   electric blue + mint-green accent). Fully original CSS.
   ============================================================= */

:root{
  /* Neutrals */
  --w-white: #ffffff;
  --w-gray-50: #f6f8fc;
  --w-gray-100: #eef2f8;
  --w-gray-200: #dde3ec;
  --w-gray-300: #c4cdd9;
  --w-gray-400: #98a3b5;
  --w-gray-500: #6b7590;
  --w-gray-600: #4a536b;
  --w-gray-700: #2b3347;
  --w-ink: #0b1020;

  /* Navy stack */
  --w-navy-900: #0a0f26;
  --w-navy-800: #0f1533;
  --w-navy-700: #151b3f;
  --w-navy-600: #1c234f;

  /* Brand */
  --w-brand: #3a5bfb;
  --w-brand-600: #2f4ce6;
  --w-brand-400: #6a86ff;
  --w-brand-200: #bfcbff;

  /* Accent green */
  --w-accent: #2ee58e;
  --w-accent-600: #1cc976;

  /* Gradients */
  --w-grad: linear-gradient(135deg, #3a5bfb 0%, #6a86ff 40%, #2ee58e 100%);
  --w-grad-text: linear-gradient(135deg, #6a86ff 0%, #3a5bfb 40%, #2ee58e 100%);
  --w-grad-dark-hero: radial-gradient(120% 80% at 80% 0%, rgba(58,91,251,.25) 0%, rgba(11,16,32,0) 55%),
                      radial-gradient(70% 50% at 10% 100%, rgba(46,229,142,.12) 0%, rgba(11,16,32,0) 60%),
                      linear-gradient(180deg, #0a0f26 0%, #0f1533 100%);

  /* Shadows */
  --w-shadow-sm: 0 1px 2px rgba(11,16,32,.06);
  --w-shadow-md: 0 8px 24px -10px rgba(11,16,32,.15);
  --w-shadow-lg: 0 24px 60px -20px rgba(11,16,32,.22);
  --w-shadow-glow: 0 20px 60px -20px rgba(58,91,251,.35);

  /* Radii */
  --w-r-sm: 8px;
  --w-r-md: 14px;
  --w-r-lg: 20px;
  --w-r-xl: 28px;

  /* Transitions */
  --w-t: 260ms cubic-bezier(.2,.8,.2,1);

  /* Typography */
  --w-font: "Inter", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --w-font-display: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Reset / base ---------- */
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  font-family: var(--w-font) !important;
  color: var(--w-ink) !important;
  background: var(--w-white) !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6{
  font-family: var(--w-font-display) !important;
  letter-spacing: -0.02em;
  font-weight: 800;
}
/* Light-bg sections: dark text */
.wk-feature h2, .wk-feature-card h3,
.wk-process h2, .wk-step h3,
.testimonials h2, .wk-faq h2{ color: var(--w-ink) !important; }
.wk-feature-card p, .wk-feature-card li{ color: var(--w-gray-600) !important; }
.wk-feature .head .subtitle, .wk-process .subtitle,
.testimonials .subtitle, .wk-faq .subtitle{ color: var(--w-gray-500) !important; }
.wk-step p{ color: var(--w-gray-500) !important; }

/* Dark-bg sections: force WHITE titles */
.wk-pagehead h1, .wk-pagehead h2,
.section-dark h2, .section-dark h3,
.wk-cta-final h2,
.glass-card h3{ color: #fff !important; }
.wk-pagehead p, .wk-pagehead .lead,
.section-dark p, .section-dark .subtitle{ color: #c4cfe6 !important; }
.wk-cta-final p{ color: #c4cfe6 !important; }
.glass-card p{ color: #b8c5df !important; }
.wk-pagehead .kicker-top{ color: #7dd3fc !important; }

/* Spacing between ALL legacy sections */
.wk-pagehead{ margin-bottom: 0; }
.wk-feature,
.wk-process,
.section-dark,
.testimonials,
.wk-faq,
.wk-cta-final{
  padding-top: clamp(80px, 10vw, 130px) !important;
  padding-bottom: clamp(80px, 10vw, 130px) !important;
}
img{ max-width: 100%; height: auto; }

::selection{ background: var(--w-brand); color: #fff; }

/* ---------- Skip link ---------- */
.skip-link{
  position: fixed; top: -100px; left: 16px;
  background: var(--w-brand); color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 10000;
  transition: top var(--w-t);
}
.skip-link:focus{ top: 16px; outline: 2px solid var(--w-accent); outline-offset: 2px; }

/* ---------- Header ---------- */
.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.86) !important;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(221, 227, 236, .7) !important;
  padding: 0 !important;
  transition: background var(--w-t), border-color var(--w-t), box-shadow var(--w-t);
}
.header.scrolled{
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 10px 30px -18px rgba(11,16,32,.15);
}
.header-container{
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 18px 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
}
.header .logo img{ height: 48px !important; width: auto !important; display: block; }

.nav-menu{
  display: flex !important;
  align-items: center !important;
  gap: 36px !important;
  background: transparent !important;
}
.nav-menu .nav-item{
  list-style: none;
  position: relative;
}
.nav-menu .nav-item a{
  color: var(--w-gray-700) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  letter-spacing: .01em;
  text-decoration: none;
  padding: 8px 0 !important;
  position: relative;
  transition: color var(--w-t);
}
.nav-menu .nav-item a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--w-grad);
  transition: right var(--w-t);
}
.nav-menu .nav-item a:hover,
.nav-menu .nav-item a[aria-current="page"]{
  color: var(--w-ink) !important;
}
.nav-menu .nav-item a:hover::after,
.nav-menu .nav-item a[aria-current="page"]::after{
  right: 0;
}

.nav-menu .cta,
.cta,
.btn-primary,
.btn.btn-primary,
a.btn-primary{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  gap: 8px !important;
  padding: 13px 24px !important;
  background: var(--w-ink) !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 14.5px !important;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid var(--w-ink) !important;
  box-shadow: 0 8px 20px -10px rgba(11,16,32,.4);
  transition: transform var(--w-t), box-shadow var(--w-t), background var(--w-t);
  cursor: pointer;
}
.nav-menu .cta:hover,
.cta:hover,
.btn-primary:hover,
.btn.btn-primary:hover,
a.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(58,91,251,.45);
  background: var(--w-brand) !important;
  border-color: var(--w-brand) !important;
}

.btn-ghost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: var(--w-ink);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  border: 1px solid var(--w-gray-200);
  transition: all var(--w-t);
}
.btn-ghost:hover{
  border-color: var(--w-ink);
  background: var(--w-gray-50);
}

/* ---------- Hamburger ---------- */
.hamburger{
  display: none !important;
  background: transparent;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger-bar{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--w-ink);
  border-radius: 2px;
  transition: transform var(--w-t), opacity var(--w-t);
}
@media (max-width: 960px){
  .hamburger{ display: flex !important; }
  .nav-menu{
    display: none !important;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 20px 32px !important;
    border-bottom: 1px solid var(--w-gray-200);
    box-shadow: 0 20px 40px -20px rgba(11,16,32,.2);
  }
  .nav-menu.active{
    display: flex !important;
  }
  .nav-menu .nav-item{
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--w-gray-100);
  }
  .nav-menu .cta{
    width: 100%;
    margin-top: 12px;
  }
}

/* ---------- Layout helpers ---------- */
.w-container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.w-section{
  padding: clamp(100px, 14vw, 180px) 0;
}
.w-section-sm{
  padding: clamp(80px, 10vw, 130px) 0;
}

/* ---------- HERO (home) ---------- */
.w-hero{
  position: relative;
  min-height: 92vh;
  padding: 180px 32px 100px;
  background: var(--w-grad-dark-hero);
  color: #f0f2fa;
  overflow: hidden;
  isolation: isolate;
}
.w-hero::before{
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 70%);
  z-index: 0;
}
.w-hero::after{
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  right: -280px; top: -220px;
  background: radial-gradient(circle, rgba(58,91,251,.35) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.w-hero-inner{
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.w-hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bfcbff;
  margin-bottom: 26px;
}
.w-hero-kicker .dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--w-accent);
  box-shadow: 0 0 0 4px rgba(46,229,142,.2), 0 0 14px var(--w-accent);
  animation: wPulse 2.2s ease-in-out infinite;
}
@keyframes wPulse{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: .65; transform: scale(.92); }
}

.w-hero h1{
  font-size: clamp(40px, 5.6vw, 72px) !important;
  line-height: 1.03 !important;
  color: #fff !important;
  font-weight: 800;
  margin: 0 0 22px !important;
  letter-spacing: -0.03em;
}
.w-hero h1 .grad{
  background: var(--w-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.w-hero p.lead{
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  color: #e2e8f8;
  max-width: 560px;
  margin: 0 0 36px;
}
.w-hero .w-hero-actions{
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 42px;
}
.w-hero .btn-primary{
  background: var(--w-white) !important;
  color: var(--w-ink) !important;
  border-color: var(--w-white) !important;
  padding: 15px 28px !important;
  font-size: 15px !important;
}
.w-hero .btn-primary:hover{
  background: var(--w-accent) !important;
  color: var(--w-ink) !important;
  border-color: var(--w-accent) !important;
}
.w-hero .btn-ghost{
  color: #fff;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
}
.w-hero .btn-ghost:hover{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
}

.w-hero-trust{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 620px;
}
.w-hero-trust .item{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.w-hero-trust .item strong{
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--w-font-display);
  letter-spacing: -.01em;
}
.w-hero-trust .item span{
  color: #b4bfd8;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Hero visual (right side illustration) */
.w-hero-visual{
  position: relative;
  aspect-ratio: 1/1;
  max-width: 460px;
  justify-self: center;
}
.w-hero-visual .ring{
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.w-hero-visual .ring.r1{ transform: scale(1); }
.w-hero-visual .ring.r2{ transform: scale(.78); border-color: rgba(255,255,255,.12); }
.w-hero-visual .ring.r3{ transform: scale(.56); border-color: rgba(255,255,255,.16); }
.w-hero-visual .ring.r4{ transform: scale(.34); border-color: rgba(58,91,251,.4); box-shadow: 0 0 60px rgba(58,91,251,.25); }
.w-hero-visual .shield{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(58,91,251,.95), rgba(46,229,142,.75));
  box-shadow: 0 30px 80px -10px rgba(58,91,251,.55), inset 0 0 40px rgba(255,255,255,.18);
  display: flex;
  align-items: center; justify-content: center;
}
.w-hero-visual .shield svg{ width: 68px; height: 68px; color: #fff; }
.w-hero-visual .node{
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: #bfcbff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  animation: wFloat 6s ease-in-out infinite;
}
@keyframes wFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
.w-hero-visual .node.n1{ top: 8%; left: 20%; animation-delay: 0s; }
.w-hero-visual .node.n2{ top: 15%; right: 12%; animation-delay: .8s; }
.w-hero-visual .node.n3{ bottom: 18%; right: 6%; animation-delay: 1.6s; }
.w-hero-visual .node.n4{ bottom: 10%; left: 14%; animation-delay: 2.4s; }
.w-hero-visual .node.n5{ top: 50%; left: -2%; animation-delay: 3.2s; }
.w-hero-visual .node.n6{ top: 46%; right: -4%; animation-delay: 4s; }

@media (max-width: 960px){
  .w-hero{ padding: 150px 24px 80px; min-height: auto; }
  .w-hero-inner{ grid-template-columns: 1fr; gap: 50px; text-align: left; }
  .w-hero-visual{ display: none; }
  .w-hero-trust{ grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Client logos band ---------- */
.w-logos{
  padding: 56px 32px;
  background: var(--w-gray-50);
  border-top: 1px solid var(--w-gray-100);
  border-bottom: 1px solid var(--w-gray-100);
}
.w-logos .container{
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.w-logos .label{
  font-size: 12px;
  color: var(--w-gray-500);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
}
.w-logos .row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}
.w-logos .tag{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--w-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--w-gray-500);
  letter-spacing: -.01em;
  opacity: .85;
  transition: opacity var(--w-t), color var(--w-t);
}
.w-logos .tag:hover{
  opacity: 1;
  color: var(--w-gray-700);
}
.w-logos .tag svg{ width: 22px; height: 22px; color: var(--w-brand); }

/* ---------- Section headings ---------- */
.w-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.w-head.left{ text-align: left; margin-left: 0; }
.w-head .eyebrow{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--w-brand);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(58,91,251,.08);
  border-radius: 999px;
}
.w-head h2{
  font-size: clamp(30px, 4vw, 48px) !important;
  line-height: 1.1 !important;
  margin: 0 0 18px !important;
  color: var(--w-ink) !important;
}
.w-head h2 .grad{
  background: var(--w-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.w-head p{
  font-size: 17px;
  line-height: 1.7;
  color: var(--w-gray-500);
  margin: 0;
}

/* ---------- Services grid (hex icons) ---------- */
.w-services{
  background: var(--w-white);
  padding: clamp(100px, 13vw, 160px) 0;
}
.w-services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.w-service{
  position: relative;
  padding: 38px 32px 36px;
  background: #fff;
  border: 1px solid var(--w-gray-200);
  border-radius: var(--w-r-lg);
  transition: transform var(--w-t), box-shadow var(--w-t), border-color var(--w-t);
  overflow: hidden;
}
.w-service::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--w-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.w-service:hover{
  transform: translateY(-6px);
  box-shadow: var(--w-shadow-lg);
  border-color: transparent;
}
.w-service:hover::before{ transform: scaleX(1); }
.w-service .hex{
  width: 60px; height: 66px;
  background: linear-gradient(145deg, rgba(58,91,251,.14), rgba(46,229,142,.12));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center; justify-content: center;
  color: var(--w-brand);
  margin-bottom: 22px;
}
.w-service .hex svg{ width: 26px; height: 26px; }
.w-service h3{
  font-size: 21px !important;
  font-weight: 800;
  color: var(--w-ink) !important;
  margin: 0 0 12px !important;
}
.w-service p{
  color: var(--w-gray-500);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.w-service ul{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--w-gray-100);
  padding-top: 18px;
}
.w-service ul li{
  position: relative;
  padding: 7px 0 7px 26px;
  color: var(--w-gray-700);
  font-size: 14.5px;
  line-height: 1.55;
}
.w-service ul li::before{
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(46,229,142,.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231cc976' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.w-service .w-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--w-brand);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  margin-top: 20px;
  transition: gap var(--w-t);
}
.w-service .w-link:hover{ gap: 10px; }

/* ---------- Dark section ---------- */
.w-dark{
  background: var(--w-navy-900);
  color: #e2e8f8;
  padding: clamp(100px, 13vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.w-dark::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(58,91,251,.22), transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(46,229,142,.1), transparent 60%);
  pointer-events: none;
}
.w-dark .w-container{ position: relative; z-index: 1; }
.w-dark .w-head h2{ color: #fff !important; }
.w-dark .w-head p{ color: #b4bfd8; }
.w-dark .w-head .eyebrow{
  color: #bfcbff;
  background: rgba(191,203,255,.08);
}

.w-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.w-stat{
  text-align: left;
}
.w-stat .num{
  font-family: var(--w-font-display);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 800;
  background: var(--w-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.w-stat .label{
  color: #b4bfd8;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 760px){
  .w-stats{ grid-template-columns: repeat(2, 1fr); }
}

/* Pillars on dark */
.w-pillars{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.w-pillar{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--w-r-lg);
  padding: 32px 28px;
  transition: transform var(--w-t), border-color var(--w-t), background var(--w-t);
}
.w-pillar:hover{
  transform: translateY(-4px);
  border-color: rgba(58,91,251,.45);
  background: linear-gradient(180deg, rgba(58,91,251,.1), rgba(255,255,255,.02));
}
.w-pillar .hex{
  width: 54px; height: 60px;
  background: linear-gradient(145deg, rgba(58,91,251,.25), rgba(46,229,142,.18));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center; justify-content: center;
  color: #bfcbff;
  margin-bottom: 20px;
}
.w-pillar .hex svg{ width: 22px; height: 22px; }
.w-pillar h3{
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700;
  margin: 0 0 10px !important;
}
.w-pillar p{
  color: #b4bfd8;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}
.w-pillar strong{ color: #e6ebfa; font-weight: 600; }

/* ---------- Hybrid schema (Entra ID + AD) ---------- */
.w-hybrid{
  background: var(--w-white);
  padding: clamp(100px, 13vw, 160px) 0;
}
.w-hybrid-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.w-hybrid-text h2{
  font-size: clamp(30px, 4vw, 46px) !important;
  line-height: 1.1 !important;
  margin: 0 0 20px !important;
}
.w-hybrid-text p{
  color: var(--w-gray-500);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 20px;
}
.w-hybrid-text .eyebrow{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--w-brand);
  margin-bottom: 14px;
}
.w-hybrid-text ul{
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}
.w-hybrid-text ul li{
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--w-gray-700);
  font-size: 15px;
  border-bottom: 1px solid var(--w-gray-100);
}
.w-hybrid-text ul li:last-child{ border-bottom: none; }
.w-hybrid-text ul li::before{
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(58,91,251,.12);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233a5bfb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.w-hybrid-diagram{
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(160deg, #f6f8fc 0%, #eef2f8 100%);
  border: 1px solid var(--w-gray-200);
  border-radius: var(--w-r-xl);
  box-shadow: var(--w-shadow-lg);
}
.w-hybrid-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
.w-hybrid-cols::before{
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--w-grad);
  box-shadow: 0 10px 30px rgba(58,91,251,.35), inset 0 0 20px rgba(255,255,255,.2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M4 12h16'/><path d='M12 4v16'/><circle cx='12' cy='12' r='3'/></svg>");
  background-size: 26px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.w-hybrid-col{
  background: #fff;
  border: 1px solid var(--w-gray-200);
  border-radius: var(--w-r-md);
  padding: 26px 22px;
  box-shadow: var(--w-shadow-sm);
}
.w-hybrid-col .icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(58,91,251,.14), rgba(46,229,142,.1));
  display: flex; align-items: center; justify-content: center;
  color: var(--w-brand);
  margin-bottom: 14px;
}
.w-hybrid-col .icon svg{ width: 22px; height: 22px; }
.w-hybrid-col h4{
  font-family: var(--w-font-display);
  font-size: 15px !important;
  font-weight: 800;
  margin: 0 0 6px !important;
  color: var(--w-ink) !important;
}
.w-hybrid-col p{
  margin: 0;
  font-size: 13.5px;
  color: var(--w-gray-500);
  line-height: 1.55;
}
.w-hybrid-col ul{
  list-style: none;
  padding: 14px 0 0;
  margin: 14px 0 0;
  border-top: 1px solid var(--w-gray-100);
}
.w-hybrid-col ul li{
  font-size: 12.5px;
  color: var(--w-gray-600);
  padding: 4px 0;
}
@media (max-width: 900px){
  .w-hybrid-grid{ grid-template-columns: 1fr; gap: 40px; }
  .w-hybrid-cols{ grid-template-columns: 1fr; }
  .w-hybrid-cols::before{ display: none; }
}

/* ---------- Process timeline ---------- */
.w-process{
  background: var(--w-gray-50);
  padding: clamp(100px, 13vw, 160px) 0;
}
.w-process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.w-process-grid::before{
  content: "";
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--w-gray-300) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.w-step{
  position: relative;
  text-align: left;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--w-gray-200);
  border-radius: var(--w-r-lg);
  transition: transform var(--w-t), box-shadow var(--w-t);
  z-index: 1;
}
.w-step:hover{
  transform: translateY(-4px);
  box-shadow: var(--w-shadow-md);
}
.w-step .num{
  display: inline-flex;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--w-grad);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-family: var(--w-font-display);
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 10px 24px -10px rgba(58,91,251,.55);
  margin-bottom: 18px;
}
.w-step h3{
  font-size: 18px !important;
  font-weight: 800;
  color: var(--w-ink) !important;
  margin: 0 0 8px !important;
}
.w-step p{
  font-size: 14.5px;
  color: var(--w-gray-500);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px){
  .w-process-grid{ grid-template-columns: 1fr; }
  .w-process-grid::before{ display: none; }
}

/* ---------- Testimonials ---------- */
.w-testimonials{
  background: var(--w-white);
  padding: clamp(100px, 13vw, 160px) 0;
}
.w-testi-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.w-testi{
  padding: 34px 30px;
  background: var(--w-gray-50);
  border: 1px solid var(--w-gray-100);
  border-radius: var(--w-r-lg);
  position: relative;
  transition: transform var(--w-t), box-shadow var(--w-t);
}
.w-testi:hover{
  transform: translateY(-4px);
  box-shadow: var(--w-shadow-md);
}
.w-testi .quote-icon{
  position: absolute;
  top: 26px; right: 26px;
  width: 36px; height: 36px;
  color: var(--w-brand);
  opacity: .18;
}
.w-testi .stars{
  display: flex; gap: 3px;
  color: #ffc24a;
  margin-bottom: 14px;
}
.w-testi .stars svg{ width: 16px; height: 16px; fill: currentColor; }
.w-testi p.quote{
  color: var(--w-gray-700);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 22px;
}
.w-testi .author{
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--w-gray-200);
}
.w-testi .author .ava{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--w-grad);
  color: #fff;
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--w-font-display);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.w-testi .author .meta strong{
  display: block;
  color: var(--w-ink);
  font-size: 14px;
  font-weight: 700;
}
.w-testi .author .meta span{
  color: var(--w-gray-500);
  font-size: 13px;
}

/* ---------- FAQ ---------- */
.w-faq{
  background: var(--w-gray-50);
  padding: clamp(100px, 13vw, 160px) 0;
}
.w-faq-list{
  max-width: 860px;
  margin: 0 auto;
}
.w-faq details{
  background: #fff;
  border: 1px solid var(--w-gray-200);
  border-radius: var(--w-r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color var(--w-t), box-shadow var(--w-t);
}
.w-faq details[open]{
  border-color: var(--w-brand);
  box-shadow: 0 20px 50px -30px rgba(58,91,251,.35);
}
.w-faq summary{
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  color: var(--w-ink);
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.w-faq summary::-webkit-details-marker{ display: none; }
.w-faq summary::after{
  content: "";
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--w-gray-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1020' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform var(--w-t), background-color var(--w-t);
  flex-shrink: 0;
}
.w-faq details[open] summary::after{
  transform: rotate(180deg);
  background-color: var(--w-brand);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}
.w-faq .answer{
  padding: 0 26px 24px;
  color: var(--w-gray-600);
  font-size: 15px;
  line-height: 1.75;
}
.w-faq .answer p{ margin: 0 0 10px; }

/* ---------- Final CTA ---------- */
.w-cta-final{
  background: var(--w-navy-900);
  color: #e6ebfa;
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 120px) 32px;
  text-align: center;
}
.w-cta-final::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(58,91,251,.3), transparent 60%),
    radial-gradient(50% 60% at 100% 100%, rgba(46,229,142,.2), transparent 60%);
}
.w-cta-final .inner{
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.w-cta-final h2{
  font-size: clamp(32px, 4.6vw, 52px) !important;
  color: #fff !important;
  margin: 0 0 18px !important;
  line-height: 1.1;
}
.w-cta-final h2 .grad{
  background: var(--w-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.w-cta-final p{
  color: #bfcbff;
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 32px;
}
.w-cta-final .actions{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.w-cta-final .btn-primary{
  background: #fff !important;
  color: var(--w-ink) !important;
  border-color: #fff !important;
  padding: 16px 30px !important;
}
.w-cta-final .btn-primary:hover{
  background: var(--w-accent) !important;
  color: var(--w-ink) !important;
  border-color: var(--w-accent) !important;
}
.w-cta-final .btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.2);
  color: #fff;
  padding: 16px 30px;
}
.w-cta-final .btn-ghost:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.4);
}

/* ---------- Footer ---------- */
.footer{
  background: #06091a !important;
  color: #8793b3 !important;
  padding: 72px 32px 40px !important;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-top{
  max-width: 1240px;
  margin: 0 auto 48px;
  display: grid !important;
  grid-template-columns: 1.2fr 1fr 1fr 1fr !important;
  gap: 48px;
}
.footer-left .footer-logo img{ height: 34px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .9; }
.footer-left p{
  font-size: 14px;
  line-height: 1.7;
  color: #b4bfd8;
  margin: 0 0 20px;
  max-width: 320px;
}
.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #bfcbff;
}
.contact-item .contact-icon{
  width: 16px; height: 16px;
  filter: brightness(0) invert(1) opacity(.6);
}
.contact-item a{
  color: #bfcbff !important;
  text-decoration: none;
  transition: color var(--w-t);
}
.contact-item a:hover{ color: #fff !important; }

.footer h4{
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 20px !important;
}
.footer-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a{
  color: #8793b3 !important;
  font-size: 14px;
  text-decoration: none;
  transition: color var(--w-t);
}
.footer-links a:hover{ color: var(--w-accent) !important; }

.footer-bottom{
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #6b7590;
}
.footer-bottom p{ margin: 0; }
.footer-legal{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a{
  color: #6b7590 !important;
  font-size: 13px;
  text-decoration: none;
  transition: color var(--w-t);
}
.footer-legal a:hover{ color: #bfcbff !important; }

@media (max-width: 960px){
  .footer-top{ grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px){
  .footer-top{ grid-template-columns: 1fr; }
}

/* ---------- PAGE HEAD (internal pages) ---------- */
.w-pagehead{
  position: relative;
  padding: 180px 32px 100px;
  background: var(--w-grad-dark-hero);
  color: #e6ebfa;
  overflow: hidden;
  text-align: center;
}
.w-pagehead::before{
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}
.w-pagehead .inner{
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.w-pagehead .eyebrow{
  display: inline-block;
  padding: 8px 16px;
  background: rgba(191,203,255,.1);
  border: 1px solid rgba(191,203,255,.2);
  border-radius: 999px;
  color: #bfcbff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.w-pagehead h1{
  font-size: clamp(38px, 5.8vw, 68px) !important;
  line-height: 1.06 !important;
  color: #fff !important;
  margin: 0 0 20px !important;
  letter-spacing: -0.02em;
}
.w-pagehead h1 .grad{
  background: var(--w-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.w-pagehead p.lead{
  font-size: clamp(16px, 1.4vw, 19px);
  color: #e2e8f8;
  max-width: 660px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.w-breadcrumb{
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: 13px;
  color: #b4bfd8;
}
.w-breadcrumb a{
  color: #bfcbff;
  text-decoration: none;
  transition: color var(--w-t);
}
.w-breadcrumb a:hover{ color: var(--w-accent); }
.w-breadcrumb .sep{ margin: 0 10px; color: #4a536b; }
.w-breadcrumb .current{ color: #fff; font-weight: 600; }

/* ---------- PROSE (legal pages) ---------- */
.w-prose{
  background: #fff;
  padding: 80px 32px 120px;
}
.w-prose .container{
  max-width: 820px;
  margin: 0 auto;
  color: var(--w-gray-700);
  font-size: 16px;
  line-height: 1.8;
}
.w-prose .updated{
  display: inline-block;
  padding: 6px 14px;
  background: var(--w-gray-100);
  color: var(--w-gray-500);
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 28px;
}
.w-prose h2{
  font-size: 24px !important;
  color: var(--w-ink) !important;
  margin: 48px 0 16px !important;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--w-gray-100);
  font-weight: 800;
}
.w-prose h3{
  font-size: 18px !important;
  color: var(--w-ink) !important;
  margin: 28px 0 10px !important;
  font-weight: 700;
}
.w-prose p{ margin: 0 0 16px; }
.w-prose ul, .w-prose ol{ padding-left: 22px; margin: 0 0 18px; }
.w-prose li{ margin-bottom: 8px; color: var(--w-gray-700); }
.w-prose a{
  color: var(--w-brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--w-t);
}
.w-prose a:hover{ color: var(--w-brand-600); }
.w-prose strong{ color: var(--w-ink); font-weight: 700; }

/* ---------- Form (contact) ---------- */
.w-form-wrap{
  background: var(--w-gray-50);
  padding: 80px 32px 100px;
}
.w-form{
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--w-gray-200);
  border-radius: var(--w-r-xl);
  padding: 48px;
  box-shadow: var(--w-shadow-lg);
}
.w-form .form-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.w-form .field{ display: flex; flex-direction: column; }
.w-form .field label{
  font-size: 13px;
  font-weight: 600;
  color: var(--w-gray-700);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.w-form .field input,
.w-form .field select,
.w-form .field textarea{
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--w-gray-200);
  border-radius: var(--w-r-sm);
  font-family: var(--w-font);
  font-size: 14.5px;
  color: var(--w-ink);
  transition: border-color var(--w-t), box-shadow var(--w-t);
}
.w-form .field input:focus,
.w-form .field select:focus,
.w-form .field textarea:focus{
  outline: none;
  border-color: var(--w-brand);
  box-shadow: 0 0 0 4px rgba(58,91,251,.12);
}
.w-form .field textarea{ min-height: 140px; resize: vertical; font-family: var(--w-font); }
.w-form .form-actions{ margin-top: 28px; text-align: right; }
.w-form .form-actions .btn-primary{
  padding: 16px 32px !important;
}
.multi-select{
  position: relative;
}
.multi-select-trigger{
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--w-gray-200);
  border-radius: var(--w-r-sm);
  font-size: 14.5px;
  color: var(--w-gray-500);
  cursor: pointer;
  transition: border-color var(--w-t);
}
.multi-select-trigger:hover, .multi-select.open .multi-select-trigger{ border-color: var(--w-brand); }
.multi-select-dropdown{
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border: 1.5px solid var(--w-gray-200);
  border-radius: var(--w-r-sm);
  margin-top: 6px;
  padding: 10px;
  box-shadow: var(--w-shadow-md);
  z-index: 10;
}
.multi-select.open .multi-select-dropdown{ display: block; }
.multi-select-dropdown label{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px !important;
  color: var(--w-gray-700) !important;
  font-weight: 500 !important;
  margin: 0 !important;
  transition: background var(--w-t);
}
.multi-select-dropdown label:hover{ background: var(--w-gray-50); }

.success-message{
  padding: 18px 22px;
  background: rgba(46,229,142,.12);
  border: 1px solid rgba(46,229,142,.4);
  border-left: 4px solid var(--w-accent);
  border-radius: var(--w-r-sm);
  color: #047857;
  margin-bottom: 24px;
  font-weight: 500;
}
.error-message{
  padding: 18px 22px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #dc2626;
  border-radius: var(--w-r-sm);
  color: #b91c1c;
  margin-bottom: 24px;
}

@media (max-width: 760px){
  .w-form{ padding: 30px 22px; }
  .w-form .form-grid{ grid-template-columns: 1fr; }
}

/* ---------- Reveal animations ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: none;
}
[data-reveal][data-reveal-delay="1"]{ transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"]{ transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"]{ transition-delay: .24s; }
[data-reveal][data-reveal-delay="4"]{ transition-delay: .32s; }
[data-reveal][data-reveal-delay="5"]{ transition-delay: .4s; }
[data-reveal][data-reveal-delay="6"]{ transition-delay: .48s; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  [data-reveal]{ opacity: 1 !important; transform: none !important; }
}

/* ---------- Grid tweaks for small screens ---------- */
@media (max-width: 760px){
  .w-services-grid{ grid-template-columns: 1fr; }
  .w-pillars{ grid-template-columns: 1fr; }
  .w-testi-grid{ grid-template-columns: 1fr; }
  .w-dark .w-stats{ margin-top: 50px; padding-top: 40px; }
}

/* ---------- Hide old classes that conflict ---------- */
.hero-left{ display: none !important; }
.hero-overlay{ display: none !important; }

/* ---------- Overrides for legacy dark sections (theme.css pages) ---------- */
.wk-pagehead,
.section-dark{
  color: #e2e8f8 !important;
}
.wk-pagehead h1,
.wk-pagehead h2,
.wk-pagehead .kicker-top,
.section-dark h2,
.section-dark h3{
  color: #fff !important;
}
.wk-pagehead p,
.wk-pagehead .lead,
.section-dark p,
.section-dark .subtitle{
  color: #c4cfe6 !important;
}
.wk-pagehead .accent,
.section-dark .accent{
  background: var(--w-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.wk-breadcrumbs a{ color: #8fa0c4 !important; }
.wk-breadcrumbs .current{ color: #fff !important; }
.glass-card{
  color: #d6dff0 !important;
}
.glass-card h3{
  color: #fff !important;
}
.glass-card p{
  color: #b8c5df !important;
}
.wk-stats .num,
.wk-stats .stat .num{
  color: var(--w-brand-400) !important;
}
.wk-stats .label,
.wk-stats .stat .label{
  color: #b4bfd8 !important;
}
/* Expertise feature cards (LIGHT bg — keep dark text) */
.wk-feature-card h3{ color: var(--w-ink) !important; }
.wk-feature-card p,
.wk-feature-card li{ color: var(--w-gray-600) !important; }
.wk-feature .head h2{ color: var(--w-ink) !important; }
.wk-feature .head .subtitle{ color: var(--w-gray-500) !important; }

/* Process steps (LIGHT bg — keep dark text) */
.wk-process h2{ color: var(--w-ink) !important; }
.wk-process .subtitle{ color: var(--w-gray-500) !important; }
.wk-process .wk-step,
.wk-process .steps{
  color: var(--w-ink) !important;
}
.wk-process .wk-step h3{ color: var(--w-ink) !important; }
.wk-process .wk-step p{ color: var(--w-gray-500) !important; }
.wk-process .wk-step .num{
  color: #fff !important;
}

/* Testimonials (LIGHT bg — keep dark text) */
.testimonials h2{ color: var(--w-ink) !important; }
.testimonials .subtitle{ color: var(--w-gray-500) !important; }
.testimonials .quote{ color: var(--w-gray-700) !important; }
.testimonials .author strong{ color: var(--w-ink) !important; }
.testimonials .author span{ color: var(--w-gray-500) !important; }

/* FAQ (LIGHT bg — keep dark text) */
.wk-faq summary{ color: var(--w-ink) !important; }
.wk-faq .answer p{ color: var(--w-gray-600) !important; }
.wk-faq h2{ color: var(--w-ink) !important; }
.wk-faq .subtitle{ color: var(--w-gray-500) !important; }

/* CTA final section (DARK bg — light text) */
.wk-cta-final h2{ color: #fff !important; }
.wk-cta-final h2 .accent{
  background: var(--w-grad-text) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
.wk-cta-final p{ color: #c4cfe6 !important; }

/* Contact section-dark specific */
.section-dark .glass-card .icon svg{ color: var(--w-brand-400); }

/* ---------- PRO FOOTER ---------- */
.footer{
  background: var(--w-navy-900) !important;
  color: #8b95b0 !important;
  border-top: 1px solid rgba(58,91,251,.15) !important;
  padding: 0 !important;
}
.footer-top{
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 64px 32px 48px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 60px !important;
  flex-wrap: wrap !important;
}
.footer-left{
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
}
.footer-logo img{
  height: 40px !important;
  width: auto !important;
  opacity: .85 !important;
  filter: brightness(1.1) !important;
}
.footer-contact{
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}
.footer-contact .contact-item{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 14.5px !important;
  color: #9aa4bf !important;
}
.footer-contact .contact-item a{
  color: #c4cfe6 !important;
  text-decoration: none !important;
  transition: color .2s !important;
}
.footer-contact .contact-item a:hover{
  color: var(--w-accent) !important;
}
.footer-contact .contact-icon{
  width: 18px !important;
  height: 18px !important;
  opacity: .6 !important;
  filter: invert(1) brightness(.7) !important;
}
.footer-right h4{
  color: #fff !important;
  font-family: var(--w-font-display) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  margin: 0 0 20px !important;
}
.footer-links{
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
.footer-links a{
  color: #9aa4bf !important;
  text-decoration: none !important;
  font-size: 14.5px !important;
  transition: color .2s, padding-left .2s !important;
}
.footer-links a:hover{
  color: #fff !important;
  padding-left: 4px !important;
}
.footer-bottom{
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 24px 32px !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}
.footer-bottom p{
  color: #5a6380 !important;
  font-size: 13px !important;
  margin: 0 !important;
}
.footer-legal{
  display: flex !important;
  gap: 24px !important;
  flex-wrap: wrap !important;
}
.footer-legal a{
  color: #5a6380 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  transition: color .2s !important;
}
.footer-legal a:hover{
  color: #9aa4bf !important;
}
@media (max-width: 760px){
  .footer-top{ flex-direction: column !important; gap: 40px !important; }
  .footer-bottom{ flex-direction: column !important; text-align: center !important; }
}
