:root {
      /* Wemov official navy (sections, dark BG) */
      --navy: #001a5c;
      --navy-mid: #002F98;
      --navy-light: #0070C0;
      /* Wemov official blues */
      --blue: #002F98;
      /* dark, CTAs, buttons, authority */
      --blue-mid: #0070C0;
      /* medium, links, hover, icons */
      --blue-lt: #dce9f8;
      /* light tint, chip bg, badge bg */
      --blue-glow: #58A1FA;
      /* light, highlight, accent, active */
      --accent: #ffffff;
      --white: #fff;
      --off: #F8F9FB;
      --gray: #F0F2F6;
      --border: #DDE3ED;
      --muted: #64748B;
      --body: #334155;
      --strong: #0F172A;
      --font: 'Outfit', sans-serif;
      --font-b: 'DM Sans', sans-serif;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    body {
      font-family: var(--font-b);
      color: var(--body);
      background: #fff;
      -webkit-font-smoothing: antialiased;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(20px, 5vw, 72px);
    }

    .sec {
      padding: 88px 0;
    }

    @media(max-width:768px) {
      .sec {
        padding: 56px 0;
      }
    }

    /* TYPOGRAPHY */
    .hero-h {
      font-family: var(--font);
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1.1;
      font-weight: 700;
      letter-spacing: -.02em;
      color: #fff;
    }

    .h2 {
      font-family: var(--font);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      line-height: 1.2;
      font-weight: 600;
      letter-spacing: -.01em;
    }

    .h3 {
      font-family: var(--font);
      font-size: 1.05rem;
      line-height: 1.4;
      font-weight: 600;
    }

    .label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .lead {
      font-size: 1.05rem;
      line-height: 1.75;
    }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font);
      font-weight: 600;
      font-size: .9rem;
      padding: 12px 26px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      transition: all .18s ease;
      line-height: 1;
    }
    .btn:active {
      transform: scale(0.97);
    }

    .btn-primary {
      background: #fff;
      color: var(--blue);
    }

    .btn-primary:hover, .btn-primary:active {
      background: var(--blue);
      color: #fff;
      box-shadow: inset 0 0 0 1.5px #fff;
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, .6);
    }

    .btn-outline:hover, .btn-outline:active {
      background: rgba(255, 255, 255, .08);
    }

    .btn-blue-outline {
      background: transparent;
      color: var(--blue);
      border: 1.5px solid var(--blue);
    }

    .btn-blue-outline:hover, .btn-blue-outline:active {
      background: var(--blue-lt);
      color: var(--blue-mid);
    }

    .btn-blue-solid {
      background: var(--blue);
      color: #fff;
      border: 1.5px solid var(--blue);
    }

    .btn-blue-solid:hover, .btn-blue-solid:active {
      background: #fff;
      color: var(--blue);
      box-shadow: inset 0 0 0 1.5px var(--blue);
    }

    .btn-white {
      background: #fff;
      color: var(--navy);
    }

    .btn-white:hover, .btn-white:active {
      background: var(--gray);
    }

    /* CHIP */
    .chip {
      display: inline-block;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 2px;
      margin-bottom: 18px;
    }

    .chip-blue {
      background: var(--blue-mid);
      color: #fff;
    }

    .chip-accent {
      background: #fff;
      color: var(--blue-mid);
    }

    .chip-white {
      background: rgba(255, 255, 255, .14);
      color: rgba(255, 255, 255, .9);
    }

    /* DIVIDER */
    hr.slim {
      border: none;
      border-top: 1px solid var(--border);
    }

    /* FADE IN */
    .fi {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1);
    }

    .fi.on {
      opacity: 1;
      transform: none;
    }

    /* ─── NAVBAR ─── */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(3, 20, 60, 0.45);
      backdrop-filter: blur(22px) saturate(200%);
      -webkit-backdrop-filter: blur(22px) saturate(200%);
      border-bottom: 1px solid rgba(88, 161, 250, 0.18);
      box-shadow: 0 1px 0 rgba(88, 161, 250, 0.08), 0 4px 24px rgba(0, 26, 92, 0.18);
    }

    .nav-wr {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: var(--font);
      font-size: 1.35rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.02em;
    }

    .logo span {
      color: var(--blue-glow);
    }

    .nav-links a {
      font-size: .875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, .85);
      transition: color .15s;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-tel {
      font-size: .8rem;
      color: rgba(255, 255, 255, .65);
    }

    .nav-tel strong {
      color: #fff;
      font-weight: 600;
    }

    .logo span {
      color: var(--blue-glow);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-end {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }

    .hamburger span {
      width: 22px;
      height: 1.5px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 1px;
      display: block;
      transition: .2s;
    }

    .mob-menu {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background: rgba(3, 20, 60, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(88, 161, 250, 0.15);
      padding: 20px;
      flex-direction: column;
      gap: 14px;
      z-index: 99;
    }

    .mob-menu a:not(.btn) {
      color: rgba(255, 255, 255, .85);
      font-size: .95rem;
    }

    .mob-menu.open {
      display: flex;
    }

    @media(max-width:900px) {
      .nav-links {
        display: none;
      }

      .nav-tel {
        display: none;
      }
    }

    @media(max-width:900px) {
      .hamburger {
        display: flex;
      }
    }

    /* ─── HERO ─── */
    #hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0, 26, 92, .92) 0%, rgba(0, 47, 152, .85) 50%, rgba(0, 112, 192, .25) 100%);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding-top: 80px;
      padding-bottom: 160px;
    }

    .hero-content p {
      color: rgba(255, 255, 255, .75);
      margin: 20px 0 36px;
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      background: #fff;
      border-top: 1px solid var(--border);
    }

    .hero-bar-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .hb-item {
      padding: 22px 24px;
      border-right: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 14px;
      cursor: pointer;
      transition: background .15s;
    }

    .hb-item:last-child {
      border-right: none;
    }

    .hb-item:hover,
    .hb-item.active {
      background: var(--blue-lt);
      border-bottom: 2px solid var(--blue);
    }

    .hb-item:hover .hb-num,
    .hb-item.active .hb-num {
      color: var(--blue);
    }

    .hb-icon {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hb-icon svg {
      color: var(--blue-mid);
    }

    .hb-label {
      font-family: var(--font);
      font-size: .75rem;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: .04em;
      text-transform: uppercase;
      line-height: 1.3;
    }

    .hb-num {
      font-family: var(--font);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--strong);
    }

    .tab-pane {
      display: none;
      animation: fadeIn .4s ease forwards;
    }

    .tab-pane.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media(max-width:768px) {
      #hero {
        min-height: auto;
      }

      .hero-inner {
        padding-bottom: 220px;
      }

      .hero-btns {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-btns .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-bg::after {
        background: rgba(10, 22, 40, .82);
      }

      .hero-bar-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .hb-item:nth-child(2) {
        border-right: none;
      }

      .hb-item:nth-child(3) {
        border-right: 1px solid var(--border);
      }

      .hb-item:nth-child(3),
      .hb-item:nth-child(4) {
        border-top: 1px solid var(--border);
      }
    }

    /* ─── PAIN ─── */
    #pain {
      background: var(--off);
    }

    .pain-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .pain-image {
      position: relative;
    }

    .pain-image img {
      width: 100%;
      border-radius: 0;
      display: block;
    }

    .pain-list {
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .pain-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      font-size: .95rem;
      line-height: 1.6;
      color: var(--body);
    }

    .pain-item:first-child {
      border-top: 1px solid var(--border);
    }

    .pain-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blue-mid);
      flex-shrink: 0;
      margin-top: 8px;
    }

    @media(max-width:768px) {
      .pain-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .pain-image {
        order: -1;
      }
    }

    /* ─── HOW ─── */
    #how {
      background: var(--blue);
      color: #fff;
    }

    .how-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: end;
      margin-bottom: 56px;
    }

    .how-top p {
      color: rgba(255, 255, 255, .72);
      font-size: 1rem;
      line-height: 1.75;
      margin-top: 16px;
    }

    .how-top .h2 {
      color: #fff;
    }

    .how-flow {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
      margin-bottom: 34px;
    }

    .how-step {
      position: relative;
      padding: 14px 0 18px;
      border-top: 1px solid rgba(255, 255, 255, .18);
    }

    .how-step:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -9px;
      width: 1px;
      height: 22px;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, .18);
      z-index: 2;
    }

    .how-step-n {
      display: inline-block;
      margin-bottom: 10px;
      color: rgba(255, 255, 255, .46);
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .how-step h3 {
      color: #fff;
      font-family: var(--font);
      font-size: .98rem;
      font-weight: 600;
      margin-bottom: 0;
    }

    .how-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, .12);
    }

    .how-card {
      background: var(--blue);
      padding: 36px 28px;
      transition: background .2s;
    }

    .how-card:hover {
      background: #002580;
    }

    .how-icon {
      width: 48px;
      height: 48px;
      border: 1px solid rgba(88, 161, 250, .35);
      background: rgba(88, 161, 250, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .how-icon svg {
      color: var(--blue-glow);
    }

    .how-card h3 {
      color: #fff;
      font-family: var(--font);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .how-card p {
      color: rgba(255, 255, 255, .58);
      font-size: .875rem;
      line-height: 1.65;
    }

    @media(max-width:900px) {
      .how-top {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .how-flow {
        grid-template-columns: 1fr;
      }

      .how-step:not(:last-child)::after {
        top: auto;
        right: auto;
        left: 0;
        bottom: -9px;
        width: 22px;
        height: 1px;
        transform: none;
      }
    }

    @media(max-width:768px) {
      .how-cards {
        grid-template-columns: 1fr;
      }
    }

    /* ─── BEFORE/AFTER ─── */
    #ba {
      background: #fff;
    }

    .ba-head {
      text-align: center;
      margin-bottom: 48px;
    }

    .ba-cols {
      display: grid;
      grid-template-columns: 1fr 40px 1fr;
      gap: 0;
      align-items: stretch;
    }

    .ba-col {
      padding: 40px;
    }

    .ba-before {
      background: var(--gray);
      border: 1px solid var(--border);
    }

    .ba-after {
      background: var(--blue);
      border: 1px solid var(--blue);
    }

    .ba-tag {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 20px;
      display: block;
    }

    .ba-before .ba-tag {
      color: var(--muted);
    }

    .ba-after .ba-tag {
      color: var(--accent);
    }

    .ba-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .ba-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px solid;
      font-size: .9rem;
      line-height: 1.5;
    }

    .ba-before .ba-list li {
      border-color: var(--border);
      color: var(--body);
    }

    .ba-before .ba-list li:last-child {
      border-bottom: none;
    }

    .ba-after .ba-list li {
      border-color: rgba(88, 161, 250, .18);
      color: rgba(255, 255, 255, .85);
    }

    .ba-after .ba-list li:last-child {
      border-bottom: none;
    }

    .ba-x {
      flex-shrink: 0;
      margin-top: 1px;
      font-size: .8rem;
      font-weight: 700;
      color: #94a3b8;
    }

    .ba-ck {
      flex-shrink: 0;
      margin-top: 1px;
      font-size: .8rem;
      font-weight: 700;
      color: var(--accent);
    }

    .ba-arr {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ba-arr-inner {
      width: 36px;
      height: 36px;
      background: var(--blue-mid);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ba-arr-inner svg {
      color: #fff;
    }

    .ba-quote {
      text-align: center;
      margin-top: 40px;
      padding: 0 20px;
    }

    .ba-quote p {
      font-family: var(--font);
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 600;
      color: var(--blue);
      border-left: 3px solid var(--blue-glow);
      padding-left: 18px;
      text-align: left;
      display: inline-block;
    }

    @media(max-width:768px) {
      .ba-cols {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
      }

      .ba-arr {
        transform: rotate(90deg);
        padding: 8px 0;
      }

      .ba-arr-inner {
        width: 32px;
        height: 32px;
      }
    }

    /* ─── TESTIMONIALS ─── */
    #testi {
      background: var(--off);
    }

    .testi-head {
      margin-bottom: 48px;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
    }

    .tcard {
      background: #fff;
      padding: 36px 32px;
    }

    .tcard-logo {
      width: 56px;
      height: 56px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-family: var(--font);
      font-weight: 700;
      font-size: .85rem;
      color: var(--navy);
    }

    .tcard-stars {
      color: var(--blue-mid);
      font-size: 0;
      margin-bottom: 12px;
      letter-spacing: .12em;
      line-height: 1;
    }

    .tcard-stars::before {
      content: "\2605\2605\2605\2605\2605";
      font-size: .9rem;
      letter-spacing: .12em;
    }

    .tcard-q {
      font-size: .9rem;
      line-height: 1.75;
      color: var(--body);
      font-style: italic;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }

    .tcard-name {
      font-family: var(--font);
      font-size: .85rem;
      font-weight: 600;
      color: var(--strong);
    }

    .tcard-co {
      font-size: .78rem;
      color: var(--muted);
      margin-top: 3px;
    }

    @media(max-width:768px) {
      .testi-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ─── ABOUT ─── */
    #about {
      background: #fff;
    }

    .about-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 48px;
      align-items: center;
    }

    .about-head {
      grid-column: 1 / -1;
      max-width: 720px;
    }

    .about-img {
      position: relative;
    }

    .about-img img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
    }

    .about-img {
      position: relative;
    }

    .about-img img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
    }

    .about-badge {
      position: absolute;
      bottom: -1px;
      right: -1px;
      background: var(--blue);
      padding: 20px 24px;
      min-width: 160px;
      z-index: 2;
    }

    .about-badge .n {
      font-family: var(--font);
      font-size: 1.6rem;
      font-weight: 700;
      color: #fff;
    }

    .about-badge .l {
      font-size: .75rem;
      color: rgba(255, 255, 255, .75);
      margin-top: 2px;
    }

    .about-line {
      width: 36px;
      height: 3px;
      background: var(--accent);
      margin-bottom: 20px;
    }

    .about-text {
      color: var(--body);
      font-size: .95rem;
      line-height: 1.8;
    }

    .about-text p {
      margin-bottom: 14px;
    }

    #about .about-grid>.fi:last-child {
      margin-left: -28px;
    }

    #about .about-grid>.fi:last-child>.h2 {
      display: none;
    }

    @media(max-width:768px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .about-head {
        max-width: none;
      }

      #about .about-grid>.fi:last-child {
        margin-left: 0;
      }

      .about-img {
        order: -1;
      }
    }

    /* ─── NUMBERS ─── */
    #nums {
      background: var(--blue);
    }

    .nums-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .stat {
      padding: 48px 24px;
      border-right: 1px solid rgba(255, 255, 255, .08);
      text-align: center;
    }

    .stat:last-child {
      border-right: none;
    }

    .stat-n {
      font-family: var(--font);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }

    .stat-l {
      font-size: .8rem;
      color: rgba(255, 255, 255, .60);
      margin-top: 8px;
      line-height: 1.4;
    }

    @media(max-width:768px) {
      .nums-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stat:nth-child(2) {
        border-right: none;
      }

      .stat:nth-child(1),
      .stat:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
      }
    }

    /* ─── PARTNERS ─── */
    #partners {
      background: #fff;
      border-top: 1px solid var(--border);
    }

    .partners-head {
      text-align: center;
      margin-bottom: 48px;
    }

    .logos-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 180px));
      justify-content: center;
      gap: 18px;
    }

    .p-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      border: 1px solid var(--border);
      opacity: .7;
      transition: all .2s;
    }

    .p-logo:hover {
      opacity: 1;
      border-color: var(--blue);
    }

    .p-logo span {
      font-family: var(--font);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy);
    }

    .erp-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 140px));
      gap: 12px;
      margin-top: 26px;
    }

    .erp-pill {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border: 1px solid var(--border);
      background: #fff;
    }

    .erp-pill span {
      font-family: var(--font);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: .01em;
      color: var(--navy);
    }

    @media(max-width:768px) {
      .logos-row,
      .erp-strip {
        grid-template-columns: 1fr 1fr;
      }
    }

    .partners-note {
      text-align: center;
      margin-top: 36px;
      font-family: var(--font);
      font-size: .95rem;
      font-weight: 500;
      color: var(--blue);
      font-style: italic;
    }

    /* ─── CTA ─── */
    #cta {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 520px;
      text-align: center;
    }

    .cta-bg {
      position: absolute;
      inset: 0;
    }

    .cta-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cta-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(0, 47, 152, .84) 0%, rgba(0, 26, 92, .78) 60%, rgba(0, 112, 192, .55) 100%);
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      padding: 100px 20px;
      max-width: 660px;
    }

    .cta-inner .h2 {
      color: #fff;
      margin: 12px 0 16px;
    }

    .cta-inner p {
      color: rgba(255, 255, 255, .72);
      font-size: 1rem;
      margin-bottom: 36px;
    }

    .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ─── FOOTER ─── */
    #footer {
      background: var(--navy);
    }

    .footer-top {
      padding: 56px 0;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .f-logo {
      font-family: var(--font);
      font-size: 1.3rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.02em;
    }

    .f-logo span {
      color: var(--blue-glow);
    }

    .f-tagline {
      font-style: italic;
      font-size: .82rem;
      color: rgba(255, 255, 255, .4);
      margin: 6px 0 14px;
    }

    .f-about {
      font-size: .85rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, .52);
      max-width: 280px;
    }

    .f-socials {
      display: flex;
      gap: 8px;
      margin-top: 22px;
    }

    .f-social {
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, .07);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .55);
      transition: all .18s;
      border: 1px solid rgba(255, 255, 255, .07);
    }

    .f-social:hover {
      background: var(--blue-mid);
      color: #fff;
      border-color: var(--blue-mid);
    }

    .f-col h4 {
      font-family: var(--font);
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 18px;
    }

    .f-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .f-links a {
      font-size: .875rem;
      color: rgba(255, 255, 255, .60);
      transition: color .15s;
    }

    .f-links a:hover {
      color: #fff;
    }

    .f-contact-item {
      display: flex;
      gap: 10px;
      margin-bottom: 10px;
      font-size: .875rem;
      color: rgba(255, 255, 255, .60);
      line-height: 1.5;
    }

    .f-contact-item svg {
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--accent);
    }

    .footer-bottom {
      padding: 16px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: .75rem;
      color: rgba(255, 255, 255, .3);
    }

    @media(max-width:768px) {
      .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    /* RD MODAL */
    .rd-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 26, 92, 0.8);
      backdrop-filter: blur(4px);
      align-items: center;
      justify-content: center;
    }
    .rd-modal.open {
      display: flex;
    }
    .rd-modal-content {
      background: transparent;
      padding: 0;
      border-radius: 8px;
      width: 90%;
      max-width: 500px;
      position: relative;
    }
    .rd-close {
      position: absolute;
      top: 15px;
      right: 35px;
      font-size: 24px;
      color: #fff;
      cursor: pointer;
      z-index: 99999;
      width: 36px;
      height: 36px;
      border: 2px solid #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      transition: all .2s;
    }
    .rd-close:hover {
      background: #fff;
      color: var(--blue-mid);
    }
    .rd-modal-content input,
    .rd-modal-content select,
    .rd-modal-content textarea {
      color: #333 !important;
    }
    .rd-modal-content div[role="main"],
    .rd-modal-content div[role="main"] iframe {
      max-width: 100% !important;
      width: 100% !important;
      overflow-x: hidden;
    }
    @media (max-width: 600px) {
      .rd-modal-content {
        width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
        border-radius: 8px;
        margin: auto;
      }
      .rd-close {
        top: 2px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 20px;
        background: rgba(0, 0, 0, 0.2);
      }
    }

    /* FAQ ACCORDION */
    .faq-grid {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .faq-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      transition: all .2s;
    }
    .faq-item:hover {
      border-color: rgba(0, 47, 152, .3);
    }
    .faq-btn {
      width: 100%;
      text-align: left;
      padding: 24px;
      background: #fff;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: var(--font-b);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--navy);
      transition: color .2s;
    }
    .faq-item.active .faq-btn {
      color: var(--blue);
    }
    .faq-icon {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--blue);
      transition: transform .3s ease;
    }
    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }
    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }
    .faq-inner {
      padding: 0 24px 24px;
      color: var(--body);
      font-size: 1rem;
      line-height: 1.7;
    }

    /* -- BLOG POST SHARED LAYOUT -- */
    .breadcrumb { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 32px; display:flex; align-items:center; gap:8px; font-family:'DM Sans', sans-serif;}
    .breadcrumb a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.2s;}
    .breadcrumb a:hover { color: #fff; }
    .post-hero { background: linear-gradient(rgba(9, 14, 23, 0.85), rgba(9, 14, 23, 0.95)), url('https://images.unsplash.com/photo-1553413077-190dd305871c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover no-repeat; padding: 100px 0 40px; border-bottom: 1px solid var(--border); }
    .post-chip { display: inline-block; background: var(--blue-mid); color: #fff; padding: 4px 12px; border-radius: 12px; font-size: 0.85rem; font-weight: 600; font-family: 'Outfit', sans-serif; margin-bottom: 16px; }
    .post-h1 { font-size: 2.5rem; color: #fff; font-family: 'Outfit', sans-serif; line-height: 1.2; margin-bottom: 24px; }
    .post-sub { font-size: 1.15rem; color: rgba(255, 255, 255, 0.8); font-family: 'DM Sans', sans-serif; line-height: 1.6; margin-bottom: 32px; max-width:800px; }
    
    .post-meta { display: flex; align-items: center; gap: 16px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); font-family: 'DM Sans', sans-serif;}
    .post-author-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
    .post-author-info { color: #fff !important; }
    .post-author-info strong { color: #fff !important; font-weight: 600; display: block; font-size: 1rem;}
    .blog-date-js { color: rgba(255, 255, 255, 0.8) !important; font-size: 0.85rem; }
    .post-meta svg { color: rgba(255, 255, 255, 0.7); }
    .post-meta div { color: rgba(255, 255, 255, 0.9); }

    .post-layout { display: grid; grid-template-columns: minmax(0, 680px) 260px; justify-content: center; gap: 64px; padding: 64px 0; }
    @media (max-width: 900px) { .post-layout { grid-template-columns: 1fr; } .post-h1 { font-size: 2.5rem; color: #fff; font-family: 'Outfit', sans-serif; line-height: 1.2; margin-bottom: 24px; } }
    
    .post-content h2 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; color: var(--strong); margin: 48px 0 16px; margin-top:-60px; padding-top:60px; }
    .post-content h3 { font-family: 'Outfit', sans-serif; font-size: 1.3rem; color: var(--strong); margin: 32px 0 12px; }
    .post-content p { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; line-height: 1.7; color: var(--body); margin-bottom: 20px; }
    .post-content ul { padding-left: 24px; margin-bottom: 24px; }
    .post-content li { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; line-height: 1.6; color: var(--body); margin-bottom: 8px; }
    .post-content blockquote { border-left: 4px solid var(--blue-mid); padding-left: 20px; margin: 32px 0; font-size: 1.25rem; font-style: italic; color: var(--strong); background: var(--off); padding: 24px; border-radius: 0 8px 8px 0; }
    .post-content hr { border: none; height: 1px; background: var(--border); margin: 48px 0; }
    
    .sidebar { position: sticky; top: 100px; height: max-content; }
    .side-box { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
    .side-box h4 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; color: var(--strong); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
    .side-box p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
    .toc-link { display: block; font-size: 0.9rem; color: var(--muted); text-decoration: none; margin-bottom: 12px; line-height: 1.4; transition: color 0.2s;}
    .toc-link:hover { color: var(--blue-mid); }
    
    .inline-cta { background: var(--off); border: 1px solid var(--border); border-radius: 8px; padding: 32px; text-align: center; margin-top: 48px; }
    .inline-cta h3 { margin-top: 0; font-family: 'Outfit', sans-serif; color: var(--strong); }
    
    .post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 48px; }
    .tag { background: #fff; border: 1px solid var(--border); color: var(--muted); font-size: 0.8rem; padding: 4px 12px; border-radius: 16px; }

    /* -- BLOG POST INTERACTIVE FAQ (aeo-faq) -- */
    .aeo-faq { margin-top: 40px; border-top: 1px solid var(--border); }
    .aeo-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
    .aeo-q { font-weight: 700; font-family: 'Outfit', sans-serif; color: var(--navy); display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 12px; }
    .aeo-q svg { flex-shrink: 0; transition: transform 0.3s ease; }
    .aeo-item.open .aeo-q svg { transform: rotate(180deg); }
    .aeo-a { padding-top: 12px; display: none; color: var(--body); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; line-height: 1.6; }
    .aeo-item.open .aeo-a { display: block; }

    /* -- BLOG POST SYNC TABLE -- */
    .sync-table-wrap { overflow-x: auto; margin: 32px 0; border-radius: 12px; border: 1px solid var(--border); }
    .sync-table { width: 100%; border-collapse: collapse; min-width: 550px; }
    .sync-table th { background: var(--off); font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--strong); padding: 16px; text-align: left; border-bottom: 2px solid var(--border); font-size: 0.95rem; }
    .sync-table td { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--body); padding: 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
    .sync-table tr:last-child td { border-bottom: none; }
    .sync-table tr:hover td { background: var(--off); }
    .tag-erp { display: inline-block; padding: 4px 10px; background: var(--gray); color: var(--strong); font-size: 0.8rem; font-weight: 700; border-radius: 6px; font-family: 'Outfit', sans-serif; }
    .tag-wms { display: inline-block; padding: 4px 10px; background: var(--navy); color: #fff; font-size: 0.8rem; font-weight: 700; border-radius: 6px; font-family: 'Outfit', sans-serif; }

    /* -- BLOG POST COMPARISON CARDS -- */
    .comp-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
    .comp-card { background: #fff; padding: 24px; border-radius: 12px; border: 1px solid var(--border); }
    .comp-card h4 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; color: var(--strong); margin-bottom: 16px; text-align: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
    .comp-item { display: flex; gap: 12px; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; align-items: flex-start; }
    .comp-item:last-child { margin-bottom: 0; }
    .comp-item svg { flex-shrink: 0; margin-top: 2px; color: #E11D48; }
    .comp-green svg { color: #10B981; }
    @media (max-width: 600px) { .comp-wrap { grid-template-columns: 1fr; } }

    /* -- BLOG POST TIMELINE -- */
    .timeline { padding-top: 24px; margin: 32px 0; border-left: 2px solid var(--blue-mid); padding-left: 24px; display: flex; flex-direction: column; gap: 24px; }
    .tl-item { position: relative; }
    .tl-item::before { content: ''; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--blue-mid); border: 3px solid #fff; left: -33px; top: 4px; box-shadow: 0 0 0 1px var(--blue-mid); }
    .tl-date { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--blue-mid); font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
    .tl-desc { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; color: var(--body); line-height: 1.5; }

    /* -- BLOG POST RESULT CARDS -- */
    .result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
    .result-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px; display: flex; gap: 16px; align-items: flex-start; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
    .result-icon { width: 48px; height: 48px; background: var(--blue-lt); color: var(--blue-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .result-text strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.05rem; color: var(--strong); margin-bottom: 4px; }
    .result-text span { font-size: 0.9rem; color: var(--muted); line-height: 1.4; display: block; }
    @media (max-width: 600px) { .result-grid { grid-template-columns: 1fr; } }

    /* -- BLOG POST ALERT CARDS -- */
    .alert-grid { display: grid; gap: 16px; margin: 32px 0; }
    .alert-card { border-left: 4px solid #F59E0B; background: #FFFBEB; padding: 20px; border-radius: 0 8px 8px 0; }
    .alert-card h4 { display: flex; align-items: center; gap: 8px; color: #B45309; font-family: 'Outfit', sans-serif; font-size: 1.1rem; margin-bottom: 8px; }
    .alert-card p { margin: 0; font-size: 0.95rem; color: #92400E; }