/* ==========================================================================
   Asurops Technologies — Wolters Kluwer-inspired theme
   White surfaces · navy text · WK-blue accents · clean editorial layout
   ========================================================================== */

:root {
  /* Brand palette (Wolters Kluwer-inspired) */
  --wk-blue:        #007AC9;     /* primary action / accent */
  --wk-blue-dark:   #005A99;     /* hover */
  --wk-blue-tint:   #E6F2FB;     /* very light fill */
  --wk-navy:        #001E62;     /* deep navy for hero / footer */
  --wk-navy-2:      #0A2540;
  --wk-ink:         #1A1F2C;     /* body text */
  --wk-ink-soft:    #4A5568;     /* secondary text */
  --wk-line:        #E1E5EB;     /* dividers */
  --wk-line-strong: #C7CDD6;
  --wk-bg:          #FFFFFF;
  --wk-bg-alt:      #F4F5F7;     /* light gray section */
  --wk-bg-tint:     #F8FAFC;
  --wk-yellow:      #FFC845;     /* accent bar */
  --wk-success:     #1A7F37;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max: 1240px;
  --container-inline: clamp(1rem, 4vw, 2.5rem);
  --section-pad-y: clamp(0.75rem, 1.25vw, 1.25rem);
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow:    0 4px 18px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 48px rgba(15, 23, 42, 0.12);
}

/* -------------------------------------------------- Reset / base */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--wk-ink);
  background: var(--wk-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--wk-blue); text-decoration: none; }
a:hover { color: var(--wk-blue-dark); text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--wk-navy);
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 0 0 0.6rem;
}

h1 { font-size: clamp(2.25rem, 4.4vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 2.8vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p  { margin: 0 0 1rem; color: var(--wk-ink); }

ul { padding-left: 1.15rem; margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--container-inline);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--wk-navy); color: #fff; padding: 0.6rem 1rem; z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* -------------------------------------------------- Section helpers */
.section     { padding-block: var(--section-pad-y); }
.section-alt { background: var(--wk-bg-alt); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wk-blue);
  margin: 0 0 0.85rem;
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}
.section-head--start { text-align: left; margin-inline: 0; }
.section-head h2 { margin-bottom: 0.55rem; }
.section-head .section-sub {
  color: var(--wk-ink-soft);
  font-size: 1.05rem;
  margin: 0;
}

/* -------------------------------------------------- Buttons / links */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--wk-blue);
  color: #fff;
  border-color: var(--wk-blue);
}
.btn-primary:hover { background: var(--wk-blue-dark); border-color: var(--wk-blue-dark); color:#fff; text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--wk-navy);
  border-color: var(--wk-line-strong);
}
.btn-outline:hover { border-color: var(--wk-navy); color: var(--wk-navy); text-decoration: none; }
.btn-light {
  background: #fff; color: var(--wk-navy); border-color: #fff;
}
.btn-light:hover { background: var(--wk-blue-tint); color: var(--wk-navy-2); text-decoration: none; }

.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Inline arrow link, e.g. "Explore X →" */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600;
  color: var(--wk-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.arrow-link:hover { color: var(--wk-blue-dark); border-color: currentColor; text-decoration: none; }
.arrow-link .arrow { transition: transform 0.15s ease; }
.arrow-link:hover .arrow { transform: translateX(3px); }

/* -------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--wk-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
  padding-block: 0.6rem;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none;
  color: var(--wk-navy);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.logo:hover { text-decoration: none; color: var(--wk-navy); }
.logo-mark img { width: 38px; height: 38px; object-fit: contain; }
.logo-text { line-height: 1; }
.logo-accent { color: var(--wk-blue); }

.site-nav { display: flex; align-items: center; }
.site-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 2rem;
}
.site-nav a {
  color: var(--wk-ink);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
}
.site-nav a:hover { color: var(--wk-blue); text-decoration: none; }
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--wk-blue);
}
.site-nav .nav-cta {
  background: var(--wk-blue);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
}
.site-nav .nav-cta:hover { background: var(--wk-blue-dark); color: #fff; }
.site-nav .nav-cta:hover::after { display: none; }

/* Mobile nav */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px; height: 22px;
  cursor: pointer;
}
.nav-toggle-label span {
  display: block; height: 2px; background: var(--wk-navy); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 880px) {
  .nav-toggle-label { display: inline-flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--wk-line);
    box-shadow: var(--shadow);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform 0.18s, opacity 0.18s;
  }
  .site-nav ul {
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.5rem 1rem 1rem;
  }
  .site-nav li { border-bottom: 1px solid var(--wk-line); }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav a { display: block; padding: 0.9rem 0.25rem; }
  .site-nav .nav-cta { display: inline-block; margin-top: 0.75rem; }
  .nav-toggle:checked ~ .site-nav {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
}

/* -------------------------------------------------- Hero (WK editorial) */
.wk-hero {
  background: #fff;
  padding-block: clamp(1rem, 2vw, 1.75rem) clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.wk-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 70%;
  background:
    radial-gradient(closest-side, rgba(0, 122, 201, 0.10), transparent 70%);
  pointer-events: none;
}
.wk-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.wk-hero h1 {
  margin-bottom: 1.25rem;
  color: var(--wk-navy);
}
.wk-hero h1 .accent { color: var(--wk-blue); }
.wk-hero-lede {
  font-size: 1.15rem;
  color: var(--wk-ink-soft);
  margin: 0 0 1.25rem;
  max-width: 56ch;
}
.wk-hero-ctas {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.wk-hero-ctas a {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 600; font-size: 1.05rem;
  color: var(--wk-navy);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--wk-line);
  width: max-content;
  max-width: 100%;
  transition: color 0.15s, border-color 0.15s;
}
.wk-hero-ctas a:hover {
  color: var(--wk-blue);
  border-color: var(--wk-blue);
  text-decoration: none;
}
.wk-hero-ctas a .arrow {
  color: var(--wk-blue);
  transition: transform 0.15s ease;
}
.wk-hero-ctas a:hover .arrow { transform: translateX(4px); }

.wk-hero-visual {
  position: relative;
}
.wk-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.wk-hero-visual::after {
  content: "";
  position: absolute;
  left: -22px; bottom: -22px;
  width: 60%; height: 60%;
  background: var(--wk-yellow);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.wk-hero-scroll {
  margin-top: clamp(1rem, 2vw, 1.5rem);
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--wk-ink-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
}
.wk-hero-scroll:hover { color: var(--wk-blue); text-decoration: none; }
.wk-hero-scroll .arrow { animation: bob 2.2s ease-in-out infinite; color: var(--wk-blue); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

@media (max-width: 880px) {
  .wk-hero-inner { grid-template-columns: 1fr; }
  .wk-hero-visual::after { display: none; }
}

/* -------------------------------------------------- Trust strip */
.wk-trust {
  border-top: 1px solid var(--wk-line);
  border-bottom: 1px solid var(--wk-line);
  padding-block: 1rem;
  background: var(--wk-bg-tint);
}
.wk-trust-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
}
.wk-trust-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wk-ink-soft);
}
.wk-trust-row {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.25rem;
}
.wk-trust-pill {
  font-size: 0.9rem;
  color: var(--wk-navy-2);
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--wk-line-strong);
  border-radius: 999px;
  background: #fff;
}

/* -------------------------------------------------- Tabs (Our Offerings) */
.wk-tabs {
  display: flex; gap: 1.75rem;
  border-bottom: 1px solid var(--wk-line);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  flex-wrap: wrap;
}
.wk-tab {
  appearance: none;
  background: transparent; border: 0;
  padding: 0.85rem 0;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  color: var(--wk-ink-soft);
  cursor: pointer;
  position: relative;
  letter-spacing: -0.005em;
}
.wk-tab:hover { color: var(--wk-navy); }
.wk-tab[aria-selected="true"] {
  color: var(--wk-navy);
}
.wk-tab[aria-selected="true"]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 3px;
  background: var(--wk-blue);
}

.wk-tab-panel { display: none; }
.wk-tab-panel.is-active { display: block; }

.wk-tab-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.25rem;
}
.wk-tab-intro h2 { margin-bottom: 0.6rem; }
.wk-tab-intro p { color: var(--wk-ink-soft); margin: 0; }
.wk-tab-intro .arrow-link { justify-self: end; }

@media (max-width: 760px) {
  .wk-tab-intro { grid-template-columns: 1fr; align-items: start; }
  .wk-tab-intro .arrow-link { justify-self: start; }
}

/* -------------------------------------------------- Card grid (Product & Solution) */
.wk-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.wk-card {
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.wk-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--wk-line-strong);
}
.wk-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--wk-bg-alt);
}
.wk-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.wk-card:hover .wk-card-media img { transform: scale(1.04); }

.wk-card-body {
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex; flex-direction: column;
  flex: 1 1 auto;
}
.wk-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wk-blue);
  margin: 0 0 0.6rem;
}
.wk-card-title {
  font-size: 1.2rem;
  margin: 0 0 0.7rem;
  color: var(--wk-navy);
}
.wk-card-text {
  margin: 0 0 1.1rem;
  color: var(--wk-ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
  flex: 1 1 auto;
}
.wk-card-cta { align-self: flex-start; }

/* Featured (image-prominent) variant for first card in each tab */
.wk-card--featured .wk-card-media { aspect-ratio: 16 / 11; }

/* -------------------------------------------------- Pricing */
.wk-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 980px) {
  .wk-pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .wk-pricing-grid { grid-template-columns: 1fr; }
}

.wk-price-card {
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.75rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.wk-price-card:hover {
  border-color: var(--wk-blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.wk-price-card--featured {
  border-color: var(--wk-blue);
  box-shadow: 0 6px 24px rgba(0, 122, 201, 0.12);
}
.wk-price-card--featured::before {
  content: "Recommended";
  position: absolute; top: -12px; left: 1.5rem;
  background: var(--wk-blue);
  color: #fff;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 999px;
}
.wk-price-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wk-blue);
  margin: 0 0 0.5rem;
}
.wk-price-title {
  font-size: 1.25rem;
  color: var(--wk-navy);
  margin: 0 0 0.55rem;
}
.wk-price-amount {
  font-size: 1rem;
  color: var(--wk-ink-soft);
  margin: 0 0 1rem;
}
.wk-price-amount strong {
  color: var(--wk-navy);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wk-price-list {
  list-style: none; padding: 0;
  margin: 0 0 1.4rem;
  flex: 1 1 auto;
}
.wk-price-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  color: var(--wk-ink);
  font-size: 0.95rem;
}
.wk-price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 8px; height: 8px;
  border-right: 2px solid var(--wk-blue);
  border-bottom: 2px solid var(--wk-blue);
  transform: rotate(45deg);
}
.wk-price-card .btn { align-self: flex-start; }

/* -------------------------------------------------- Industries / tools */
.wk-audience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) { .wk-audience { grid-template-columns: 1fr; } }

.wk-audience h2 { margin-bottom: 0.6rem; }
.wk-audience .sub { color: var(--wk-ink-soft); margin: 0 0 1.5rem; }

.wk-industry-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.2rem;
}
.wk-industry-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--wk-navy-2);
  font-weight: 500;
}
.wk-industry-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55rem;
  width: 8px; height: 8px; background: var(--wk-blue); border-radius: 2px;
}

.wk-tools {
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}
.wk-tools h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wk-ink-soft);
  margin: 0 0 1rem;
}
.wk-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}
.wk-tool {
  background: var(--wk-bg-alt);
  border-radius: var(--radius);
  padding: 0.55rem 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--wk-navy-2);
}

/* -------------------------------------------------- Outcomes / why */
.wk-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
@media (max-width: 760px) { .wk-outcomes-grid { grid-template-columns: 1fr; } }

.wk-outcome {
  background: #fff;
  border: 1px solid var(--wk-line);
  border-left: 4px solid var(--wk-blue);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.5rem;
}
.wk-outcome h3 { margin-bottom: 0.5rem; }
.wk-outcome p { margin: 0; color: var(--wk-ink-soft); font-size: 0.96rem; }

.wk-why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid var(--wk-line);
}
@media (max-width: 760px) { .wk-why { grid-template-columns: 1fr; } }

.wk-why-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.85rem;
}
.wk-why-list li {
  display: flex; gap: 0.85rem; align-items: flex-start;
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.wk-why-list li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background:
    var(--wk-blue-tint)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007AC9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")
    center / 14px no-repeat;
  margin-top: 0.1rem;
}

/* -------------------------------------------------- About strip (image + copy) */
.wk-about {
  background: var(--wk-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-block: clamp(2rem, 3vw, 2.75rem);
}
/* Kill the bottom padding of the section that immediately precedes the
   dark About band so the navy starts right where the gray ends. */
.section-alt:has(+ #about),
#why { padding-bottom: 0.25rem; }
.wk-about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .wk-about-inner { grid-template-columns: 1fr; } }

.wk-about h2 { color: #fff; }
.wk-about p { color: rgba(255, 255, 255, 0.82); }
.wk-about .eyebrow { color: var(--wk-yellow); }
.wk-about-figure img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg);
}
.wk-about-actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.25rem;
}

/* -------------------------------------------------- Contact */
.wk-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 880px) { .wk-contact-grid { grid-template-columns: 1fr; } }

.wk-contact-info { display: grid; gap: 1rem; }
.wk-contact-item {
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.wk-contact-item h3 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wk-ink-soft);
  margin: 0 0 0.35rem;
}
.wk-contact-item p { margin: 0; }
.wk-contact-item a { font-weight: 600; }

/* Lead form */
.wk-form-card {
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.wk-form-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}
.wk-form-card .sub {
  color: var(--wk-ink-soft);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}
.wk-form { display: grid; gap: 0.9rem; }
.wk-field { display: grid; gap: 0.35rem; }
.wk-field span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wk-navy-2);
}
.wk-field abbr {
  color: var(--wk-blue);
  text-decoration: none;
  margin-left: 0.15rem;
}
.wk-field input,
.wk-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--wk-line-strong);
  border-radius: var(--radius);
  font: inherit;
  color: var(--wk-ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.wk-field input:focus,
.wk-field textarea:focus {
  outline: none;
  border-color: var(--wk-blue);
  box-shadow: 0 0 0 3px var(--wk-blue-tint);
}
.wk-form .consent {
  font-size: 0.8rem;
  color: var(--wk-ink-soft);
  margin: 0.25rem 0 0;
}
.wk-form .btn { justify-self: start; margin-top: 0.5rem; }
.wk-form .btn:disabled { opacity: 0.7; cursor: progress; }

.wk-form-error {
  margin: 0.5rem 0 0;
  padding: 0.65rem 0.85rem;
  background: #fff4f4;
  border: 1px solid #f3c2c2;
  border-radius: var(--radius);
  color: #7a1f1f;
  font-size: 0.9rem;
}
.wk-form-error a { color: #7a1f1f; text-decoration: underline; }

.wk-form-success {
  border-left: 4px solid var(--wk-success, #1A7F37);
  background: #f1faf3;
  border: 1px solid #cdebd4;
  border-left: 4px solid var(--wk-success, #1A7F37);
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  margin-top: 0.25rem;
}
.wk-form-success h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  color: var(--wk-navy);
}
.wk-form-success p {
  margin: 0 0 0.5rem;
  color: var(--wk-ink);
  font-size: 0.96rem;
}
.wk-form-success p:last-child { margin-bottom: 0; }
.wk-form-success-meta {
  font-size: 0.88rem !important;
  color: var(--wk-ink-soft) !important;
}

/* -------------------------------------------------- Footer */
.wk-footer {
  background: var(--wk-navy);
  color: rgba(255, 255, 255, 0.82);
  padding-block: clamp(2rem, 3.5vw, 3rem) 1.5rem;
  margin-top: 0;
}
.wk-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 880px) { .wk-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .wk-footer-grid { grid-template-columns: 1fr; } }

.wk-footer h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.95rem;
}
.wk-footer ul { list-style: none; padding: 0; margin: 0; }
.wk-footer ul li { margin-bottom: 0.55rem; }
.wk-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  text-decoration: none;
}
.wk-footer a:hover { color: #fff; text-decoration: underline; }

.wk-footer-brand {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1rem;
  color: #fff; font-weight: 700; font-size: 1.15rem;
}
.wk-footer-brand img { width: 38px; height: 38px; object-fit: contain; }
.wk-footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  margin: 1rem 0 0.4rem;
  letter-spacing: -0.01em;
}
.wk-footer-about {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 38ch;
}
.wk-footer-bottom {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.wk-footer-bottom a { color: rgba(255, 255, 255, 0.78); }

/* -------------------------------------------------- Blog */
.blog-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.blog-card {
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.6rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.blog-card:hover {
  border-color: var(--wk-blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.blog-card-meta {
  font-size: 0.82rem;
  color: var(--wk-ink-soft);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}
.blog-card-title {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 0.65rem;
}
.blog-card-title a { color: var(--wk-navy); text-decoration: none; }
.blog-card-title a:hover { color: var(--wk-blue); }
.blog-card-excerpt {
  color: var(--wk-ink-soft);
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.post-container {
  max-width: 760px;
}
.post-breadcrumb {
  font-size: 0.85rem;
  color: var(--wk-ink-soft);
  margin: 0 0 1.25rem;
}
.post-breadcrumb a { color: var(--wk-ink-soft); }
.post-breadcrumb a:hover { color: var(--wk-blue); }
.post-breadcrumb span { color: var(--wk-navy-2); font-weight: 500; }

.post-head {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--wk-line);
}
.post-head h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 0.3rem 0 0.6rem;
}
.post-meta {
  font-size: 0.88rem;
  color: var(--wk-ink-soft);
  margin: 0;
  letter-spacing: 0.01em;
}

.post-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--wk-ink);
}
.post-body .post-lede {
  font-size: 1.15rem;
  color: var(--wk-ink);
  margin-bottom: 1.5rem;
}
.post-body h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin: 2.25rem 0 0.75rem;
  color: var(--wk-navy);
}
.post-body h3 { margin: 1.75rem 0 0.6rem; }
.post-body p { margin: 0 0 1.1rem; }
.post-body ul,
.post-body ol {
  margin: 0 0 1.4rem;
  padding-left: 1.35rem;
}
.post-body li {
  margin-bottom: 0.55rem;
}
.post-body li::marker { color: var(--wk-blue); }
.post-body strong { color: var(--wk-navy-2); }
.post-body a {
  color: var(--wk-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-body a:hover { color: var(--wk-blue-dark); }
.post-body em { color: var(--wk-ink); }
.post-body blockquote {
  margin: 1.5rem 0;
  padding: 0.6rem 1.25rem;
  border-left: 4px solid var(--wk-blue);
  background: var(--wk-blue-tint);
  color: var(--wk-navy-2);
  font-style: italic;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.post-cta {
  margin: 2.5rem 0 1.5rem;
  padding: 1.5rem 1.6rem;
  background: var(--wk-bg-alt);
  border: 1px solid var(--wk-line);
  border-radius: var(--radius-lg);
}
.post-cta h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.post-cta p { margin: 0 0 0.85rem; color: var(--wk-ink-soft); }
.post-cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0 !important; }

.post-footer-nav {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--wk-line);
}

/* -------------------------------------------------- Utility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
