/* ============================================================
   InzuHub design system (v3 overhaul layer)
   Loads after style.css. Establishes rhythm, depth, motion and
   reusable, creative section components. Mobile-first.
   ============================================================ */

:root {
  --brand: #004AAD;
  --brand-600: #003d8f;
  --brand-700: #003275;
  --brand-900: #001f47;
  --bright: #006dff;
  --ink: #101828;
  --body: #475467;
  --muted: #667085;
  --line: #e7ebf1;
  --tint: #f3f7fc;
  --tint-2: #eef4fb;
  --accent: #fd853a;
  --green: #12b76a;
  --r-lg: 20px;
  --r-md: 14px;
  --sh-sm: 0 1px 2px rgba(16,24,40,.05), 0 1px 3px rgba(16,24,40,.06);
  --sh-md: 0 8px 24px -12px rgba(16,24,40,.18);
  --sh-lg: 0 28px 60px -28px rgba(16,24,40,.32);
  --sh-brand: 0 24px 60px -24px rgba(0,74,173,.45);
}

/* ---------- Section rhythm + headers ---------- */
.inzu-section { padding-top: clamp(3.5rem, 2.5rem + 4vw, 6.5rem); padding-bottom: clamp(3.5rem, 2.5rem + 4vw, 6.5rem); }

.inzu-head { max-width: 720px; margin-inline: auto; text-align: center; }
.inzu-lead { font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem); line-height: 1.65; color: var(--body); }
.inzu-head .inzu-lead { margin-inline: auto; }

/* Eyebrow with a leading dot */
.inzu-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--brand);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  padding: .4rem .9rem .4rem .8rem; letter-spacing: 0;
  font-size: .8rem; text-transform: uppercase; font-weight: 700;
}
.inzu-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
}
@media (prefers-reduced-motion: no-preference) {
  .inzu-eyebrow::before { animation: inzu-pulse 2.4s ease-out infinite; }
}
@keyframes inzu-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,74,173,.35); }
  70%  { box-shadow: 0 0 0 7px rgba(0,74,173,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,74,173,0); }
}

/* ---------- Auto-responsive grids (replace brittle columns) ---------- */
.inzu-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); align-items: stretch; }
.inzu-grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.inzu-grid--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.inzu-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.inzu-grid > .wp-block-group { margin: 0 !important; height: 100%; }

/* ---------- Cards (one consistent system) ---------- */
.wp-block-group.is-style-card,
.wp-block-group.is-style-card-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.wp-block-group.is-style-card:hover,
.wp-block-group.is-style-card-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: #d4e2f7;
}
/* feature cards get a quiet gradient top accent on hover */
.wp-block-group.is-style-card-feature::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: linear-gradient(90deg, var(--brand), var(--bright));
  opacity: 0; transition: opacity .3s ease;
}
.wp-block-group.is-style-card-feature:hover::after { opacity: 1; }

/* ---------- Icon chips ---------- */
.inzu-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, #e7eef9, #f3f7fc);
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(0,74,173,.08);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.inzu-icon .inzu-svg { width: 25px; height: 25px; }
.is-style-card:hover .inzu-icon, .is-style-card-feature:hover .inzu-icon {
  background: linear-gradient(135deg, var(--brand), var(--bright));
  color: #fff; box-shadow: 0 10px 20px -8px rgba(0,74,173,.5);
}

/* ---------- Buttons: consistent, with depth ---------- */
.wp-block-button:not(.is-style-ghost):not(.is-style-outline-white):not(.is-style-solid-white) > .wp-block-button__link {
  background: linear-gradient(135deg, var(--brand) 0%, #0a5fd0 100%);
  box-shadow: 0 10px 22px -10px rgba(0,74,173,.55);
  border: 0;
}
.wp-block-button:not(.is-style-ghost):not(.is-style-outline-white):not(.is-style-solid-white) > .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(0,74,173,.6);
}
.wp-block-button.is-style-ghost > .wp-block-button__link {
  background: #fff; border: 1px solid var(--line); color: var(--ink); box-shadow: var(--sh-sm);
}
.wp-block-button.is-style-ghost > .wp-block-button__link:hover { border-color: #c7d6ee; color: var(--brand); background: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.inzu-hero { position: relative; overflow: hidden; isolation: isolate; }
.inzu-hero { background: linear-gradient(180deg, var(--tint) 0%, #ffffff 72%); }
/* dotted texture, faded */
.inzu-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(0,74,173,.10) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(120% 80% at 70% 0%, #000 0%, transparent 60%);
  mask-image: radial-gradient(120% 80% at 70% 0%, #000 0%, transparent 60%);
  opacity: .7;
}
/* warm + cool accent blobs */
.inzu-hero::after {
  content: ""; position: absolute; z-index: -1; right: -120px; top: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(0,109,255,.22), transparent 65%);
  filter: blur(20px);
}
.inzu-hero__eyebrow .inzu-eyebrow { background: rgba(255,255,255,.8); backdrop-filter: blur(6px); }

/* Hero figure: layered dashboard + floating chips */
.inzu-herofig { position: relative; }
.inzu-herofig .inzu-mock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 1.25rem;
}
.inzu-herofig .inzu-mock__bar { display: flex; gap: .4rem; margin-bottom: .9rem; }
.inzu-herofig .inzu-mock__bar span { width: 10px; height: 10px; border-radius: 50%; background: #e4e7ec; }
.inzu-herofig .inzu-mock__bar span:nth-child(1){ background:#febbb6;}
.inzu-herofig .inzu-mock__bar span:nth-child(2){ background:#fde6a8;}
.inzu-herofig .inzu-mock__bar span:nth-child(3){ background:#bff0d4;}
.inzu-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-sm); }

/* floating notification chip */
.inzu-float {
  position: absolute; z-index: 2;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--sh-md);
  padding: .7rem .9rem; display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; font-weight: 600; color: var(--ink);
  animation: inzu-bob 4s ease-in-out infinite;
}
.inzu-float--pay { left: -14px; bottom: 26px; }
.inzu-float--pay .inzu-float__dot { background: var(--green); }
.inzu-float__dot { width: 30px; height: 30px; border-radius: 9px; background: var(--brand); color:#fff; display:inline-flex; align-items:center; justify-content:center; }
.inzu-float__dot .inzu-svg { width: 17px; height: 17px; }
.inzu-float small { display:block; font-weight:500; color: var(--muted); font-size:.72rem; }
@keyframes inzu-bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-7px);} }

/* trust line with checks */
.inzu-trustline { display:flex; flex-wrap:wrap; gap:.4rem 1.25rem; color: var(--muted); font-size:.9rem; font-weight:500; }
.inzu-trustline > * { display:flex; align-items:center; gap:.4rem; }

/* ---------- Trust strip ---------- */
.inzu-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.inzu-chip {
  background: var(--tint); border: 1px solid #dfe8f5; box-shadow: none;
  color: var(--ink); font-weight: 600; gap:.5rem;
}
.inzu-chip .inzu-svg { width: 18px; height: 18px; color: var(--brand); }

/* ---------- Platform cards (numbered, accent) ---------- */
.inzu-platform { border-top: 3px solid transparent; }
.inzu-platform.is-style-card-feature::after { display:none; }
.inzu-platform .inzu-platform__link { font-weight: 600; display:inline-flex; align-items:center; gap:.35rem; }

/* ---------- Property tiles ---------- */
/* Property-type tiles: clean vertical layout */
.inzu-tile { display: block; padding: 1.6rem !important; }
.inzu-tile .inzu-icon { width: 46px; height: 46px; margin: 0 0 1rem; border-radius: 12px; }
.inzu-tile .inzu-icon .inzu-svg { width: 23px; height: 23px; }
.inzu-tile h3 { font-size: 1.05rem !important; margin: 0 0 .35rem !important; }
.inzu-tile p { margin: 0; font-size: .92rem; line-height: 1.55; }

/* ============================================================
   PAYMENTS visual
   ============================================================ */
.inzu-payviz { display:grid; gap: .9rem; }
.inzu-payrow { display:flex; align-items:center; gap:.85rem; background:#fff; border:1px solid var(--line); border-radius:14px; padding:.9rem 1rem; box-shadow: var(--sh-sm); font-weight:600; color:var(--ink); }
.inzu-payrow .inzu-icon { width:40px; height:40px; margin:0; border-radius:11px; }
.inzu-payrow .inzu-icon .inzu-svg { width:20px; height:20px; }
.inzu-payrow .inzu-payrow__meta { margin-left:auto; font-weight:600; color:var(--green); font-size:.9rem; }
.inzu-paysettle { background: linear-gradient(135deg, var(--brand), var(--brand-700)); color:#fff; border:0; }
.inzu-paysettle .inzu-payrow__meta { color: rgba(255,255,255,.85); }
.inzu-paysettle .inzu-icon { background: rgba(255,255,255,.16); color:#fff; box-shadow:none; }

/* ============================================================
   COMPARISON ("vs") cards
   ============================================================ */
.inzu-vs { display:grid; gap:1.25rem; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); }
.inzu-vs__col { border:1px solid var(--line); border-radius: var(--r-lg); padding:1.75rem; background:#fff; box-shadow: var(--sh-sm); }
.inzu-vs__col--win { border-color:#cfe0fb; box-shadow: var(--sh-md); background: linear-gradient(180deg, #f7faff, #fff); }
.inzu-vs__title { display:flex; align-items:center; gap:.6rem; font-weight:800; font-size:1.15rem; color:var(--ink); margin-bottom:1rem; }
.inzu-vs__list { list-style:none; margin:0; padding:0; }
.inzu-vs__list li { display:flex; gap:.65rem; align-items:flex-start; padding:.6rem 0; border-top:1px solid var(--line); color:var(--body); }
.inzu-vs__list li:first-child { border-top:0; }
.inzu-vs__list li::before { content:"✕"; color:#b42318; font-weight:800; flex:0 0 auto; line-height:1.5; }
.inzu-vs__col--win .inzu-vs__list li::before { content:"✓"; color:var(--green); }

/* ============================================================
   CTA band
   ============================================================ */
.inzu-cta { position: relative; overflow: hidden; isolation: isolate; }
.inzu-cta::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1.4px);
  background-size: 26px 26px; opacity:.5;
}
.inzu-cta::after {
  content:""; position:absolute; z-index:-1; left:-100px; bottom:-160px;
  width:480px; height:480px; border-radius:50%;
  background: radial-gradient(circle, rgba(0,109,255,.4), transparent 65%); filter: blur(30px);
}

/* ============================================================
   MOTION (scroll reveal)
   ============================================================ */
.inzu-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.inzu-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .inzu-reveal { opacity: 1 !important; transform: none !important; }
  .inzu-float { animation: none; }
}

/* ============================================================
   Section dividers / soft tints applied via bg classes in markup
   ============================================================ */
.has-bg-soft-background-color { background: var(--tint) !important; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 900px) {
  .inzu-herofig { margin-top: 2.5rem; }
}
@media (max-width: 600px) {
  .inzu-float--pay { left: 8px; bottom: 12px; }
  .inzu-hero::after { width: 320px; height: 320px; right: -80px; }
}

/* ---------- Two-column responsive splits ---------- */
.inzu-two { display: grid; gap: clamp(2rem, 4vw, 4rem); grid-template-columns: 1fr 1fr; align-items: center; }
.inzu-two--hero { grid-template-columns: 1.05fr .95fr; }
.inzu-two > * { min-width: 0; }
@media (max-width: 900px) {
  .inzu-two, .inzu-two--hero { grid-template-columns: 1fr; gap: 2rem; }
}

/* Stat grid inside hero mock */
.inzu-statgrid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.inzu-statgrid .inzu-stat { padding: .9rem 1rem; }
.inzu-statgrid .inzu-stat span { display:block; }
.inzu-stat__label { font-size: .78rem; color: var(--muted); }
.inzu-stat__value { font-size: 1.5rem; font-weight: 800; color: var(--brand); letter-spacing:-.02em; }
.inzu-stat__value--green { color: var(--green); }
.inzu-stat--wide { grid-column: 1 / -1; }

/* Section header spacing helper */
.inzu-head { margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.25rem); }

/* Footer logo: force the dark vector logo to clean white on the dark footer */
.inzu-footer-logo img { filter: brightness(0) invert(1); }


/* ============================================================
   Responsive (clean). Gutters/alignfull handled idiomatically by
   useRootPaddingAwareAlignments + root padding in theme.json.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
.inzu-two { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
.inzu-two--hero { grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); }
.inzu-two > *, .inzu-mock, .inzu-mock * { min-width: 0; }
.inzu-statgrid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }

@media (max-width: 900px) {
  .inzu-two, .inzu-two--hero { grid-template-columns: minmax(0,1fr); }
  .inzu-herofig { margin-top: 2rem; }
}
@media (max-width: 600px) {
  .inzu-statgrid { grid-template-columns: minmax(0,1fr); }
  .wp-block-buttons { flex-wrap: wrap; }
  .inzu-hero .wp-block-button, .inzu-cta .wp-block-button { flex: 1 1 auto; }
  .inzu-header .wp-block-site-logo img { width: 132px; }
}

/* ============================================================
   Mobile nav: hide redundant header CTA + robust overlay
   ============================================================ */
@media (max-width: 600px) {
  /* CTA already lives in the hero; remove from header on mobile */
  .inzu-header .wp-block-buttons { display: none !important; }
}

/* Hamburger (open) button styling */
.wp-block-navigation__responsive-container-open {
  color: #101828;
}
.wp-block-navigation__responsive-container-open svg { width: 28px; height: 28px; }

/* Full-screen overlay when the menu is open */
.wp-block-navigation__responsive-container.is-menu-open {
  position: fixed !important;
  inset: 0 !important;
  z-index: 100000 !important;
  background: #ffffff !important;
  padding: 1.5rem 1.5rem 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-close {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
  margin-top: 3rem;
  width: 100%;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-navigation-item {
  display: flex !important;
  flex-direction: column !important;
  width: 100%;
  align-items: flex-start;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
  font-family: "Plus Jakarta Sans", var(--wp--preset--font-family--heading);
  font-size: 1.35rem !important;
  font-weight: 600;
  color: #101828 !important;
  padding: 0.7rem 0 !important;
  width: 100%;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content::after { display: none; }
/* Close (X) button top-right */
.wp-block-navigation__responsive-container-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: #101828;
}
.wp-block-navigation__responsive-container-close svg { width: 28px; height: 28px; }
/* A CTA inside the open menu */
.wp-block-navigation__responsive-container.is-menu-open::after {
  content: "";
}

/* ============================================================
   Bold copy uses brand blue (not just heavier weight)
   ============================================================ */
strong, b { color: var(--brand); }
/* Keep legible on dark/coloured/!light surfaces */
.inzu-cta strong, .inzu-cta b,
.inzu-footer strong, .inzu-footer b,
.has-brand-gradient-background strong, .has-brand-gradient-background b,
.inzu-paysettle strong, .inzu-paysettle b,
.wp-block-button strong, .wp-block-button b,
.has-white-color strong, .has-white-color b { color: inherit; }

/* ============================================================
   FIX: header backdrop-filter creates a containing block that
   traps the mobile nav overlay (position:fixed) inside the header.
   Use a solid header background instead so the overlay covers the
   full viewport.
   ============================================================ */
.inzu-header {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* ============================================================
   Mobile menu overlay - polished
   ============================================================ */
@media (max-width: 600px) {
  .wp-block-navigation__responsive-container.is-menu-open {
    position: fixed !important;
    inset: 0 !important;
    left: 0 !important; right: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    z-index: 100000 !important;
    background: #ffffff !important;
    padding: 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
  }
  /* brand logo, top-left of the panel */
  .wp-block-navigation__responsive-container.is-menu-open::before {
    content: "";
    position: fixed; top: 1.6rem; left: 1.5rem;
    width: 122px; height: 30px;
    z-index: 100001;
    background: url(../logos/logo-full-dark.png) left center / contain no-repeat;
  }
  .wp-block-navigation__responsive-container-close { position: fixed !important; top: 1.65rem !important; right: 1.5rem !important; color: #101828 !important; z-index: 100001 !important; }
  .wp-block-navigation__responsive-container-close svg { width: 28px; height: 28px; }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin-top: 3rem !important;
    width: 100%;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100%;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
    width: 100%;
    border-bottom: 1px solid #eef0f4;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.15rem !important;
    font-weight: 600;
    color: #101828 !important;
    padding: 1rem 0 !important;
    display: block;
    width: 100%;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content::after { display: none; }

  /* In-menu CTA button */
  .wp-block-navigation__responsive-container.is-menu-open .inzu-menu-cta { border-bottom: 0; margin-top: 1.75rem; }
  .wp-block-navigation__responsive-container.is-menu-open .inzu-menu-cta .wp-block-navigation-item__content {
    background: linear-gradient(135deg, #004AAD 0%, #0a5fd0 100%);
    color: #ffffff !important;
    text-align: center;
    border-radius: 12px;
    padding: 0.95rem 1rem !important;
    box-shadow: 0 10px 22px -10px rgba(0,74,173,.55);
  }
}
/* Hide the in-menu CTA on desktop (header already has Start free there) */
@media (min-width: 601px) { .inzu-menu-cta { display: none !important; } }

/* Tighten mobile menu: remove stray native top spacing above first item */
@media (max-width: 600px) {
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-close,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog { margin: 0 !important; padding: 0 !important; }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content { margin-top: 3rem !important; }
}

/* Mobile menu: top-align content + remove default list spacing (kills the big gap) */
@media (max-width: 600px) {
  .wp-block-navigation__responsive-container.is-menu-open { justify-content: flex-start !important; }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog { display: block !important; }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container { margin: 0 !important; padding: 0 !important; list-style: none !important; }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content { margin-top: 3.25rem !important; align-self: stretch; }
}

/* Remove native top padding on the open-menu content (was 56px, caused the gap) */
@media (max-width: 600px) {
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    padding-top: 0 !important;
    margin-top: 3rem !important;
  }
}

/* ============================================================
   Property-types BENTO (fills the grid; no empty row)
   Row1: Hotels(2) + Boutique(1) + Resorts(1)
   Row2: Guesthouses(1) + B&Bs(1) + Airbnbs(2)
   Row3: Villas(2) + Lodges(2)
   ============================================================ */
.inzu-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: stretch; }
.inzu-bento > * { margin: 0 !important; }
.inzu-bentocard { padding: 1.6rem; }
.inzu-bentocard h3 { font-size: 1.05rem !important; margin: 0 0 .35rem !important; }
.inzu-bentocard p { margin: 0; font-size: .92rem; line-height: 1.55; color: var(--body); }
.inzu-bentocard .inzu-icon { margin: 0 0 1rem; }

/* Wide cards: span 2, comfortable horizontal layout */
.inzu-bento__wide { grid-column: span 2; display: flex; gap: 1.25rem; align-items: center; }
.inzu-bento__wide .inzu-icon { margin: 0; flex: 0 0 auto; }
.inzu-bento__wide .inzu-bentotext h3 { font-size: 1.2rem !important; margin: 0 0 .35rem !important; }
.inzu-bento__wide .inzu-bentotext p { margin: 0; }

/* Feature (Hotels): brand gradient focal card */
.inzu-bento__feature { background: linear-gradient(135deg, #004AAD 0%, #0a5fd0 100%) !important; border: 0 !important; box-shadow: 0 18px 40px -18px rgba(0,74,173,.55) !important; }
.inzu-bento__feature h3, .inzu-bento__feature p { color: #fff !important; }
.inzu-bento__feature p { opacity: .92; }
.inzu-bento__feature .inzu-bentotext h3 { font-size: 1.4rem !important; }
.inzu-bento__feature .inzu-icon { background: rgba(255,255,255,.18) !important; color: #fff !important; box-shadow: none !important; }
.inzu-bento__feature:hover .inzu-icon { background: rgba(255,255,255,.28) !important; color: #fff !important; }

@media (max-width: 900px) {
  .inzu-bento { grid-template-columns: repeat(2, 1fr); }
  .inzu-bento__wide { grid-column: span 1; display: block; }
  .inzu-bento__wide .inzu-icon { margin: 0 0 1rem; }
}
@media (max-width: 600px) {
  .inzu-bento { grid-template-columns: 1fr; }
}

/* Bento wide-card feature tags */
.inzu-bento__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; }
.inzu-bento__tags span {
  font-size: .78rem; font-weight: 600;
  padding: .25rem .65rem; border-radius: 999px;
  background: #e7eef9; color: var(--brand);
}
.inzu-bento__feature .inzu-bento__tags span { background: rgba(255,255,255,.16); color: #fff; }

/* Even 4-column grid (8 feature cards fill exactly 2 rows) */
.inzu-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: stretch; }
.inzu-grid4 > * { margin: 0 !important; height: 100%; }
@media (max-width: 900px) { .inzu-grid4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .inzu-grid4 { grid-template-columns: 1fr; } }

/* ============================================================
   Refined card hover (remove hard top-accent line; soft lift)
   ============================================================ */
.wp-block-group.is-style-card-feature::after { display: none !important; }
.wp-block-group.is-style-card:hover,
.wp-block-group.is-style-card-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -26px rgba(0,74,173,.30), 0 6px 16px -10px rgba(16,24,40,.10) !important;
  border-color: #dbe6f7 !important;
}

/* Hero trust line: distinct blue icon chips (not basic checks) */
.inzu-trustline { gap: .65rem 1.75rem !important; }
.inzu-trust { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; color: #344054; font-size: .92rem; }
.inzu-trust__ic {
  width: 28px; height: 28px; border-radius: 8px; flex: 0 0 auto;
  background: #e7eef9; color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(0,74,173,.08);
}
.inzu-trust__ic .inzu-svg { width: 15px; height: 15px; }

/* ============================================================
   "Why InzuHub" cards: editorial numbers + per-card accent
   ============================================================ */
.inzu-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.inzu-why__card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 2.1rem 1.9rem 1.9rem; box-shadow: var(--sh-sm);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.inzu-why__card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px -26px rgba(16,24,40,.22); border-color: #e2e8f3; }
.inzu-why__num {
  position: absolute; top: .5rem; right: 1.3rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif; font-weight: 800;
  font-size: 4rem; line-height: 1; color: var(--c); opacity: .12; pointer-events: none;
}
.inzu-why__card .inzu-icon { background: var(--cbg); color: var(--c); box-shadow: none; position: relative; z-index: 1; }
.inzu-why__card h3 { font-size: 1.2rem; font-weight: 700; margin: 0 0 .5rem; }
.inzu-why__card p { margin: 0; color: var(--body); line-height: 1.6; }
.inzu-why--blue   { --c: #004AAD; --cbg: #e7eef9; }
.inzu-why--green  { --c: #039855; --cbg: #e6f6ee; }
.inzu-why--orange { --c: #e76f25; --cbg: #fff1e6; }
@media (max-width: 860px) { .inzu-why { grid-template-columns: 1fr; } }

/* ============================================================
   PLATFORMS: product cards with app previews + arrow-circle link
   ============================================================ */
.inzu-plat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.inzu-plat {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.inzu-plat:hover { transform: translateY(-5px); box-shadow: 0 24px 52px -28px rgba(16,24,40,.26); border-color: #dbe6f7; }

/* Preview ("peek" into the app) */
.inzu-plat__preview { padding: 1.1rem 1.1rem 0; background: linear-gradient(180deg, #eef4fb 0%, #f8fbff 100%); border-bottom: 1px solid var(--line); }
.pv-bar { display: flex; gap: .35rem; margin-bottom: .7rem; }
.pv-bar span { width: 8px; height: 8px; border-radius: 50%; }
.pv-bar span:nth-child(1){ background:#febbb6; } .pv-bar span:nth-child(2){ background:#fde6a8; } .pv-bar span:nth-child(3){ background:#bff0d4; }
.pv-body { background: #fff; border: 1px solid var(--line); border-bottom: 0; border-radius: 12px 12px 0 0; padding: .85rem; }
/* booking */
.pv-img { height: 56px; border-radius: 8px; background: linear-gradient(135deg, #cfe0fb, #e7eef9); margin-bottom: .6rem; }
.pv-row { display: flex; align-items: center; justify-content: space-between; }
.pv-price { font-weight: 800; color: var(--ink); font-size: .92rem; } .pv-price small { font-weight: 500; color: var(--muted); font-size: .7rem; }
.pv-btn { background: var(--brand); color: #fff; font-weight: 600; font-size: .74rem; padding: .32rem .75rem; border-radius: 7px; }
/* guest chat */
.pv-chat { display: flex; flex-direction: column; gap: .4rem; }
.pv-bubble { font-size: .72rem; padding: .35rem .6rem; border-radius: 10px; max-width: 82%; }
.pv-bubble--in { background: #eef1f5; color: #344054; align-self: flex-start; border-bottom-left-radius: 3px; }
.pv-bubble--out { background: var(--brand); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.pv-total { margin-top: .15rem; font-size: .72rem; font-weight: 700; color: var(--ink); }
/* manager tiles */
.pv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.pv-tile { background: #f7faff; border: 1px solid var(--line); border-radius: 8px; padding: .5rem .6rem; }
.pv-tile b { display: block; color: var(--brand); font-size: .92rem; } .pv-tile small { color: var(--muted); font-size: .66rem; }

/* Body */
.inzu-plat__body { padding: 1.6rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.inzu-plat__who { align-self: flex-start; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--brand); background: #e7eef9; padding: .25rem .65rem; border-radius: 999px; margin-bottom: .8rem; }
.inzu-plat__body h3 { font-size: 1.2rem; font-weight: 700; margin: 0 0 .45rem; }
.inzu-plat__body p { margin: 0 0 1.2rem; color: var(--body); line-height: 1.6; }
.inzu-plat__link { margin-top: auto; display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--brand); font-size: .95rem; }
.inzu-plat__arrow { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; background: #e7eef9; color: var(--brand); display: inline-flex; align-items: center; justify-content: center; transition: background .25s ease, color .25s ease, transform .25s ease; }
.inzu-plat__arrow svg { width: 15px; height: 15px; }
.inzu-plat:hover .inzu-plat__arrow { background: var(--brand); color: #fff; transform: translateX(3px); }

@media (max-width: 860px) { .inzu-plat-grid { grid-template-columns: 1fr; } }

/* platforms: equalize preview height + manager mini bar-chart */
.inzu-plat .pv-body { height: 124px; box-sizing: border-box; overflow: hidden; }
.pv-mgr { display: flex; flex-direction: column; gap: .5rem; justify-content: center; }
.pv-chart { display: flex; align-items: flex-end; gap: .28rem; height: 30px; }
.pv-chart span { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #5b91e6, #004AAD); opacity: .9; }
.pv-chart span:last-child { background: linear-gradient(180deg, #ffb48f, #fd853a); opacity: 1; }

/* ============================================================
   PAYMENTS: methods funnel into one settlement
   ============================================================ */
.inzu-payflow { display: flex; flex-direction: column; }
.pf-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pf-method {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.5rem 1rem 1.3rem; display: flex; flex-direction: column; align-items: center; gap: .75rem;
  text-align: center; box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pf-method:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(16,24,40,.22); border-color: #dbe6f7; }
.pf-method .inzu-icon { margin: 0; }
.pf-method strong { font-size: .9rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.pf-rate {
  position: absolute; top: .55rem; right: .55rem; font-style: normal; font-size: .7rem; font-weight: 800;
  padding: .16rem .5rem; border-radius: 999px; background: #eef1f5; color: #667085;
}
.pf-rate--g { background: #e6f6ee; color: #039855; }
.pf-merge { width: 100%; height: 92px; display: block; }
.pf-merge path { fill: none; stroke: #bcd0ee; stroke-width: 2; }
.pf-settle {
  display: flex; align-items: center; gap: 1rem; color: #fff;
  background: linear-gradient(135deg, #004AAD 0%, #0a5fd0 100%); border-radius: 18px;
  padding: 1.3rem 1.5rem; box-shadow: 0 22px 46px -22px rgba(0,74,173,.55);
}
.pf-settle__ic { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; }
.pf-settle__ic svg { width: 24px; height: 24px; }
.pf-settle__t { flex: 1; display: flex; flex-direction: column; gap: .15rem; }
.pf-settle__t strong { font-size: 1.05rem; font-weight: 700; }
.pf-settle__t span { font-size: .85rem; color: rgba(255,255,255,.82); line-height: 1.4; }
.pf-settle__badge { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; background: rgba(255,255,255,.16); color: #fff; font-size: .78rem; font-weight: 700; padding: .4rem .75rem; border-radius: 999px; }
.pf-settle__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #5ce0a0; }
@media (max-width: 560px) { .pf-method strong { font-size: .8rem; } .pf-settle__t span { display: none; } .pf-settle { padding: 1.1rem 1.2rem; } }

/* fix: settlement title was inheriting dark ink over blue */
.pf-settle__t strong { color: #fff !important; }

/* ============================================================
   "Keep more" callout: playful direct-vs-OTA
   ============================================================ */
.inzu-keep {
  display: flex; gap: 1rem; margin-top: 1.4rem; padding: 1.3rem 1.4rem;
  border-radius: 16px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fff4ea 0%, #fff9f3 60%, #fefcff 100%);
  border: 1px solid #ffe3c7;
}
.inzu-keep__ic {
  width: 46px; height: 46px; flex: 0 0 auto; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #fd853a, #f9690e); color: #fff;
  box-shadow: 0 8px 18px -8px rgba(249,105,14,.6);
}
.inzu-keep__ic svg { width: 24px; height: 24px; }
.inzu-keep__body { display: flex; flex-direction: column; gap: .35rem; }
.inzu-keep__body strong { font-size: 1rem; font-weight: 800; color: var(--ink); }
.inzu-keep__body p { margin: 0; color: #6b5644; line-height: 1.55; font-size: .92rem; }
.inzu-keep__body p b { color: #c2410c; font-weight: 800; }
.inzu-keep__chips { display: flex; align-items: center; gap: .55rem; margin-top: .55rem; flex-wrap: wrap; }
.kc { font-size: .8rem; font-weight: 700; padding: .35rem .75rem; border-radius: 999px; white-space: nowrap; }
.kc--bad { background: #fbe7e3; color: #b42318; text-decoration: line-through; text-decoration-color: rgba(180,35,24,.5); }
.kc--good { background: #e6f6ee; color: #039855; box-shadow: 0 0 0 3px rgba(18,183,106,.12); }
.kc__arrow { width: 18px; height: 18px; color: #fd853a; flex: 0 0 auto; }
@media (max-width: 560px) { .inzu-keep { flex-direction: column; } }

/* partner logos */
.inzu-partner-logo { height: 30px; width: auto; display: block; margin: 0 auto 1.1rem 0 !important; }
.pf-powered { display: flex; align-items: center; justify-content: center; gap: .6rem; margin-top: 1.15rem; }
.pf-powered span { font-size: .82rem; font-weight: 600; color: var(--muted); }
.pf-powered img { height: 21px; width: auto; display: block; }

/* ============================================================
   STANDALONE: build-your-stack (core + add-ons)
   ============================================================ */
.inzu-stack { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2.75rem; }

/* shared ticks */
.core__list li, .addon__list li { position: relative; padding-left: 1.7rem; }
.core__list li::before, .addon__list li::before { content: ""; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%; background: #e7eef9; }
.core__list li::after, .addon__list li::after { content: ""; position: absolute; left: 6px; top: 4px; width: 4px; height: 8px; border: solid var(--brand); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* core foundation card */
.inzu-stack__core {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 1.5rem 2.5rem; align-items: center;
  padding: 2.1rem 2.2rem; border-radius: 22px; border: 1px solid #d7e3f6;
  background: linear-gradient(135deg, #eef4fc 0%, #ffffff 70%);
  box-shadow: 0 20px 48px -32px rgba(0,74,173,.45);
}
.core__badge { display: inline-flex; align-items: center; gap: .45rem; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: #039855; background: #e6f6ee; padding: .28rem .7rem; border-radius: 999px; }
.core__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #12b76a; }
.core__intro h3 { font-size: 1.45rem; font-weight: 800; margin: .8rem 0 .5rem; color: var(--ink); }
.core__intro p { margin: 0; color: var(--body); line-height: 1.6; }
.core__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.4rem; }
.core__list li { font-weight: 600; font-size: .92rem; color: var(--ink); }

/* connector */
.inzu-stack__plus { display: flex; align-items: center; gap: 1rem; }
.inzu-stack__plus::before, .inzu-stack__plus::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.inzu-stack__plus span { display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); white-space: nowrap; }
.inzu-stack__plus svg { width: 16px; height: 16px; }

/* add-on cards */
.inzu-stack__addons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.addon { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.7rem; box-shadow: var(--sh-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.addon:hover { transform: translateY(-4px); box-shadow: 0 22px 46px -28px rgba(16,24,40,.24); border-color: #dbe6f7; }
.addon__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.addon__logo { height: 30px; width: auto; display: block; }
.addon__toggle { position: relative; flex: 0 0 auto; width: 42px; height: 24px; border-radius: 999px; background: var(--brand); box-shadow: inset 0 1px 3px rgba(0,0,0,.18); }
.addon__toggle::after { content: ""; position: absolute; top: 3px; right: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.25); }
.addon__tag { align-self: flex-start; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--brand); background: #e7eef9; padding: .22rem .6rem; border-radius: 999px; margin-bottom: .8rem; }
.addon h4 { font-size: 1.1rem; font-weight: 700; margin: 0 0 .45rem; color: var(--ink); }
.addon > p { margin: 0 0 1.1rem; color: var(--body); line-height: 1.55; font-size: .92rem; }
.addon__list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.addon__list li { font-size: .89rem; color: #344054; }
.addon__by { margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--line); font-size: .78rem; font-weight: 600; color: var(--muted); }

@media (max-width: 860px) {
  .inzu-stack__core { grid-template-columns: 1fr; gap: 1.3rem; padding: 1.7rem; }
  .inzu-stack__addons { grid-template-columns: 1fr; }
}
@media (max-width: 460px) { .core__list { grid-template-columns: 1fr; } }

/* keep this heading on one line on larger screens */
@media (min-width: 768px) { .inzu-oneline { white-space: nowrap; } }

/* ============================================================
   WHY SWITCH: head-to-head versus grid
   ============================================================ */
.vs2 {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 24px 56px -34px rgba(16,24,40,.3);
}
.vs2__h { display: flex; align-items: center; gap: .7rem; padding: 1.5rem 1.7rem; font-weight: 800; font-size: 1.1rem; }
.vs2__h--us { background: linear-gradient(135deg, #004AAD 0%, #0a5fd0 100%); color: #fff; }
.vs2__h--them { background: #eef0f4; color: #7a8499; }
.vs2__name { line-height: 1; }
.vs2__tag { margin-left: auto; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; background: rgba(255,255,255,.18); color: #fff; padding: .28rem .65rem; border-radius: 999px; }
.vs2__c { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.7rem; font-size: .96rem; border-top: 1px solid; }
.vs2__c--us { background: #f5f9fe; color: var(--ink); font-weight: 600; border-top-color: #e4eefb; }
.vs2__c--them { background: #fafbfc; color: #939cad; border-top-color: #eef1f5; }
.vs2__ok, .vs2__no { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.vs2__ok { background: #12b76a; color: #fff; box-shadow: 0 3px 8px -2px rgba(18,183,106,.5); }
.vs2__no { background: #eceef2; color: #b0b7c3; }
.vs2__ok svg, .vs2__no svg { width: 13px; height: 13px; }
.vs2__badge {
  position: absolute; top: 1.5rem; left: 50%; transform: translateX(-50%);
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--brand); font-weight: 900; font-size: .85rem; letter-spacing: .02em;
  box-shadow: 0 6px 18px -4px rgba(16,24,40,.35); border: 2px solid #eef2f8; z-index: 2;
}
.vs2__c--us:hover { background: #eef5fe; }
@media (max-width: 720px) {
  .vs2 { grid-template-columns: 1fr; }
  .vs2__h--them { margin-top: .5rem; }
  .vs2__badge { display: none; }
  .vs2__tag { font-size: .62rem; }
}

/* full-width sections carry their own padding; drop root block-gap margins
   that leak the white page background between adjacent coloured sections */
.wp-block-group.alignfull.inzu-section { margin-top: 0; margin-bottom: 0; }

/* ============================================================
   FOOTER (reworked): proper logo, polished socials, centered copy
   ============================================================ */
.inzu-footer { padding: 4.5rem 0 2.4rem; }
.inzu-footer-main { gap: 3rem 4rem; align-items: flex-start; }
.inzu-footer-brand { max-width: 340px; }
.inzu-footer-logo { display: inline-block; }
.inzu-footer-logo img { height: 42px; width: auto; display: block; filter: brightness(0) invert(1); }
.inzu-footer-tagline { margin: 1.2rem 0 0; color: rgba(255,255,255,.62); line-height: 1.6; font-size: .93rem; }

/* social icons */
.inzu-footer-social { margin-top: 1.5rem !important; gap: .6rem !important; }
.inzu-footer-social .wp-social-link { margin: 0 !important; padding: 0 !important; background: transparent !important; }
.inzu-footer-social .wp-social-link a { width: 42px; height: 42px; padding: 0; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.inzu-footer-social .wp-social-link a:hover { background: #fff; border-color: #fff; transform: translateY(-3px); }
.inzu-footer-social .wp-social-link svg { width: 19px; height: 19px; fill: #fff; transition: fill .2s ease; }
.inzu-footer-social .wp-social-link a:hover svg { fill: #0a3d8f; }

/* link columns */
.inzu-footer-cols { gap: 2.5rem 4rem; }
.inzu-footer-col { min-width: 140px; }
.inzu-footer-heading { font-size: .78rem !important; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5) !important; margin: 0 0 1.15rem !important; font-weight: 700; }
.inzu-footer-list { display: flex; flex-direction: column; gap: .7rem; margin: 0; padding: 0; }
.inzu-footer-list li { margin: 0; }
.inzu-footer-list a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .95rem; transition: color .2s ease; }
.inzu-footer-list a:hover { color: #fff; }

/* divider + centered copyright */
.inzu-footer-rule { margin: 3rem 0 1.7rem !important; border: none !important; border-top: 1px solid rgba(255,255,255,.12) !important; background: none !important; }
.inzu-footer-copy { text-align: center; margin: 0; color: rgba(255,255,255,.55); font-size: .88rem; }
.inzu-footer-copy .inzu-flag { font-style: normal; }

@media (max-width: 860px) {
  .inzu-footer-main { gap: 2.6rem; }
  .inzu-footer-brand { max-width: none; flex: 1 1 100%; }
}
@media (max-width: 600px) {
  .inzu-footer { padding: 3.2rem 1.5rem 2rem; }
  .inzu-footer-cols { gap: 2rem 1.5rem; width: 100%; }
  .inzu-footer-col { min-width: 0; flex: 1 1 42%; }
}

/* ============================================================
   FOOTER fixes v2 + TRUST proof bar
   ============================================================ */
/* social: single clean chip (no double border) */
.inzu-footer-social .wp-social-link,
.inzu-footer-social .wp-social-link a { border: 0 !important; box-shadow: none !important; outline: 0 !important; }
.inzu-footer-social .wp-social-link a { background: rgba(255,255,255,.08); }
.inzu-footer-social .wp-social-link a:hover { background: #fff; }

/* divider spans the full footer width */
.inzu-footer-rule.alignfull { width: 100%; max-width: none; margin-left: 0; margin-right: 0; }

/* bottom: copyright pinned to the edge, made-in-kenya centered */
.inzu-footer-bottom { display: flex; align-items: center; gap: 1rem; }
.ffb-side { flex: 1 1 0; font-size: .88rem; color: rgba(255,255,255,.55); }
.ffb-left { text-align: left; }
.ffb-right { text-align: right; }
.ffb-center { flex: 0 1 auto; text-align: center; font-size: .88rem; color: rgba(255,255,255,.6); }
.inzu-flag { font-style: normal; }
@media (max-width: 560px) {
  .inzu-footer-bottom { flex-direction: column; gap: .4rem; }
  .ffb-side { flex: none; text-align: center; }
  .ffb-right { display: none; }
}

/* trust proof bar */
.inzu-proofbar {
  display: flex; align-items: stretch; max-width: 940px; margin: 1.6rem auto 0;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 18px 46px -30px rgba(16,24,40,.32);
}
.proof { flex: 1; display: flex; align-items: center; gap: .9rem; padding: 1.25rem 1.6rem; }
.proof + .proof { border-left: 1px solid var(--line); }
.proof__ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: #e7eef9; color: var(--brand); display: flex; align-items: center; justify-content: center; }
.proof__ic svg { width: 22px; height: 22px; }
.proof__t { display: flex; flex-direction: column; line-height: 1.25; }
.proof__t strong { color: var(--ink); font-weight: 800; font-size: 1rem; }
.proof__t span { color: var(--muted); font-size: .85rem; }
@media (max-width: 760px) {
  .inzu-proofbar { flex-direction: column; max-width: 420px; }
  .proof + .proof { border-left: 0; border-top: 1px solid var(--line); }
}

/* ============================================================
   FEATURES: alternating two-column feature rows
   ============================================================ */
.inzu-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.inzu-feature__text .inzu-icon { margin: 0 0 1.1rem; }
.inzu-feature__text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin: 0 0 .8rem; line-height: 1.2; }
.inzu-feature__text > p { color: var(--body); font-size: 1.08rem; line-height: 1.65; margin: 0 0 1.25rem; }
.inzu-feature__text .inzu-checklist { margin: 0; }
.inzu-feature__link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--brand); text-decoration: none; transition: gap .2s ease; }
.inzu-feature__link:hover { gap: .75rem; }
.inzu-feature--rev .inzu-feature__text { order: 2; }
.inzu-feature--rev .inzu-feature__media { order: 1; }

.inzu-fcard { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.85rem; box-shadow: 0 20px 48px -32px rgba(16,24,40,.3); }
.inzu-fcard__label { display: inline-block; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--brand); background: #e7eef9; padding: .25rem .65rem; border-radius: 999px; margin-bottom: 1.15rem; }
.inzu-fcard .inzu-checklist { margin: 0; }
.inzu-fcard__stat { margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.inzu-fcard__stat .k { display: block; font-size: .82rem; color: var(--muted); margin-bottom: .15rem; }
.inzu-fcard__stat .v { display: block; font-size: 1.65rem; font-weight: 800; color: #039855; }
.inzu-fcard .pv-chat { gap: .45rem; }
.inzu-fcard .pv-chart { margin-top: .9rem; height: 44px; }

@media (max-width: 840px) {
  .inzu-feature { grid-template-columns: 1fr; gap: 2rem; }
  .inzu-feature__text { order: 0 !important; }
  .inzu-feature__media { order: 1 !important; }
}

/* grid4 cards: tighten icon->title->copy spacing (raw h3/p use UA margins otherwise) */
.inzu-grid4 .wp-block-group.is-style-card,
.inzu-grid4 .wp-block-group.is-style-card-feature { padding: 1.6rem; display: flex; flex-direction: column; }
.inzu-grid4 .inzu-icon { margin: 0 0 1rem; }
.inzu-grid4 h3 { margin: 0 0 .45rem; font-size: 1.1rem; font-weight: 700; line-height: 1.25; }
.inzu-grid4 p { margin: 0; font-size: .92rem; color: var(--body); line-height: 1.55; }

/* upgraded checklist ticks: green check in a soft green chip */
.inzu-checklist li { padding-left: 2rem; }
.inzu-checklist li::before { content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: #e6f6ee; font-size: 0; color: transparent; }
.inzu-checklist li::after { content: ""; position: absolute; left: 7px; top: 5px; width: 5px; height: 9px; border: solid #039855; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* feature stat note */
.inzu-fcard__note { display: block; margin-top: .35rem; font-size: .82rem; color: var(--muted); }

/* platforms page: app-preview shots (non-interactive inzu-plat) */
.inzu-appshot { cursor: default; }
.inzu-appshot:hover { transform: none; box-shadow: var(--sh-sm); border-color: var(--line); }
.inzu-appshot .inzu-plat__body { padding-top: 1rem; padding-bottom: 1rem; }

/* partner logo band (about page) */
.inzu-partners { text-align: center; }
.inzu-partners__label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 0 0 1.6rem; }
.inzu-partners__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.6rem; }
.inzu-partners__row img { height: 28px; width: auto; opacity: .85; transition: opacity .2s ease; }
.inzu-partners__row img:hover { opacity: 1; }
@media (max-width: 560px) { .inzu-partners__row { gap: 1.6rem; } }

/* contact lead form */
.inzu-lead-form p { margin: 0 0 1rem; }
.inzu-lead-form label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.inzu-lead-form input, .inzu-lead-form select, .inzu-lead-form textarea { width: 100%; box-sizing: border-box; margin-top: .4rem; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; color: var(--ink); background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.inzu-lead-form input:focus, .inzu-lead-form select:focus, .inzu-lead-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,74,173,.12); }
.inzu-lead-form label[for="lf-consent"] { display: flex; align-items: flex-start; gap: .5rem; font-weight: 500; color: var(--body); font-size: .88rem; }
.inzu-lead-form input[type="checkbox"] { width: auto; margin: .2rem 0 0; }
.inzu-lead-form button { width: 100%; border: 0; border-radius: 10px; padding: .85rem 1.4rem; background: var(--brand); color: #fff; font: inherit; font-weight: 700; cursor: pointer; transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.inzu-lead-form button:hover { background: #003275; transform: translateY(-1px); box-shadow: 0 12px 28px -14px rgba(0,74,173,.6); }

/* blog cards */
.wp-block-post-title a { color: var(--ink); text-decoration: none; transition: color .2s ease; }
.wp-block-post-title a:hover { color: var(--brand); }
.wp-block-post-excerpt__more-link { display: inline-block; margin-top: .6rem; font-weight: 700; color: var(--brand); text-decoration: none; }
.wp-block-post-excerpt__more-link:hover { text-decoration: underline; }
.wp-block-query .wp-block-post-date { margin-top: .8rem; font-size: .8rem; color: var(--muted); }

/* ============================================================
   PRICING lower sections: fees, getting-started, add-ons, enterprise
   ============================================================ */
/* fee cards */
.inzu-fees { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 760px; margin: 2.25rem auto 0; }
.fee { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem; box-shadow: var(--sh-sm); }
.fee__ic { width: 44px; height: 44px; border-radius: 12px; background: #e7eef9; color: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.fee__ic svg { width: 22px; height: 22px; }
.fee__name { font-weight: 700; color: var(--ink); font-size: .95rem; }
.fee__rate { font-size: 2.1rem; font-weight: 800; color: var(--brand); line-height: 1.1; margin: .3rem 0 .1rem; }
.fee__sub { font-size: .85rem; color: var(--muted); }
@media (max-width: 600px) { .inzu-fees { grid-template-columns: 1fr; } }

/* getting started cards */
.inzu-gs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 920px; margin: 2.5rem auto 0; align-items: start; }
.gs-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.85rem; box-shadow: var(--sh-sm); }
.gs-card__ic { width: 46px; height: 46px; border-radius: 12px; background: #e7eef9; color: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.gs-card__ic svg { width: 23px; height: 23px; }
.gs-card__logo { height: 28px; width: auto; display: block; margin-bottom: 1.1rem; }
.gs-card h3 { font-size: 1.2rem; font-weight: 700; margin: 0 0 .3rem; }
.gs-card__meta { color: var(--muted); font-size: .9rem; margin: 0 0 1.15rem; line-height: 1.5; }
.gs-rows { display: flex; flex-direction: column; }
.gs-row { display: flex; justify-content: space-between; gap: 1rem; padding: .65rem 0; border-bottom: 1px solid var(--line); font-size: .93rem; color: var(--body); }
.gs-row:last-child { border-bottom: 0; }
.gs-row b { color: var(--ink); font-weight: 700; white-space: nowrap; }
.gs-free { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.15rem; background: #e6f6ee; color: #039855; font-weight: 700; font-size: .85rem; padding: .55rem .85rem; border-radius: 10px; }
.gs-free svg { width: 16px; height: 16px; }
@media (max-width: 760px) { .inzu-gs { grid-template-columns: 1fr; } }

/* add-on cards */
.inzu-addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 1000px; margin: 2.5rem auto 0; }
.aoc { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem; box-shadow: var(--sh-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.aoc:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -28px rgba(16,24,40,.24); border-color: #dbe6f7; }
.aoc__head { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: 1rem; }
.aoc__ic { width: 42px; height: 42px; border-radius: 11px; background: #e7eef9; color: var(--brand); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.aoc__ic svg { width: 20px; height: 20px; }
.aoc__logo { height: 24px; width: auto; }
.aoc__price { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--brand); background: #e7eef9; padding: .28rem .6rem; border-radius: 999px; white-space: nowrap; }
.aoc h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 .4rem; }
.aoc p { margin: 0; color: var(--body); font-size: .92rem; line-height: 1.55; }
@media (max-width: 760px) { .inzu-addons { grid-template-columns: 1fr; } }

/* enterprise callout card */
.inzu-ent { display: flex; align-items: center; gap: 1.1rem; max-width: 760px; margin: 0 auto; background: linear-gradient(135deg, #fff4ea, #fff9f3); border: 1px solid #ffe3c7; border-radius: 16px; padding: 1.3rem 1.5rem; }
.inzu-ent__ic { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; background: linear-gradient(135deg, #fd853a, #f9690e); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px -8px rgba(249,105,14,.6); }
.inzu-ent__ic svg { width: 23px; height: 23px; }
.inzu-ent p { margin: 0; color: #6b5644; }
.inzu-ent a { color: #c2410c; font-weight: 700; }
@media (max-width: 560px) { .inzu-ent { flex-direction: column; text-align: center; } }

/* ============ checklist ticks v3: premium gradient disc + crisp white check ============ */
.inzu-checklist { padding-left: 0 !important; }
.inzu-checklist li {
  list-style: none;
  position: relative;
  padding-left: 2.2rem;
  line-height: 1.55;
  margin-bottom: .6rem;
}
.inzu-checklist li:last-child { margin-bottom: 0; }
.inzu-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #1570ef;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='white'%20stroke-width='3.25'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M5%2012.5l4.5%204.5L19%207'/%3E%3C/svg%3E"),
    linear-gradient(145deg, #2b7fff 0%, #1570ef 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px, cover;
}
.inzu-checklist li::after { content: none !important; }
