/* ==========================================================
   WEBLABSINDIA — DESIGN SYSTEM
   Loaded in <head>, before any body markup is parsed — this is
   what actually prevents the skip-link flash-of-unstyled-content
   bug at the source, rather than patching it after the fact.
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #0B0F1A;
  --ink-soft:   #4B5468;
  --muted:      #6B7280;
  --line:       #E7E9F2;
  --wash:       #F6F7FB;
  --white:      #FFFFFF;

  --brand:      #4F46E5;
  --brand-2:    #6366F1;
  --accent:     #22D3EE;
  --accent-2:   #A855F7;

  --dark-bg:    #0B0F1A;
  --dark-panel: #12172A;
  --dark-line:  rgba(255,255,255,.10);
  --dark-text:  #E7E9F5;
  --dark-muted: #94A0BE;

  --radius-lg:  24px;
  --radius-md:  16px;
  --radius-sm:  10px;
  --shadow:     0 20px 50px rgba(15,15,40,.10);
  --shadow-lg:  0 30px 80px rgba(15,15,40,.16);
  --wrap:       1240px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

.wl-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- SKIP LINK ---------- */
.wl-skip {
  position: absolute; left: -9999px; top: 12px; z-index: 9999;
  background: var(--brand); color: #fff; padding: 12px 22px;
  border-radius: 10px; font-weight: 700; text-decoration: none;
}
.wl-skip:focus { left: 16px; }

/* ---------- NAV ---------- */
.wl-nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.wl-nav.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(15,15,40,.06); }
.wl-nav__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative;
}
.wl-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px; color: var(--ink); letter-spacing: -0.03em; }
.wl-logo span { background: linear-gradient(90deg, var(--brand), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.wl-links { display: flex; align-items: center; gap: 28px; }
.wl-links a { font-weight: 600; font-size: 14.5px; color: var(--ink-soft); transition: color .15s; }
.wl-links a:hover, .wl-links a.is-active { color: var(--brand); }
.wl-nav__cta { display: flex; align-items: center; gap: 14px; }
.wl-call { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--ink); }
.wl-call svg { color: var(--brand); }
.wl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff; font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: 999px;
  box-shadow: 0 10px 25px rgba(79,70,229,.28);
  transition: transform .15s ease, box-shadow .15s ease;
  border: none;
}
.wl-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(79,70,229,.36); }
.wl-btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none; }
.wl-btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: none; }
.wl-btn--light { background: #fff; color: var(--brand); box-shadow: 0 10px 25px rgba(0,0,0,.15); }

.wl-menu-btn {
  display: none; background: none; border: 0; color: var(--ink); padding: 10px; border-radius: 8px;
  width: 42px; height: 42px; flex: 0 0 auto;
}
.wl-menu-btn .wl-icon-x { display: none; }
.wl-menu-btn[aria-expanded="true"] .wl-icon-bars { display: none; }
.wl-menu-btn[aria-expanded="true"] .wl-icon-x { display: block; }

/* Mobile-only nav items (call + "Get a quote"), appended inside the
   slide-down panel — see header.php. Hidden entirely on desktop,
   where the real call link + button already sit in the top bar. */
.wl-links__mobile-extra { display: none; }

@media (max-width: 940px) {
  .wl-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .wl-nav__inner { padding: 13px 18px; gap: 10px; }
  .wl-logo { font-size: 18px; }
  /* Drop the call link and "Get a quote" pill from the crowded mobile
     top bar — logo + hamburger only. Both reappear as full-width rows
     inside the slide-down menu instead (below), so nothing is lost. */
  .wl-nav__cta > .wl-call,
  .wl-nav__cta > .wl-btn { display: none; }

  .wl-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
    box-shadow: 0 20px 40px rgba(15,15,40,.10);
  }
  .wl-links.is-open { max-height: 80vh; overflow-y: auto; }
  .wl-links a { padding: 16px 24px; border-bottom: 1px solid var(--wash); font-size: 15.5px; }

  .wl-links__mobile-extra { display: block; }
  .wl-links__call { font-weight: 700; color: var(--ink) !important; }
  .wl-links__cta {
    margin: 14px 20px 18px; padding: 13px 22px !important; text-align: center;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    color: #fff !important; font-weight: 700; border-radius: 999px; border-bottom: none !important;
  }
}

@media (max-width: 420px) {
  .wl-logo { font-size: 16.5px; }
  .wl-nav__inner { padding: 12px 14px; }
}

/* ---------- SECTIONS ---------- */
.wl-section { padding: 72px 0; }
.wl-section--wash { background: var(--wash); }
.wl-section--dark { background: var(--dark-bg); color: var(--dark-text); }
.wl-section--dark h2, .wl-section--dark h3 { color: #fff; }
.wl-section--dark p { color: var(--dark-muted); }

.wl-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.wl-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.wl-h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.wl-lede { color: var(--muted); font-size: 17px; }
.wl-section--dark .wl-lede { color: var(--dark-muted); }
.wl-accent { background: linear-gradient(90deg, var(--brand), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ---------- HERO ---------- */
.wl-hero {
  position: relative; padding: 60px 0 68px; overflow: hidden;
  background: radial-gradient(1100px 500px at 15% -10%, rgba(79,70,229,.12), transparent 60%),
              radial-gradient(900px 500px at 100% 0%, rgba(34,211,238,.10), transparent 55%);
}
.wl-crumbs { font-size: 13.5px; color: var(--muted); margin-bottom: 28px; display: flex; gap: 8px; align-items: center; }
.wl-crumbs a { color: var(--muted); }
.wl-crumbs a:hover { color: var(--brand); }
.wl-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.wl-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: 13px; font-weight: 700; color: var(--ink-soft);
  box-shadow: var(--shadow); margin-bottom: 22px;
}
.wl-badge b { color: var(--brand); }
.wl-hero h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 20px; }
.wl-hero__lede { font-size: 18px; color: var(--ink-soft); max-width: 560px; margin-bottom: 34px; }
.wl-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.wl-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.wl-stats div strong { display: block; font-size: 20px; font-family: 'Sora', sans-serif; }
.wl-stats div span { font-size: 13px; color: var(--muted); }

.wl-hero__art { position: relative; }
.wl-hero__panel {
  background: var(--dark-bg); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--dark-line);
}
.wl-hero__panel svg { width: 100%; height: auto; display: block; }

@media (max-width: 980px) {
  .wl-hero-grid { grid-template-columns: 1fr; }
  .wl-hero__art { order: -1; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .wl-section { padding: 48px 0; }
  .wl-hero { padding: 40px 0 44px; }
  .wl-wrap { padding: 0 18px; }
  .wl-stats { gap: 22px; }
  .wl-head { margin-bottom: 30px; }
}

/* ---------- GRID / CARDS ---------- */
.wl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wl-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wl-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wl-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 30px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.wl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.wl-card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 18px; font-size: 20px;
}
.wl-card h3 { font-size: 18px; margin-bottom: 10px; }
.wl-card p { color: var(--muted); font-size: 15px; }

.wl-section--dark .wl-card { background: var(--dark-panel); border-color: var(--dark-line); }
.wl-section--dark .wl-card p { color: var(--dark-muted); }

@media (max-width: 940px) { .wl-grid, .wl-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wl-grid, .wl-grid--2, .wl-grid--3 { grid-template-columns: 1fr; } }

/* ---------- PRICING TOGGLE ---------- */
.wl-price-toggle { display: inline-flex; background: var(--wash); border-radius: 999px; padding: 4px; gap: 2px; }
.wl-price-toggle__btn {
  border: none; background: transparent; padding: 8px 18px; border-radius: 999px;
  font-family: inherit; font-weight: 700; font-size: 13.5px; color: var(--muted); cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.wl-price-toggle__btn.is-active { background: var(--brand); color: #fff; }
.wl-price-toggle__btn:hover:not(.is-active) { color: var(--ink); }

/* ---------- PROCESS ---------- */
.wl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.wl-step { position: relative; padding-top: 8px; }
.wl-step__n {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 13px;
  color: var(--brand); background: rgba(79,70,229,.10);
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.wl-step h3 { font-size: 16.5px; margin-bottom: 8px; }
.wl-step p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 940px) { .wl-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .wl-steps { grid-template-columns: 1fr; } }

/* ---------- LOCATIONS TEASER ---------- */
.wl-loc-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.wl-loc-chip {
  font-size: 13.5px; font-weight: 600; padding: 9px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--ink-soft);
}
.wl-loc-chip--link { transition: border-color .15s, color .15s; }
.wl-loc-chip--link:hover { border-color: var(--brand); color: var(--brand); }

/* ---------- FAQ ---------- */
.wl-faq { max-width: 780px; margin: 0 auto; }
.wl-faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 22px; margin-bottom: 12px;
}
.wl-faq summary {
  font-weight: 700; font-size: 15.5px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.wl-faq summary::-webkit-details-marker { display: none; }
.wl-faq summary::after { content: '+'; font-size: 22px; color: var(--brand); flex-shrink: 0; }
.wl-faq details[open] summary::after { content: '\2212'; }
.wl-faq p { margin-top: 14px; color: var(--muted); font-size: 15px; }

/* ---------- CTA BAND ---------- */
.wl-cta-band {
  background: linear-gradient(120deg, var(--dark-bg), #171130 60%, var(--dark-bg));
  border-radius: var(--radius-lg); padding: 64px 40px; text-align: center; color: #fff;
}
.wl-cta-band h2 { color: #fff; margin-bottom: 14px; }
.wl-cta-band p { color: var(--dark-muted); max-width: 520px; margin: 0 auto 30px; }
.wl-cta-band .wl-cta-row { justify-content: center; margin-bottom: 0; }

/* ---------- FOOTER ---------- */
.wl-footer { background: var(--dark-bg); color: var(--dark-muted); padding: 70px 0 0; }
.wl-footer__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px 50px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px;
}
.wl-logo--footer { color: #fff; margin-bottom: 16px; display: inline-block; }
.wl-footer__brand p { font-size: 14.5px; line-height: 1.75; margin-bottom: 20px; max-width: 360px; }
.wl-footer__contact li { font-size: 14px; margin-bottom: 6px; }
.wl-footer__contact a:hover { color: #fff; }
.wl-footer__col h4 { color: #fff; font-size: 14px; margin-bottom: 16px; }
.wl-footer__col li { margin-bottom: 10px; font-size: 14px; }
.wl-footer__col a:hover { color: #fff; }
.wl-footer__bottom {
  border-top: 1px solid var(--dark-line); padding: 22px 24px; text-align: center; font-size: 13px;
}
@media (max-width: 980px) {
  .wl-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .wl-footer__inner { grid-template-columns: 1fr; gap: 34px; }
}

.wl-footer__sitemap { border-top: 1px solid var(--dark-line); padding: 40px 0 6px; }
.wl-footer__sitemap-grid { grid-template-columns: repeat(4, 1fr); padding-bottom: 10px; }
.wl-footer__sitemap .wl-footer__col h4 a { color: #fff; }
.wl-footer__sitemap .wl-footer__col h4 a:hover { color: var(--brand, #6C7BFF); }
.wl-footer__sitemap .wl-footer__col ul { max-height: 260px; overflow-y: auto; padding-right: 6px; }
@media (max-width: 980px) {
  .wl-footer__sitemap-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .wl-footer__sitemap-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ---------- FLOATING WHATSAPP ---------- */
/* Sitewide, all screen sizes — the globally recognized WhatsApp bubble:
   brand green, the real WhatsApp glyph, a soft pulse ring for
   attention. Sits above the sticky mobile CTA bar on small screens
   (see the bottom offset in the media query below). */
.wl-float-wa {
  position: fixed; right: 22px; bottom: 24px; z-index: 1200;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(18,140,126,.45), 0 2px 10px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wl-float-wa:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 14px 38px rgba(18,140,126,.55); }
.wl-float-wa svg { width: 28px; height: 28px; }
.wl-float-wa__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; opacity: .55; pointer-events: none;
  animation: wlWaPulse 2.4s ease-out infinite;
}
@keyframes wlWaPulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ---------- STICKY MOBILE CTA BAR ---------- */
.wl-sticky-cta { display: none; }
@media (max-width: 767px) {
  body { padding-bottom: 76px; } /* room so the bar never covers page content */

  .wl-float-wa { right: 16px; bottom: 90px; width: 52px; height: 52px; }
  .wl-float-wa svg { width: 25px; height: 25px; }

  .wl-sticky-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 -10px 26px rgba(15,15,40,.12);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }
  .wl-sticky-cta__btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 13px 10px; border-radius: 12px; font-weight: 700; font-size: 14.5px;
  }
  .wl-sticky-cta__btn--call { background: var(--wash); color: var(--ink); border: 1.5px solid var(--line); }
  .wl-sticky-cta__btn--quote {
    background: linear-gradient(90deg, var(--brand), var(--brand-2)); color: #fff;
    box-shadow: 0 8px 22px rgba(79,70,229,.32);
  }
}

/* ---------- FORM ---------- */
.wl-form { display: grid; gap: 16px; }
.wl-form input, .wl-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  border: 1.5px solid var(--line); font: inherit; font-size: 15px; background: #fff;
}
.wl-form input:focus, .wl-form textarea:focus { outline: none; border-color: var(--brand); }
.wl-form label { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; display: block; }

/* ---------- BLOG / ARTICLE (branded — v2) ---------- */
/* Article head: a real branded panel, not plain text on white —
   gradient wash, rounded, a gradient kicker bar, brand-tinted border. */
.wl-article-head {
  max-width: 820px; margin: 0 auto; text-align: left;
  background: radial-gradient(900px 260px at 12% -30%, rgba(79,70,229,.10), transparent 60%),
              linear-gradient(180deg, #fff, var(--wash));
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 40px 34px;
  position: relative;
  overflow: hidden;
}
.wl-article-head::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.wl-article-head .wl-eyebrow { background: #fff; border: 1px solid var(--line); padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow); }
.wl-article-head h1 { font-size: clamp(28px, 4.2vw, 44px); margin: 14px 0 16px; line-height: 1.16; }
.wl-article-meta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.wl-article-meta span {
  font-size: 12.5px; font-weight: 700; color: var(--brand);
  background: #fff; border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 999px;
}
.wl-article-head .wl-lede { font-size: 18px; color: var(--ink-soft); max-width: 660px; }
@media (max-width: 640px) { .wl-article-head { padding: 30px 22px 26px; border-radius: var(--radius-md); } }

.wl-article-body { max-width: 720px; margin: 0 auto; }
.wl-article-body h2 {
  font-size: clamp(22px, 3vw, 28px); margin: 46px 0 16px; padding-left: 18px;
  position: relative;
}
.wl-article-body h2::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 5px;
  border-radius: 4px; background: linear-gradient(180deg, var(--brand), var(--accent));
}
.wl-article-body h3 { font-size: 19px; margin: 28px 0 10px; color: var(--brand); }
.wl-article-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.wl-article-body ul, .wl-article-body ol { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin: 0 0 16px; padding-left: 4px; }
.wl-article-body ol { padding-left: 22px; }
.wl-article-body ul { list-style: none; }
.wl-article-body ul > li { position: relative; padding-left: 26px; margin-bottom: 10px; }
.wl-article-body ul > li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 3px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}
.wl-article-body ol li { margin-bottom: 10px; }
.wl-article-body strong { color: var(--ink); font-weight: 700; }
.wl-article-body a { color: var(--brand); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(79,70,229,.35); text-underline-offset: 3px; }
.wl-article-body a:hover { text-decoration-color: var(--brand); }
.wl-article-body code {
  background: var(--brand-light, #EEF0FF); background: rgba(79,70,229,.08); color: var(--brand);
  padding: 2px 7px; border-radius: 6px; font-size: 14px; font-weight: 700; font-family: ui-monospace, Menlo, monospace;
}

/* Branded pull-quote — optional component for a stronger visual break mid-article */
.wl-pull {
  margin: 34px 0; padding: 26px 28px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(79,70,229,.07), rgba(34,211,238,.06));
  border-left: 4px solid var(--brand);
  font-size: 20px; line-height: 1.55; font-weight: 600; color: var(--ink);
  font-style: normal;
}

/* Callout: gradient card + icon badge, not a flat wash box */
.wl-callout {
  background: linear-gradient(160deg, rgba(79,70,229,.06), rgba(34,211,238,.04));
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px; margin: 32px 0;
  position: relative;
}
.wl-callout h4 {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; text-transform: uppercase; letter-spacing: .05em; color: var(--brand);
  margin-bottom: 14px;
}
.wl-callout h4::before {
  content: '\2726'; display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 8px; font-size: 13px; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}
.wl-callout ul { margin-bottom: 0; }
.wl-callout ul > li::before { background: linear-gradient(135deg, var(--brand), var(--accent)); }

/* Blog hub grid */
.wl-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.wl-blog-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-md);
  padding: 26px; display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.wl-blog-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; opacity: 0;
  background: linear-gradient(90deg, var(--brand), var(--accent)); transition: opacity .2s;
}
.wl-blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.wl-blog-card:hover::before { opacity: 1; }
.wl-blog-card__cat {
  align-self: flex-start; font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand); background: rgba(79,70,229,.08); padding: 5px 11px; border-radius: 999px;
}
.wl-blog-card h3 { font-size: 19px; line-height: 1.35; }
.wl-blog-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.wl-blog-card__date { color: var(--muted); font-size: 13px; margin-top: auto; }
.wl-blog-card__link { font-weight: 700; font-size: 14.5px; color: var(--brand); }

/* Post-nav: branded split strip instead of two plain buttons */
.wl-post-nav {
  max-width: 720px; margin: 52px auto 0; padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(79,70,229,.05), rgba(34,211,238,.04));
  border: 1.5px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}

@media (max-width: 640px) { .wl-blog-grid { grid-template-columns: 1fr; } }
