
    /* ══════════════════════════════════════════════════════════
       DESIGN TOKENS
    ══════════════════════════════════════════════════════════ */
    :root {
      --ki-accent: #e57725;
      --green: #80c041;
      --blue: #01adee;
      --crimson: #e57725;
      --crimson-d: #e57725;
      --crimson-l: #e57725;
      --navy: #162740;
      --navy-l: #1f3a5f;
      --gold: #e57725;
      --white: #ffffff;
      --offwhite: #8d8d8d;
      --text-muted: #8a96a3;
      --accent-dk: #c45e0f;
      --accent-lt: #fdf0e6;
      --green-lt: #edf7e0;
      --blue-lt: #e0f6fe;
      --grey-50: #f7f8fa;
      --grey-100: #eef0f3;
      --grey-200: #dde1e7;
      --grey-400: #a0aab5;
      --grey-700: #3d4a58;
      --grey-900: #1a222c;

      --font-head: 'Lora', serif;
      --font-body: 'Nunito', sans-serif;

      --radius: 12px;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
      --shadow-md: 0 6px 24px rgba(0, 0, 0, .10);
      --shadow-lg: 0 14px 40px rgba(0, 0, 0, .13);
      --trans: .28s cubic-bezier(.4, 0, .2, 1);

      /* Nav-specific */
      --ki-nav-bg: #ffffff;
      --ki-top-bg: #f5f5f5;
      --ki-border: #e4e4e4;
      --ki-text: #1a1a1a;
      --ki-muted: #6b7280;
      --ki-hover-bg: #f4f4f4;
      --ki-dd-bg: #ffffff;
      --ki-accent-lt: rgba(232, 67, 10, .08);
      --ki-dd-shadow: 0 20px 60px rgba(0, 0, 0, .10), 0 4px 16px rgba(0, 0, 0, .06);
      --nav-h: 85px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: #f0f0f0;
      color: var(--ki-text);
      min-height: 100vh;
    }

    /* ══════════════════════════════════════════════════════════
       TOP BAR
    ══════════════════════════════════════════════════════════ */
    .top-bar {
      background: var(--ki-top-bg);
      border-bottom: 1px solid var(--ki-border);
      font-size: 12px;
      color: var(--ki-muted);
      padding: 6px 0;
    }

    .top-bar a {
      color: var(--ki-muted);
      text-decoration: none;
      transition: color .18s;
    }

    .top-bar a:hover {
      color: var(--ki-accent);
    }

    .top-bar .sep {
      margin: 0 10px;
      color: #d0d0d0;
    }

    /* Icons inside top-bar */
    .top-bar__icon {
      font-size: 11px;
      margin-right: 5px;
      color: var(--ki-accent);
    }

    .top-bar__icon--sm {
      font-size: 10px;
    }

    /* ══════════════════════════════════════════════════════════
       MAIN NAV
    ══════════════════════════════════════════════════════════ */
    .main-nav {
      background: var(--ki-nav-bg);
      border-bottom: 1px solid var(--ki-border);
      height: var(--nav-h);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 1px 0 var(--ki-border);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      height: 100%;
      gap: 4px;
    }

    /* Logo */
    .nav-logo {
      flex-shrink: 0;
      margin-right: 12px;
    }

    .nav-logo img {
      height: 60px;
      width: auto;
      display: block;
    }

    /* ── Nav Links ─────────────────────────────────────────── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1px;
      list-style: none;
      margin: 0 0 0 auto;
      padding: 0;
      height: 100%;
    }

    .nav-links>li {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .nav-links>li>a,
    .nav-links>li>button {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 13px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--ki-muted);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      transition: color .18s, background .18s;
      white-space: nowrap;
      letter-spacing: .01em;
      height: auto;
      font-family: inherit;
    }

    .nav-links>li>a:hover,
    .nav-links>li>button:hover,
    .nav-links>li:hover>button {
      color: var(--ki-text);
      background: var(--ki-hover-bg);
    }

    .nav-links>li>a .nav-icon,
    .nav-links>li>button .nav-icon {
      font-size: 12px;
      color: var(--ki-accent);
    }

    .nav-links>li>a.active {
      color: var(--ki-accent);
      background: var(--ki-accent-lt);
    }

    .nav-links>li>a.active .nav-icon {
      color: var(--ki-accent);
    }

    /* Caret */
    .caret-icon {
      font-size: 9px;
      color: #bbb;
      transition: transform .25s, color .18s;
      margin-left: 1px;
    }

    .products-li:hover .caret-icon {
      transform: rotate(180deg);
      color: var(--ki-accent);
    }

    /* Bridge so mouse can travel from nav to dropdown */
    .products-li::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100%;
      height: 10px;
    }

    /* ── MEGA DROPDOWN ─────────────────────────────────────── */
    .mega-dropdown {
      position: absolute;
      top: calc(100% + 1px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      width: min(94vw, 440px);
      background: var(--ki-dd-bg);
      border: 1px solid var(--ki-border);
      border-radius: var(--radius);
      padding: 26px 28px 22px;
      pointer-events: none;
      opacity: 0;
      box-shadow: var(--ki-dd-shadow);
      transition: opacity .2s ease, transform .2s ease;
    }

    .products-li:hover .mega-dropdown {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    .mega-dropdown::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      width: 56px;
      height: 2.5px;
      background: var(--ki-accent);
      border-radius: 0 0 3px 3px;
    }

    .mega-label {
      font-size: 10.5px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: #bbb;
      margin-bottom: 16px;
    }

    /* ── Dropdown-specific grid (renamed from .product-grid to avoid conflict) */
    .dd-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }

    .dd-card {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 4px;
      border-radius: 9px;
      text-decoration: none;
      border: 1px solid transparent;
      transition: background .16s, border-color .16s;
    }

    .dd-card:hover {
      background: #fafafa;
      border-color: var(--ki-border);
    }

    .dd-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    .dd-icon--orange {
      background: rgba(232, 67, 10, .10);
      color: #e8430a;
    }

    .dd-icon--blue {
      background: rgba(37, 99, 235, .10);
      color: #2563eb;
    }

    .dd-icon--green {
      background: rgba(22, 163, 74, .10);
      color: #16a34a;
    }

    .dd-icon--purple {
      background: rgba(124, 58, 237, .10);
      color: #7c3aed;
    }

    .dd-icon--teal {
      background: rgba(13, 148, 136, .10);
      color: #0d9488;
    }

    .dd-icon--amber {
      background: rgba(217, 119, 6, .10);
      color: #d97706;
    }

    .dd-card__info {
      min-width: 0;
      padding: 7px 0;
    }

    .dd-card__name {
      font-size: 13px;
      font-weight: 600;
      color: var(--ki-text);
      display: block;
      margin-bottom: 3px;
    }

    .dd-rule {
      border: none;
      border-top: 1px solid var(--ki-border);
      margin: 18px 0 15px;
    }

    .dd-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .view-all-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 16px;
      background: var(--ki-accent);
      color: #fff;
      border-radius: 7px;
      font-size: 12.5px;
      font-weight: 600;
      text-decoration: none;
      transition: opacity .16s;
    }

    .view-all-btn:hover {
      opacity: .88;
      color: #fff;
    }

    .view-all-btn i {
      font-size: 11px;
    }

    /* ── CTA BUTTONS ───────────────────────────────────────── */
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 14px;
    }

    .btn-outline-nav {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 16px;
      border: 1px solid var(--ki-border);
      border-radius: 7px;
      font-size: 13px;
      font-weight: 500;
      color: var(--ki-text);
      background: none;
      text-decoration: none;
      cursor: pointer;
      transition: border-color .16s, background .16s;
      white-space: nowrap;
    }

    .btn-outline-nav:hover {
      border-color: #bbb;
      background: var(--ki-hover-bg);
      color: var(--ki-text);
    }

    .btn-solid-nav {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 18px;
      background: var(--ki-accent);
      border: none;
      border-radius: 7px;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      cursor: pointer;
      transition: opacity .16s;
      white-space: nowrap;
    }

    .btn-solid-nav:hover {
      opacity: .88;
      color: #fff;
    }

    /* Nav button icon size */
    .btn-outline-nav .btn-icon,
    .btn-solid-nav .btn-icon {
      font-size: 12px;
    }

    /* ── HAMBURGER ─────────────────────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: none;
      border: 1px solid var(--ki-border);
      border-radius: 7px;
      cursor: pointer;
      padding: 8px;
      margin-left: auto;
      flex-shrink: 0;
    }

    .hamburger span {
      display: block;
      height: 1.5px;
      background: var(--ki-text);
      border-radius: 2px;
      transition: transform .25s, opacity .2s;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    /* ── MOBILE MENU ───────────────────────────────────────── */
    .mobile-menu {
      display: none;
      background: #fff;
      border-top: 1px solid var(--ki-border);
      border-bottom: 1px solid var(--ki-border);
      padding: 10px 0 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    }

    .mobile-menu.open {
      display: block;
    }

    .mob-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 20px;
      font-size: 14px;
      font-weight: 500;
      color: var(--ki-text);
      text-decoration: none;
      transition: background .14s;
    }

    .mob-link:hover {
      background: var(--ki-hover-bg);
    }

    .mob-link .mob-icon {
      font-size: 12px;
      color: var(--ki-accent);
      width: 15px;
      text-align: center;
    }

    .mob-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 20px;
      width: 100%;
      font-size: 14px;
      font-weight: 500;
      color: var(--ki-text);
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      transition: background .14s;
    }

    .mob-toggle:hover {
      background: var(--ki-hover-bg);
    }

    .mob-toggle .mob-icon {
      font-size: 12px;
      color: var(--ki-accent);
      width: 15px;
      text-align: center;
    }

    .mob-caret {
      margin-left: auto;
      font-size: 10px;
      color: #bbb;
      transition: transform .22s;
    }

    .mob-toggle.open .mob-caret {
      transform: rotate(180deg);
      color: var(--ki-accent);
    }

    .mob-sub {
      display: none;
      background: #fafafa;
      border-top: 1px solid var(--ki-border);
      border-bottom: 1px solid var(--ki-border);
    }

    .mob-sub.open {
      display: block;
    }

    .mob-sub-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px 10px 48px;
      font-size: 13px;
      color: var(--ki-muted);
      text-decoration: none;
      transition: background .14s, color .14s;
    }

    .mob-sub-item:hover {
      background: var(--ki-hover-bg);
      color: var(--ki-text);
    }

    .mob-sub-item i {
      font-size: 11px;
      width: 14px;
      text-align: center;
    }

    .mob-divider {
      height: 1px;
      background: var(--ki-border);
      margin: 10px 0;
    }

    .mob-cta {
      display: flex;
      gap: 10px;
      padding: 12px 20px 0;
    }

    .mob-cta .btn-outline-nav,
    .mob-cta .btn-solid-nav {
      flex: 1;
      justify-content: center;
      font-size: 13px;
    }

    /* ── RESPONSIVE ────────────────────────────────────────── */
    @media (max-width: 960px) {

      .nav-links,
      .nav-cta {
        display: none !important;
      }

      .hamburger {
        display: flex;
      }
    }

    @media (max-width: 600px) {
      .top-right {
        display: none;
      }
    }


    /* ══════════════════════════════════════════════════════════
   TOP BAR — RESPONSIVE FIXES
   Replace the old  @media (max-width: 600px) { .top-right … }
   block with everything below.
══════════════════════════════════════════════════════════ */

    /* Tablet (≤768px): hide socials, keep email */
    @media (max-width: 768px) {
      .top-bar__socials {
        display: none;
      }

      .top-bar__email-sep {
        display: none;
      }
    }

    /* Mobile (≤600px): hide entire right side */
    @media (max-width: 600px) {
      .top-right {
        display: none;
      }

      /* Let left side breathe and wrap gracefully */
      .top-bar .d-flex.justify-content-between {
        flex-wrap: wrap;
        gap: 4px;
      }

      /* Stack location and phone on very narrow screens */
      .top-bar .d-flex.align-items-center:first-child {
        flex-wrap: wrap;
        gap: 4px;
        font-size: 11px;
      }

      /* Hide separator when wrapping */
      .top-bar .sep {
        display: none;
      }

      /* Keep phone on its own line cleanly */
      .top-bar a[href^="tel"] {
        display: flex;
        align-items: center;
      }
    }

    /* XS (≤400px): hide phone too, keep only location */
    @media (max-width: 400px) {
      .top-bar a[href^="tel"] {
        display: none;
      }
    }

    /* ══════════════════════════════════════════════════════════
       ABOUT SECTION
    ══════════════════════════════════════════════════════════ */
    .about {
      position: relative;
      background: #ffffff;
      overflow: hidden;
    }

    .about__inner {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(4rem, 8vw, 4rem) clamp(0rem, 6vw, 1rem);
    }

    .about__topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: clamp(0rem, 6vw, 1rem);
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(201, 168, 76, .2);
    }

    .about__pill {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      background: var(--crimson);
      color: var(--white);
      font-family: var(--font-body);
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .26em;
      text-transform: uppercase;
      padding: .45rem 1.2rem;
      border-radius: 2px;
    }

    .about__pill::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    .about__year {
      font-family: var(--font-head);
      font-size: clamp(.9rem, 1.5vw, 1.1rem);
      font-weight: 400;
      font-style: italic;
      color: rgba(201, 168, 76, .7);
      letter-spacing: .06em;
    }

    .about__headline-row {
      margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
    }

    .about__headline {
      font-family: var(--font-head);
      font-size: clamp(2.6rem, 7vw, 6.5rem);
      font-weight: 700;
      line-height: 1.0;
      color: #01afee70;
      letter-spacing: -.01em;
    }

    .about__headline .line2 {
      display: block;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(48, 48, 48, 0.35);
      padding-left: clamp(2rem, 8vw, 9rem);
    }

    .about__headline .line3 {
      display: block;
      font-style: italic;
      font-weight: 400;
      color: var(--gold);
      font-size: .7em;
      padding-left: clamp(4rem, 14vw, 16rem);
      letter-spacing: .02em;
    }

    /* Float zone */
    .about__flow {
      overflow: hidden;
    }

    .fimg {
      position: relative;
      shape-outside: margin-box;
    }

    .fimg--1 {
      float: left;
      width: clamp(220px, 32%, 360px);
      margin: 0 clamp(1.6rem, 3.5vw, 2.8rem) clamp(1.2rem, 2.5vw, 2rem) 0;
      transform: rotate(-1.5deg);
    }

    .fimg--2 {
      float: right;
      width: clamp(180px, 25%, 290px);
      margin: clamp(.8rem, 2vw, 1.4rem) 0 clamp(1.2rem, 2.5vw, 2rem) clamp(1.6rem, 3.5vw, 2.8rem);
      transform: rotate(1.2deg);
    }

    .fimg--3 {
      float: left;
      width: clamp(150px, 20%, 230px);
      margin: clamp(.6rem, 1.5vw, 1.2rem) clamp(1.6rem, 3.5vw, 2.8rem) clamp(.8rem, 2vw, 1.6rem) 0;
      transform: rotate(-0.8deg);
    }

    .fimg__photo {
      display: block;
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      box-shadow: var(--shadow-lg);
    }

    .fimg--2 .fimg__photo {
      aspect-ratio: 4/5;
    }

    .fimg--3 .fimg__photo {
      aspect-ratio: 1/1;
      border-radius: 50%;
    }

    .fimg::before {
      content: '';
      position: absolute;
      inset: -8px;
      border: 1.5px solid rgba(201, 168, 76, .3);
      pointer-events: none;
      transition: border-color .35s;
    }

    .fimg--3::before {
      border-radius: 50%;
      inset: -10px;
    }

    .fimg:hover::before {
      border-color: var(--gold);
    }

    .fimg__badge {
      position: absolute;
      bottom: -14px;
      right: 5px;
      width: 42px;
      height: 42px;
      background: var(--crimson);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      z-index: 2;
    }

    .fimg--3 .fimg__badge {
      bottom: -10px;
      right: -10px;
    }

    .fimg__cap {
      margin-top: 1.1rem;
      font-family: var(--font-body);
      font-size: .6rem;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(201, 168, 76, .6);
    }

    .about__flow p {
      font-family: var(--font-body);
      font-size: clamp(.9rem, 1.25vw, 1.03rem);
      font-weight: 300;
      line-height: 1.9;
      color: #000000b8;
      margin-bottom: 1.4em;
      text-align: justify;
      hyphens: auto;
    }

    .about__flow p strong {
      font-weight: 600;
      color: var(--offwhite);
    }

    .about__flow p .cr {
      color: var(--crimson-l);
      font-weight: 500;
    }

    .about__flow p .gd {
      color: var(--gold);
    }

    .about__flow h1 {
      font-weight: 700;
    }

    .about__flow h1::first-letter {
      font-family: var(--font-head);
      font-size: 1.5em;
      font-weight: 700;
      float: left;
      line-height: .78;
      margin: .08em .14em 0 0;
      color: var(--crimson-l);
    }

    .about__flow .pullout {
      display: block;
      font-family: var(--font-head);
      font-size: clamp(1.05rem, 1.7vw, 1.3rem);
      font-style: italic;
      font-weight: 400;
      color: var(--offwhite);
      border-left: 3px solid var(--crimson);
      padding: 1rem 1.4rem;
      margin: 1.8em 0;
      background: rgba(139, 26, 46, .08);
      text-align: left;
    }

    .about__flow .pullout cite {
      display: block;
      font-family: var(--font-body);
      font-style: normal;
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: .6rem;
    }

    @media (max-width: 480px) {

      .fimg--1,
      .fimg--2,
      .fimg--3 {
        float: none;
        width: 100%;
        margin: 0 0 2rem 0;
        transform: none;
      }

      .about__flow p {
        text-align: left;
      }
    }

    /* ══════════════════════════════════════════════════════════
       SHARED SECTION STYLES
    ══════════════════════════════════════════════════════════ */
    .section {
      padding: clamp(3.5rem, 7vw, 4rem) 0;
    }

    .section--white {
      background: var(--white);
    }

    .section--grey {
      background: var(--grey-50);
    }

    .sec-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: clamp(2rem, 4vw, 3rem);
    }

    /* ── Section label ────────────────────────────────────── */
    .sec-label {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-family: var(--font-body);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--ki-accent);
      margin-bottom: .5rem;
    }

    .sec-label::before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 2px;
      background: currentColor;
      /* inherits color from modifier */
      border-radius: 2px;
    }

    /* Blue modifier — overrides accent colour for entire label + its line */
    .sec-label--blue {
      color: var(--blue);
    }

    /* ── Section title ────────────────────────────────────── */
    .sec-title {
      font-family: var(--font-head);
      font-size: clamp(1.5rem, 3.5vw, 2.4rem);
      font-weight: 600;
      color: var(--grey-900);
      line-height: 1.2;
    }

    .sec-title .accent-italic {
      color: var(--ki-accent);
      font-style: italic;
    }

    .sec-title .blue-italic {
      color: var(--blue);
      font-style: italic;
    }

    /* ── View-all link ────────────────────────────────────── */
    .view-all {
      font-family: var(--font-body);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--ki-accent);
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      border-bottom: 1.5px solid rgba(229, 119, 37, .35);
      padding-bottom: 2px;
      transition: color var(--trans), border-color var(--trans), gap var(--trans);
    }

    .view-all::after {
      content: '→';
      transition: transform var(--trans);
    }

    .view-all:hover {
      color: var(--accent-dk);
      border-color: var(--accent-dk);
      gap: .7rem;
    }

    .view-all:hover::after {
      transform: translateX(3px);
    }

    /* Blue modifier */
    .view-all--blue {
      color: var(--blue);
      border-color: rgba(1, 173, 238, .35);
    }

    .view-all--blue:hover {
      color: var(--blue);
      border-color: var(--blue);
    }

    /* ══════════════════════════════════════════════════════════
       PRODUCT CARD  (shared component)
    ══════════════════════════════════════════════════════════ */
    .pcard {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--grey-100);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
    }

    .pcard:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: var(--grey-200);
    }

    .pcard__badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 4;
      font-family: var(--font-body);
      font-size: .6rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .28rem .7rem;
      border-radius: 3px;
      line-height: 1.3;
    }

    .badge--new {
      background: var(--green);
      color: var(--white);
    }

    .badge--sale {
      background: var(--ki-accent);
      color: var(--white);
    }

    .badge--hot {
      background: var(--blue);
      color: var(--white);
    }

    .badge--best {
      background: var(--grey-900);
      color: var(--white);
    }

    .pcard__img-link {
      display: block;
      text-decoration: none;
      background: var(--grey-50);
      overflow: hidden;
      position: relative;
      height: 200px;
    }

    .pcard__img-link::after {
      content: 'View Product';
      position: absolute;
      inset: 0;
      background: rgba(229, 119, 37, .82);
      color: var(--white);
      font-family: var(--font-body);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity var(--trans);
    }

    .pcard:hover .pcard__img-link::after {
      opacity: 1;
    }

    .pcard__img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      transition: transform .45s ease;
    }

    .pcard:hover .pcard__img {
      transform: scale(1.06);
    }

    .pcard__body {
      padding: clamp(.9rem, 2vw, 1.2rem);
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: .55rem;
    }

    .pcard__cat {
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--grey-400);
    }

    .pcard__title-link {
      text-decoration: none;
      display: block;
    }

    .pcard__title {
      font-family: var(--font-head);
      font-size: clamp(.92rem, 1.3vw, 1.02rem);
      font-weight: 600;
      color: var(--grey-900);
      line-height: 1.35;
      transition: color var(--trans);
    }

    .pcard__title-link:hover .pcard__title {
      color: var(--ki-accent);
    }

    .pcard__price-row {
      display: flex;
      align-items: baseline;
      gap: .5rem;
      flex-wrap: wrap;
      margin-top: auto;
    }

    .price-now {
      font-family: var(--font-body);
      font-size: clamp(1rem, 1.6vw, 1.15rem);
      font-weight: 800;
      color: var(--grey-900);
    }

    .price-old {
      font-size: .82rem;
      font-weight: 600;
      color: var(--grey-400);
      text-decoration: line-through;
    }

    .price-save {
      font-size: .65rem;
      font-weight: 800;
      color: var(--green);
      background: var(--green-lt);
      padding: .18rem .5rem;
      border-radius: 3px;
    }

    /* CTA button — default accent, blue modifier available */
    .pcard__btn {
      display: block;
      text-align: center;
      text-decoration: none;
      font-family: var(--font-body);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .72rem 1rem;
      border-radius: 5px;
      margin-top: .35rem;
      background: var(--ki-accent);
      color: var(--white);
      border: 2px solid var(--ki-accent);
      transition: background var(--trans), color var(--trans), transform var(--trans);
    }

    .pcard__btn:hover {
      background: transparent;
      color: var(--ki-accent);
      transform: translateY(-1px);
    }

    /* Blue variant */
    .pcard__btn--blue {
      background: var(--blue);
      border-color: var(--blue);
    }

    .pcard__btn--blue:hover {
      background: transparent;
      color: var(--blue);
    }

    /* ══════════════════════════════════════════════════════════
       PRODUCT SECTION 1 — 4-column grid
    ══════════════════════════════════════════════════════════ */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(1rem, 2.5vw, 1.5rem);
    }

    @media (max-width: 1024px) {
      .products-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 720px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 420px) {
      .products-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Accent top border cycling */
    .products-grid .pcard:nth-child(4n+1) {
      border-top: 3px solid var(--ki-accent);
    }

    .products-grid .pcard:nth-child(4n+2) {
      border-top: 3px solid var(--green);
    }

    .products-grid .pcard:nth-child(4n+3) {
      border-top: 3px solid var(--blue);
    }

    .products-grid .pcard:nth-child(4n+4) {
      border-top: 3px solid var(--ki-accent);
    }

    /* ══════════════════════════════════════════════════════════
       PRODUCT SECTION 2 — Owl Carousel
    ══════════════════════════════════════════════════════════ */
    .owl-wrap {
      position: relative;
      padding: 0 0 1rem 0;
    }

    .owl-carousel .owl-item {
      padding: 4px 8px 8px;
    }

    .owl-carousel .owl-nav {
      position: absolute;
      top: calc(200px / 2 - 22px);
      left: 0;
      right: 0;
      pointer-events: none;
      display: flex;
      justify-content: space-between;
      margin: 0 !important;
    }

    .owl-carousel .owl-prev,
    .owl-carousel .owl-next {
      pointer-events: all;
      width: 44px;
      height: 44px;
      background: var(--white) !important;
      border: 1.5px solid var(--grey-200) !important;
      border-radius: 50% !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      font-size: 0 !important;
      color: var(--grey-700) !important;
      transition: background var(--trans), border-color var(--trans), transform var(--trans) !important;
      margin: 0 -6px !important;
    }

    .owl-carousel .owl-prev:hover,
    .owl-carousel .owl-next:hover {
      background: var(--ki-accent) !important;
      border-color: var(--ki-accent) !important;
      color: var(--white) !important;
      transform: scale(1.08) !important;
    }

    .owl-prev::after,
    .owl-next::after {
      content: '';
      display: block;
      width: 9px;
      height: 9px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
    }

    .owl-prev::after {
      transform: rotate(-135deg);
      margin-left: 3px;
    }

    .owl-next::after {
      transform: rotate(45deg);
      margin-right: 3px;
    }

    .owl-prev.disabled,
    .owl-next.disabled {
      opacity: .35 !important;
      pointer-events: none;
    }

    .owl-carousel .owl-dots {
      margin-top: 1.2rem !important;
      display: flex;
      justify-content: center;
      gap: .4rem;
    }

    .owl-carousel .owl-dot span {
      width: 8px !important;
      height: 8px !important;
      border-radius: 50% !important;
      background: var(--grey-200) !important;
      margin: 0 !important;
      transition: background .3s, transform .3s, width .35s !important;
    }

    .owl-carousel .owl-dot.active span {
      background: var(--ki-accent) !important;
      width: 24px !important;
      border-radius: 4px !important;
    }

    .owl-carousel .pcard:nth-child(3n+1) {
      border-top: 3px solid var(--ki-accent);
    }

    .owl-carousel .pcard:nth-child(3n+2) {
      border-top: 3px solid var(--green);
    }

    .owl-carousel .pcard:nth-child(3n+3) {
      border-top: 3px solid var(--blue);
    }

    /* ── Section divider ───────────────────────────────────── */
    .sec-divider {
      height: 1px;
      background: linear-gradient(to right, transparent, var(--grey-200) 20%, var(--grey-200) 80%, transparent);
    }

    /* ── Filter tabs ───────────────────────────────────────── */
    .filter-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
    }

    .ftab {
      font-family: var(--font-body);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      padding: .45rem 1.2rem;
      border-radius: 50px;
      border: 1.5px solid var(--grey-200);
      color: var(--grey-700);
      background: var(--white);
      transition: background var(--trans), border-color var(--trans), color var(--trans);
    }

    .ftab.active,
    .ftab:hover {
      background: var(--ki-accent);
      border-color: var(--ki-accent);
      color: var(--white);
    }

    .ftab--green.active,
    .ftab--green:hover {
      background: var(--green);
      border-color: var(--green);
    }

    .ftab--blue.active,
    .ftab--blue:hover {
      background: var(--blue);
      border-color: var(--blue);
    }

    /* ══════════════════════════════════════════════════════════
   WHY US — SECTION SHELL
══════════════════════════════════════════════════════════ */
    .why-us {
      padding: clamp(4rem, 9vw, 7.5rem) 0;
      background: var(--white);
      overflow: hidden;
      position: relative;
    }

    /* Subtle angled accent strip across top edge */
    .why-us::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg,
          var(--ki-accent) 0%,
          var(--green) 40%,
          var(--blue) 100%);
    }

    /* ── Two-column layout ─────────────────────────────────── */
    .wyu__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 6.5rem);
      align-items: center;
    }

    /* ══════════════════════════════════════════════════════════
   MEDIA COLLAGE — left column
══════════════════════════════════════════════════════════ */
    .wyu__media {
      position: relative;
      height: 580px;
      /* Extra space on the left so badges can bleed out */
      padding-left: 10px;
    }

    /* Dot-grid — top left */
    .wyu__media::before {
      content: '';
      position: absolute;
      top: -10px;
      left: -12px;
      width: 150px;
      height: 150px;
      background-image: radial-gradient(circle, var(--ki-accent) 1.8px, transparent 1.8px);
      background-size: 20px 20px;
      opacity: .22;
      z-index: 0;
      pointer-events: none;
    }

    /* Dot-grid — bottom right */
    .wyu__media::after {
      content: '';
      position: absolute;
      bottom: -8px;
      right: -8px;
      width: 120px;
      height: 120px;
      background-image: radial-gradient(circle, var(--blue) 1.8px, transparent 1.8px);
      background-size: 20px 20px;
      opacity: .18;
      z-index: 0;
      pointer-events: none;
    }

    /* ── Shared image wrapper ───────────────────────────────── */
    .wm-img {
      position: absolute;
      overflow: hidden;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      z-index: 1;
    }

    .wm-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .55s ease;
    }

    .wm-img:hover img {
      transform: scale(1.05);
    }

    /* Main — large portrait, left side */
    .wm-img--main {
      left: 0;
      top: 44px;
      /* gap above for exp-badge */
      width: 61%;
      height: calc(100% - 44px);
    }

    /* Top-right — landscape */
    .wm-img--top {
      right: 0;
      top: 0;
      width: 36%;
      height: 49%;
    }

    /* Bottom-right — square feel */
    .wm-img--btm {
      right: 0;
      bottom: 0;
      width: 36%;
      height: 47%;
    }

    /* ── Orange accent bar ─────────────────────────────────── */
    .wm-bar {
      position: absolute;
      left: -4px;
      top: 120px;
      width: 4px;
      height: 140px;
      background: linear-gradient(180deg, var(--ki-accent), var(--green));
      border-radius: 4px;
      z-index: 3;
    }

    /* ── Experience badge — floats at top of main image ──── */
    .wm-exp {
      position: absolute;
      top: 0;
      left: 12px;
      background: var(--ki-accent);
      color: var(--white);
      border-radius: var(--radius);
      padding: 12px 18px;
      z-index: 4;
      text-align: center;
      box-shadow: 0 8px 28px rgba(229, 119, 37, .38);
      min-width: 80px;
    }

    .wm-exp__num {
      font-family: var(--font-head);
      font-size: 1.9rem;
      font-weight: 700;
      line-height: 1;
      display: block;
    }

    .wm-exp__lbl {
      font-family: var(--font-body);
      font-size: .6rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .14em;
      opacity: .88;
      margin-top: 3px;
      display: block;
    }

    /* ── Floating stat card — sits between columns at bottom ─ */
    .wm-stat {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-66%);
      /* pulls left so it overlaps main image */
      background: var(--white);
      border-radius: var(--radius);
      padding: 13px 20px;
      box-shadow: 0 12px 44px rgba(0, 0, 0, .18);
      display: flex;
      align-items: center;
      gap: 13px;
      z-index: 6;
      white-space: nowrap;
      border-left: 3px solid var(--green);
    }

    .wm-stat__ico {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--green-lt);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 17px;
      flex-shrink: 0;
    }

    .wm-stat__num {
      font-family: var(--font-head);
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--grey-900);
      line-height: 1;
    }

    .wm-stat__lbl {
      font-family: var(--font-body);
      font-size: .65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--grey-400);
      margin-top: 2px;
    }

    /* ── Rating pill — floats over top-right image ─────────── */
    .wm-rating {
      position: absolute;
      top: 46%;
      right: 0;
      background: var(--white);
      border-radius: 50px;
      padding: 8px 14px 8px 10px;
      box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
      display: flex;
      align-items: center;
      gap: 7px;
      z-index: 5;
    }

    .wm-rating__stars {
      display: flex;
      gap: 2px;
    }

    .wm-rating__stars i {
      color: #f4b400;
      font-size: 11px;
    }

    .wm-rating__score {
      font-family: var(--font-body);
      font-size: .8rem;
      font-weight: 800;
      color: var(--grey-900);
    }

    .wm-rating__count {
      font-family: var(--font-body);
      font-size: .68rem;
      color: var(--grey-400);
    }

    /* ══════════════════════════════════════════════════════════
   CONTENT — right column
══════════════════════════════════════════════════════════ */
    .wyu__content {}

    /* Eyebrow — no heading tag */
    .wyu__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-family: var(--font-body);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: var(--ki-accent);
      margin-bottom: 1.1rem;
    }

    .wyu__eyebrow::before {
      content: '';
      display: inline-block;
      width: 22px;
      height: 2px;
      background: var(--ki-accent);
      border-radius: 2px;
    }

    /* Title — styled div, NOT an h tag */
    .wyu__title {
      font-family: var(--font-head);
      font-size: clamp(1.85rem, 3.6vw, 2.7rem);
      font-weight: 600;
      color: var(--grey-900);
      line-height: 1.17;
      margin-bottom: 1.25rem;
    }

    .wyu__title .accent {
      color: var(--ki-accent);
      font-style: italic;
    }

    /* Lead paragraph */
    .wyu__lead {
      font-family: var(--font-body);
      font-size: .98rem;
      color: var(--ki-muted);
      line-height: 1.85;
      margin-bottom: 2.4rem;
      max-width: 480px;
    }

    /* ── Feature grid — 2×2 ─────────────────────────────── */
    .wyu__features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.8rem 2rem;
      margin-bottom: 2.8rem;
    }

    .wf-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    /* Icon circle */
    .wf-icon {
      width: 50px;
      height: 50px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
      transition: transform var(--trans), box-shadow var(--trans);
    }

    .wf-item:hover .wf-icon {
      transform: scale(1.1) rotate(-4deg);
      box-shadow: var(--shadow-md);
    }

    .wf-icon--orange {
      background: var(--accent-lt);
      color: var(--ki-accent);
    }

    .wf-icon--green {
      background: var(--green-lt);
      color: var(--green);
    }

    .wf-icon--blue {
      background: var(--blue-lt);
      color: var(--blue);
    }

    .wf-icon--navy {
      background: rgba(22, 39, 64, .08);
      color: var(--navy);
    }

    .wf-body {
      min-width: 0;
    }

    /* Feature title — NOT a heading tag */
    .wf-name {
      font-family: var(--font-body);
      font-size: .97rem;
      font-weight: 800;
      color: var(--grey-900);
      margin-bottom: .35rem;
      line-height: 1.3;
    }

    .wf-desc {
      font-family: var(--font-body);
      font-size: .82rem;
      color: var(--ki-muted);
      line-height: 1.65;
    }

    /* ── Divider line ───────────────────────────────────── */
    .wyu__divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, var(--grey-200), transparent);
      margin-bottom: 2rem;
    }

    /* ── Stats bar ──────────────────────────────────────── */
    .wyu__stats {
      display: flex;
      gap: 2rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }

    .wyu-stat {
      display: flex;
      flex-direction: column;
      gap: .15rem;
    }

    .wyu-stat__num {
      font-family: var(--font-head);
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--grey-900);
      line-height: 1;
    }

    .wyu-stat__num .unit {
      color: var(--ki-accent);
    }

    .wyu-stat__lbl {
      font-family: var(--font-body);
      font-size: .7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: var(--grey-400);
    }

    /* ── CTA row ────────────────────────────────────────── */
    .wyu__cta-row {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      flex-wrap: wrap;
    }

    .wyu__btn {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-family: var(--font-body);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      padding: .9rem 2.2rem;
      background: var(--ki-accent);
      color: var(--white);
      border-radius: 8px;
      border: 2px solid var(--ki-accent);
      transition: background var(--trans), color var(--trans), transform var(--trans);
    }

    .wyu__btn:hover {
      background: transparent;
      color: var(--ki-accent);
      transform: translateY(-2px);
      color: var(--ki-accent);
    }

    .wyu__btn i {
      font-size: 13px;
      transition: transform var(--trans);
    }

    .wyu__btn:hover i {
      transform: translateX(4px);
    }

    .wyu__link {
      font-family: var(--font-body);
      font-size: .82rem;
      font-weight: 700;
      color: var(--ki-muted);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      transition: color var(--trans), gap var(--trans);
    }

    .wyu__link::after {
      content: '→';
      transition: transform var(--trans);
    }

    .wyu__link:hover {
      color: var(--ki-accent);
      gap: .7rem;
    }

    /* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

    /* Tablet: stack vertically, image collage on top */
    @media (max-width: 1024px) {
      .wyu__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      /* Image side goes first (order) */
      .wyu__media {
        order: -1;
      }

      .wyu__lead {
        max-width: 100%;
      }
    }

    /* Tablet portrait */
    @media (max-width: 768px) {
      .wyu__media {
        height: 420px;
      }

      /* Recalculate main image height */
      .wm-img--main {
        top: 38px;
        height: calc(100% - 38px);
      }
    }

    /* Large mobile */
    @media (max-width: 600px) {
      .wyu__media {
        height: 320px;
      }

      .wm-exp__num {
        font-size: 1.4rem;
      }

      .wm-exp {
        padding: 9px 14px;
      }

      .wm-stat {
        padding: 10px 14px;
        gap: 9px;
      }

      .wm-stat__num {
        font-size: 1.1rem;
      }

      .wm-stat__ico {
        width: 34px;
        height: 34px;
        font-size: 14px;
      }

      .wm-bar {
        display: none;
      }

      .wyu__features {
        grid-template-columns: 1fr;
        gap: 1.4rem;
      }

      .wyu__stats {
        gap: 1.2rem;
      }
    }

    /* Small mobile */
    @media (max-width: 480px) {
      .wyu__media {
        height: 260px;
      }

      /* Hide third image — too cramped */
      .wm-img--btm {
        display: none;
      }

      .wm-img--top {
        height: 100%;
        top: 0;
      }

      .wm-img--main {
        top: 0;
        height: 100%;
      }

      .wm-rating {
        display: none;
      }

      /* Stat card: bottom-left, small */
      .wm-stat {
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
      }

      .wyu__cta-row {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* ══════════════════════════════════════════════════════════
   SHARED UTILITIES (used across all 4 sections)
══════════════════════════════════════════════════════════ */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-family: var(--font-body);
      font-size: .67rem;
      font-weight: 800;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--ki-accent);
      margin-bottom: 1rem;
    }

    .eyebrow::before {
      content: '';
      width: 22px;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      display: inline-block;
      flex-shrink: 0;
    }

    .eyebrow--white {
      color: rgba(255, 255, 255, .65);
    }

    .eyebrow--white::before {
      background: var(--ki-accent);
    }

    .eyebrow--blue {
      color: var(--blue);
    }

    .sec-display {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 3.6vw, 2.7rem);
      font-weight: 600;
      color: var(--grey-900);
      line-height: 1.17;
      margin-bottom: 1.1rem;
    }

    .sec-display .ital {
      font-style: italic;
    }

    .sec-display .accent {
      color: var(--ki-accent);
    }

    .sec-display .gold {
      color: var(--gold);
      font-style: italic;
    }

    .sec-display--white {
      color: var(--white);
    }

    .sec-lead {
      font-family: var(--font-body);
      font-size: .97rem;
      color: var(--ki-muted);
      line-height: 1.85;
    }

    .sec-lead--white {
      color: rgba(255, 255, 255, .68);
    }


    /* ══════════════════════════════════════════════════════════
   1. TESTIMONIALS
══════════════════════════════════════════════════════════ */
    .testimonials {
      padding: clamp(4.5rem, 9vw, 4.5rem) 0;
      background: var(--grey-50);
      position: relative;
      overflow: hidden;
    }

    /* Giant decorative quote — CSS only, no img */
    .testimonials::before {
      content: '\201C';
      font-family: var(--font-head);
      font-size: clamp(16rem, 30vw, 28rem);
      color: var(--ki-accent);
      opacity: .045;
      position: absolute;
      top: -5rem;
      left: -1.5rem;
      line-height: 1;
      pointer-events: none;
      z-index: 0;
      user-select: none;
    }

    /* ── Header row ───────────────────────────────────────── */
    .tst__head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
      position: relative;
      z-index: 1;
    }

    .tst__aggregate {
      text-align: right;
      flex-shrink: 0;
    }

    .tst__agg-num {
      font-family: var(--font-head);
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--grey-900);
      line-height: 1;
      display: flex;
      align-items: baseline;
      gap: .2rem;
      justify-content: flex-end;
    }

    .tst__agg-num .denom {
      font-size: .42em;
      color: var(--grey-400);
      font-weight: 400;
    }

    .tst__agg-stars {
      display: flex;
      gap: 3px;
      justify-content: flex-end;
      margin: 6px 0 3px;
    }

    .tst__agg-stars i {
      color: #f5a623;
      font-size: 14px;
    }

    .tst__agg-label {
      font-family: var(--font-body);
      font-size: .68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: var(--grey-400);
    }

    /* ── Cards grid: 3 col, centre card inverted ──────────── */
    .tst__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      position: relative;
      z-index: 1;
    }

    /* Base card */
    .tst-card {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--grey-100);
      padding: clamp(1.5rem, 3vw, 2.2rem);
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      position: relative;
      overflow: hidden;
      transition: transform var(--trans), box-shadow var(--trans);
    }

    .tst-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    /* Accent top borders */
    .tst-card--orange {
      border-top: 3px solid var(--ki-accent);
    }

    .tst-card--navy {
      border-top: 3px solid var(--ki-accent);
      background: var(--navy);
      border-color: var(--navy);
      box-shadow: var(--shadow-lg);
    }

    .tst-card--blue {
      border-top: 3px solid var(--blue);
    }

    /* Decorative large quote icon (CSS, no extra element) */
    .tst-card::before {
      content: '\201C';
      font-family: var(--font-head);
      font-size: 7rem;
      position: absolute;
      top: -1.5rem;
      right: 1.2rem;
      line-height: 1;
      pointer-events: none;
      color: var(--ki-accent);
      opacity: .07;
    }

    .tst-card--navy::before {
      color: var(--white);
      opacity: .06;
    }

    /* Stars */
    .tst-card__stars {
      display: flex;
      gap: 3px;
    }

    .tst-card__stars i {
      color: #f5a623;
      font-size: 12px;
    }

    .tst-card--navy .tst-card__stars i {
      color: #f5a623;
    }

    /* Quote text */
    .tst-card__quote {
      font-family: var(--font-head);
      font-size: clamp(.88rem, 1.25vw, 1rem);
      font-style: italic;
      font-weight: 400;
      color: var(--grey-700);
      line-height: 1.78;
      flex: 1;
    }

    .tst-card--navy .tst-card__quote {
      color: rgba(255, 255, 255, .72);
    }

    /* Divider */
    .tst-card__rule {
      border: none;
      border-top: 1px solid var(--grey-100);
    }

    .tst-card--navy .tst-card__rule {
      border-color: rgba(255, 255, 255, .1);
    }

    /* Author row */
    .tst-card__author {
      display: flex;
      align-items: center;
      gap: .85rem;
    }

    .tst-card__avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 2px solid var(--grey-100);
    }

    .tst-card--navy .tst-card__avatar {
      border-color: rgba(255, 255, 255, .15);
    }

    .tst-card__name {
      font-family: var(--font-body);
      font-size: .92rem;
      font-weight: 800;
      color: var(--grey-900);
      line-height: 1.2;
    }

    .tst-card--navy .tst-card__name {
      color: var(--white);
    }

    .tst-card__role {
      font-family: var(--font-body);
      font-size: .72rem;
      color: var(--grey-400);
      margin-top: 2px;
    }

    .tst-card--navy .tst-card__role {
      color: rgba(255, 255, 255, .45);
    }

    .tst-card__company {
      color: var(--ki-accent);
      font-weight: 700;
    }

    /* ── Bottom trust strip ──────────────────────────────── */
    .tst__trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      margin-top: clamp(2.5rem, 5vw, 4rem);
      padding-top: clamp(2rem, 4vw, 3rem);
      border-top: 1px solid var(--grey-200);
      position: relative;
      z-index: 1;
    }

    .tst-trust-item {
      display: flex;
      align-items: center;
      gap: .7rem;
      font-family: var(--font-body);
      font-size: .82rem;
      font-weight: 700;
      color: var(--grey-700);
    }

    .tst-trust-item i {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      flex-shrink: 0;
    }

    .tst-trust-item:nth-child(1) i {
      background: var(--accent-lt);
      color: var(--ki-accent);
    }

    .tst-trust-item:nth-child(2) i {
      background: var(--green-lt);
      color: var(--green);
    }

    .tst-trust-item:nth-child(3) i {
      background: var(--blue-lt);
      color: var(--blue);
    }

    .tst-trust-item:nth-child(4) i {
      background: rgba(22, 39, 64, .07);
      color: var(--navy);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .tst__grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 560px) {
      .tst__grid {
        grid-template-columns: 1fr;
      }

      .tst__aggregate {
        display: none;
      }
    }


    /* ══════════════════════════════════════════════════════════
   2. FAQ
══════════════════════════════════════════════════════════ */
    .faq {
      padding: clamp(4.5rem, 9vw, 7.5rem) 0;
      background: var(--white);
    }

    .faq__grid {
      display: grid;
      grid-template-columns: 1fr 1.25fr;
      gap: clamp(3rem, 6vw, 6.5rem);
      align-items: start;
    }

    /* ── Left: sticky intro ──────────────────────────────── */
    .faq__intro {
      position: sticky;
      top: 100px;
    }

    .faq__lead {
      margin-bottom: 2rem;
    }

    /* Mini stats row */
    .faq__stats {
      display: flex;
      gap: 1.4rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
      padding: 1.4rem;
      background: var(--grey-50);
      border-radius: var(--radius);
      border: 1px solid var(--grey-100);
    }

    .faq-stat {}

    .faq-stat__num {
      font-family: var(--font-head);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--grey-900);
      line-height: 1;
    }

    .faq-stat__num .unit {
      color: var(--ki-accent);
    }

    .faq-stat__lbl {
      font-family: var(--font-body);
      font-size: .65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: var(--grey-400);
      margin-top: 3px;
    }

    /* Support CTA */
    .faq__support {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.2rem 1.5rem;
      background: var(--accent-lt);
      border-radius: var(--radius);
      border-left: 3px solid var(--ki-accent);
      text-decoration: none;
      transition: box-shadow var(--trans), transform var(--trans);
    }

    .faq__support:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .faq__support-ico {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--ki-accent);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .faq__support-text {}

    .faq__support-label {
      font-family: var(--font-body);
      font-size: .7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: var(--ki-accent);
      opacity: .7;
    }

    .faq__support-title {
      font-family: var(--font-body);
      font-size: .95rem;
      font-weight: 800;
      color: var(--grey-900);
      margin-top: 1px;
    }

    /* ── Right: accordion ────────────────────────────────── */
    .faq__list {
      display: flex;
      flex-direction: column;
    }

    .faq-item {
      border-bottom: 1px solid var(--grey-100);
    }

    .faq-item:first-child {
      border-top: 1px solid var(--grey-100);
    }

    /* Trigger button */
    .faq-item__trigger {
      width: 100%;
      display: flex;
      align-items: center;
      gap: .9rem;
      padding: 1.2rem 0;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font-body);
      text-align: left;
      transition: background var(--trans);
    }

    /* FA icon badge */
    .faq-item__icon {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: var(--grey-50);
      border: 1px solid var(--grey-100);
      color: var(--grey-400);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
      transition: background var(--trans), color var(--trans), border-color var(--trans);
    }

    .faq-item.is-open .faq-item__icon {
      background: var(--ki-accent);
      border-color: var(--ki-accent);
      color: var(--white);
    }

    /* Question text */
    .faq-item__q {
      flex: 1;
      font-family: var(--font-body);
      font-size: .97rem;
      font-weight: 700;
      color: var(--grey-900);
      transition: color var(--trans);
    }

    .faq-item.is-open .faq-item__q {
      color: var(--ki-accent);
    }

    /* Chevron */
    .faq-item__chevron {
      font-size: 11px;
      color: var(--grey-400);
      flex-shrink: 0;
      transition: transform var(--trans), color var(--trans);
    }

    .faq-item.is-open .faq-item__chevron {
      transform: rotate(180deg);
      color: var(--ki-accent);
    }

    /* Answer body */
    .faq-item__body {
      overflow: hidden;
      max-height: 0;
      transition: max-height .42s cubic-bezier(.4, 0, .2, 1);
    }

    .faq-item.is-open .faq-item__body {
      max-height: 400px;
    }

    .faq-item__ans {
      font-family: var(--font-body);
      font-size: .88rem;
      color: var(--ki-muted);
      line-height: 1.82;
      padding: 0 0 1.3rem 50px;
    }

    /* Responsive */
    @media (max-width: 960px) {
      .faq__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .faq__intro {
        position: static;
      }
    }


    /* ══════════════════════════════════════════════════════════
   3. CTA + FORM
══════════════════════════════════════════════════════════ */
    .cta-form {
      position: relative;
      overflow: hidden;
    }

    .cta-form__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 680px;
    }

    /* ── Left panel — image + overlay ─────────────────────── */
    .ctf__left {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
      overflow: hidden;
    }

    .ctf__bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .ctf__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg,
          rgba(22, 39, 64, .96) 0%,
          rgba(22, 39, 64, .80) 55%,
          rgba(229, 119, 37, .72) 100%);
      z-index: 1;
    }

    /* Decorative circles */
    .ctf__deco-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .05);
      pointer-events: none;
      z-index: 1;
    }

    .ctf__deco-ring--lg {
      width: 500px;
      height: 500px;
      bottom: -180px;
      left: -180px;
    }

    .ctf__deco-ring--sm {
      width: 260px;
      height: 260px;
      top: -80px;
      right: -80px;
      border-color: rgba(229, 119, 37, .12);
    }

    .ctf__left-body {
      position: relative;
      z-index: 2;
    }

    .ctf__display {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 1.2rem;
    }

    .ctf__display .gold {
      color: var(--gold);
      font-style: italic;
    }

    .ctf__sublead {
      font-family: var(--font-body);
      font-size: .95rem;
      color: rgba(255, 255, 255, .65);
      line-height: 1.85;
      margin-bottom: 2.5rem;
      max-width: 400px;
    }

    /* Benefit checklist */
    .ctf__benefits {
      display: flex;
      flex-direction: column;
      gap: .85rem;
    }

    .ctf-benefit {
      display: flex;
      align-items: center;
      gap: .85rem;
      font-family: var(--font-body);
      font-size: .9rem;
      font-weight: 600;
      color: rgba(255, 255, 255, .85);
    }

    .ctf-benefit__ico {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .10);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: var(--white);
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, .14);
    }

    /* ── Right panel — form ────────────────────────────────── */
    .ctf__right {
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
    }

    .ctf__form-wrap {
      width: 100%;
      max-width: 460px;
    }

    .ctf__form-title {
      font-family: var(--font-head);
      font-size: clamp(1.45rem, 2.5vw, 1.95rem);
      font-weight: 600;
      color: var(--grey-900);
      line-height: 1.22;
      margin-bottom: 1.8rem;
    }

    .ctf__form-title .accent {
      color: var(--ki-accent);
      font-style: italic;
    }

    /* Form */
    .ctf__form {
      display: flex;
      flex-direction: column;
      gap: .9rem;
    }

    .ctf-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .9rem;
    }

    /* Field wrapper */
    .ctf-field {
      position: relative;
    }

    .ctf-field i {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--grey-400);
      font-size: 13px;
      pointer-events: none;
      transition: color var(--trans);
      z-index: 1;
    }

    .ctf-field--ta i {
      top: 15px;
      transform: none;
    }

    /* Focus-within: icon turns accent */
    .ctf-field:focus-within i {
      color: var(--ki-accent);
    }

    /* Inputs, select, textarea */
    .ctf-field input,
    .ctf-field select,
    .ctf-field textarea {
      width: 100%;
      padding: 11px 14px 11px 40px;
      font-family: var(--font-body);
      font-size: .9rem;
      color: var(--grey-900);
      background: var(--grey-50);
      border: 1.5px solid var(--grey-200);
      border-radius: 8px;
      outline: none;
      transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
      appearance: none;
    }

    .ctf-field textarea {
      resize: vertical;
      min-height: 108px;
      padding-top: 12px;
    }

    .ctf-field input:focus,
    .ctf-field select:focus,
    .ctf-field textarea:focus {
      border-color: var(--ki-accent);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(229, 119, 37, .1);
    }

    /* Select arrow */
    .ctf-field--select::after {
      content: '\f078';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 11px;
      color: var(--grey-400);
      pointer-events: none;
    }

    /* Submit */
    .ctf__submit {
      width: 100%;
      padding: .95rem;
      font-family: var(--font-body);
      font-size: .82rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--ki-accent);
      border: 2px solid var(--ki-accent);
      border-radius: 8px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      margin-top: .3rem;
      transition: background var(--trans), color var(--trans), transform var(--trans);
    }

    .ctf__submit:hover {
      background: transparent;
      color: var(--ki-accent);
      transform: translateY(-2px);
    }

    .ctf__submit i {
      font-size: 13px;
      transition: transform var(--trans);
    }

    .ctf__submit:hover i {
      transform: translateX(4px);
    }

    /* Privacy note */
    .ctf__privacy {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .45rem;
      font-family: var(--font-body);
      font-size: .7rem;
      color: var(--grey-400);
      margin-top: .8rem;
    }

    .ctf__privacy i {
      color: var(--green);
      font-size: 11px;
    }

    /* Responsive */
    @media (max-width: 960px) {
      .cta-form__inner {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .ctf__left {
        min-height: 400px;
      }

      .ctf__right {
        padding: 3rem 1.5rem;
      }
    }

    @media (max-width: 560px) {
      .ctf-row {
        grid-template-columns: 1fr;
      }

      .ctf__left {
        min-height: 320px;
        padding: 2.5rem 1.5rem;
      }
    }


    /* ══════════════════════════════════════════════════════════
   4. FOOTER
══════════════════════════════════════════════════════════ */
    .site-footer {
      background: var(--navy);
      font-family: var(--font-body);
      color: rgba(255, 255, 255, .55);
    }

    /* ── Main grid ─────────────────────────────────────────── */
    .ftr__main {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
      gap: clamp(2rem, 4vw, 3.5rem);
      padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(0rem, 5vw, 0rem);
    }

    /* Brand column */
    .ftr__logo {
      height: 52px;
      width: auto;
      display: block;
      margin-bottom: 1.2rem;
      filter: brightness(0) invert(1);
      opacity: .85;
    }

    .ftr__tagline {
      font-size: .88rem;
      line-height: 1.78;
      color: rgba(255, 255, 255, .5);
      max-width: 230px;
      margin-bottom: 1.6rem;
    }

    /* Social icons */
    .ftr__socials {
      display: flex;
      gap: .55rem;
      margin-bottom: 1.8rem;
    }

    .ftr__social {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .5);
      text-decoration: none;
      font-size: 14px;
      transition: background var(--trans), border-color var(--trans), color var(--trans);
    }

    .ftr__social:hover {
      background: var(--ki-accent);
      border-color: var(--ki-accent);
      color: var(--white);
    }

    /* Newsletter */
    .ftr__nl-label {
      font-size: .65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .18em;
      color: rgba(255, 255, 255, .35);
      margin-bottom: .6rem;
    }

    .ftr__nl-form {
      display: flex;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .ftr__nl-input {
      flex: 1;
      padding: 10px 13px;
      background: rgba(255, 255, 255, .05);
      border: none;
      outline: none;
      font-family: var(--font-body);
      font-size: .84rem;
      color: var(--white);
      min-width: 0;
    }

    .ftr__nl-input::placeholder {
      color: rgba(255, 255, 255, .25);
    }

    .ftr__nl-btn {
      padding: 10px 14px;
      background: var(--ki-accent);
      border: none;
      cursor: pointer;
      color: var(--white);
      font-size: 14px;
      flex-shrink: 0;
      transition: background var(--trans);
    }

    .ftr__nl-btn:hover {
      background: var(--accent-dk);
    }

    /* ── Column label — NOT a heading tag ─────────────────── */
    .ftr__col-label {
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .ftr__col-label::before {
      content: '';
      width: 14px;
      height: 2px;
      background: var(--ki-accent);
      border-radius: 2px;
      display: inline-block;
      flex-shrink: 0;
    }

    /* Link lists */
    .ftr__links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .6rem;
    }

    .ftr__links a {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      font-size: .875rem;
      color: rgba(255, 255, 255, .52);
      text-decoration: none;
      transition: color var(--trans), gap var(--trans);
    }

    .ftr__links a i {
      font-size: 9px;
      color: var(--ki-accent);
      transition: transform var(--trans);
    }

    .ftr__links a:hover {
      color: var(--white);
      gap: .8rem;
    }

    .ftr__links a:hover i {
      transform: translateX(2px);
    }

    /* ── Contact items ─────────────────────────────────────── */
    .ftr__contact {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .ftr-ci {
      display: flex;
      align-items: flex-start;
      gap: .9rem;
    }

    .ftr-ci__ico {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .09);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: var(--ki-accent);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .ftr-ci__wrap {}

    .ftr-ci__meta {
      font-size: .62rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 2px;
    }

    .ftr-ci__val {
      font-size: .85rem;
      line-height: 1.55;
      color: rgba(255, 255, 255, .58);
    }

    .ftr-ci__val a {
      color: rgba(255, 255, 255, .58);
      text-decoration: none;
      transition: color var(--trans);
    }

    .ftr-ci__val a:hover {
      color: var(--white);
    }

    /* ── Certifications ────────────────────────────────────── */
    .ftr__certs {
      display: flex;
      align-items: center;
      gap: .6rem;
      flex-wrap: wrap;
      margin-top: 1.8rem;
    }

    .ftr__cert {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .6rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: rgba(255, 255, 255, .35);
      padding: .32rem .8rem;
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 4px;
    }

    .ftr__cert i {
      color: var(--green);
      font-size: 10px;
    }

    /* ── Divider + Bottom bar ──────────────────────────────── */
    .ftr__rule {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .ftr__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: .9rem;
      padding: 1.4rem 0;
    }

    .ftr__copy {
      font-size: .75rem;
      color: rgba(255, 255, 255, .32);
    }

    .ftr__copy a {
      color: var(--ki-accent);
      text-decoration: none;
    }

    .ftr__legal {
      display: flex;
      gap: 1.4rem;
      flex-wrap: wrap;
    }

    .ftr__legal a {
      font-size: .72rem;
      color: #e57725;
      text-decoration: none;
      transition: color var(--trans);
    }

    .ftr__legal a:hover {
      color: var(--white);
    }

    /* Scroll-to-top button */
    .ftr__top-btn {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .1);
      background: none;
      color: rgba(255, 255, 255, .45);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 14px;
      transition: background var(--trans), color var(--trans), border-color var(--trans);
    }

    .ftr__top-btn:hover {
      background: var(--ki-accent);
      border-color: var(--ki-accent);
      color: var(--white);
    }

    /* ── Footer responsive ────────────────────────────────── */
    @media (max-width: 1100px) {
      .ftr__main {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .ftr__main {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .ftr__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .ftr__legal {
        justify-content: center;
      }
    }

    /* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
    .wa-float {
      position: fixed;
      left: 24px;
      bottom: 28px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
    }

    /* Tooltip bubble above the button */
    .wa-tooltip {
      background: #fff;
      border-radius: 14px 14px 14px 4px;
      box-shadow: 0 8px 32px rgba(0,0,0,.14), 0 1px 4px rgba(0,0,0,.08);
      padding: 10px 14px;
      margin-bottom: 10px;
      max-width: 210px;
      position: relative;
      transform: translateY(6px) scale(.94);
      opacity: 0;
      pointer-events: none;
      transition: opacity .28s cubic-bezier(.22,1,.36,1),
                  transform .28s cubic-bezier(.22,1,.36,1);
      transform-origin: bottom left;
    }
    .wa-float:hover .wa-tooltip {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .wa-tip-name {
      font-size: .72rem;
      font-weight: 700;
      color: #111;
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 3px;
    }
    .wa-tip-name::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #25d366;
      flex-shrink: 0;
      animation: pulse-dot 1.8s ease infinite;
    }
    @keyframes pulse-dot {
      0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
      50%      { box-shadow: 0 0 0 5px rgba(37,211,102,0); }
    }
    .wa-tip-msg {
      font-size: .68rem;
      color: #555;
      line-height: 1.5;
    }
    /* Tiny tail on tooltip */
    .wa-tooltip::after {
      content: '';
      position: absolute;
      bottom: -8px; left: 18px;
      border: 5px solid transparent;
      border-top-color: #fff;
      filter: drop-shadow(0 2px 2px rgba(0,0,0,.06));
    }

    /* Main WA button */
    .wa-btn {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0;
      cursor: pointer;
      text-decoration: none;
    }

    /* Outer animated ring */
    .wa-ring {
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 2px solid rgba(37,211,102,.35);
      animation: wa-spin-ring 6s linear infinite;
      pointer-events: none;
    }
    .wa-ring::before {
      content: '';
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #25d366;
      box-shadow: 0 0 6px #25d366;
    }
    @keyframes wa-spin-ring {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Second pulse ring */
    .wa-pulse-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: rgba(37,211,102,.15);
      animation: wa-pulse 2.4s ease-out infinite;
      pointer-events: none;
    }
    @keyframes wa-pulse {
      0%   { transform: scale(1);   opacity: .8; }
      100% { transform: scale(1.9); opacity: 0;  }
    }

    /* Circle core */
    .wa-circle {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,.5),
                  0 2px 8px rgba(0,0,0,.15);
      transition: transform .28s cubic-bezier(.22,1,.36,1),
                  box-shadow .28s;
      position: relative;
      z-index: 2;
    }
    .wa-btn:hover .wa-circle {
      transform: scale(1.1) rotate(-8deg);
      box-shadow: 0 10px 36px rgba(37,211,102,.65),
                  0 4px 12px rgba(0,0,0,.2);
    }
    .wa-circle i {
      font-size: 1.55rem;
      color: #fff;
      filter: drop-shadow(0 1px 3px rgba(0,0,0,.2));
    }

    /* "Chat" label pill that slides out on hover */
    .wa-label-pill {
      background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .06em;
      padding: 0 0 0 0;
      border-radius: 0 50px 50px 0;
      max-width: 0;
      overflow: hidden;
      white-space: nowrap;
      opacity: 0;
      margin-left: -10px;
      height: 40px;
      display: flex;
      align-items: center;
      transition: max-width .35s cubic-bezier(.22,1,.36,1),
                  opacity .28s,
                  padding .28s,
                  margin .28s;
      box-shadow: 0 4px 18px rgba(37,211,102,.35);
    }
    .wa-btn:hover .wa-label-pill {
      max-width: 130px;
      opacity: 1;
      padding: 0 16px 0 14px;
      margin-left: -8px;
    }

    /* Notification badge */
    .wa-badge {
      position: absolute;
      top: -3px; right: -3px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--crimson);
      color: #fff;
      font-size: .55rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #fff;
      z-index: 3;
      animation: badge-bounce .6s .5s ease both;
    }
    @keyframes badge-bounce {
      0%,100% { transform: scale(1);    }
      50%      { transform: scale(1.25); }
    }



    .phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59,130,246,0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255,255,255,0.65);
  --phero-sep: rgba(255,255,255,0.4);

  font-family: 'DM Sans', sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0; 
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(202, 99, 39, 0.82) 0%,
    rgba(202, 99, 39, 0.82) 100%
  );
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue), var(--blue));
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--blue);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid var(--crimson);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #2b2a28;
}

.sitemap-card:hover {
    background-color: var(--crimson);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: var(--crimson);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--crimson);
}

.main-links {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .sitemap-card {
        padding: 15px;
    }
    
    .card-label {
        font-size: 1rem;
    }
}