
    :root {
      --navy: #EEF3FA;
      --dark: #E3EBF5;
      --card-bg: #FFFFFF;
      --border: #CBD8EA;
      --cyan: #0099CC;
      --teal: #00897B;
      --lime: #5A9E1A;
      --muted: #5E738C;
      --white: #0D1526;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--navy);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── Scrollbar ── */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--dark);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--cyan);
      border-radius: 3px;
    }

    /* ── Grid noise overlay ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 153, 204, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 153, 204, .04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    }

    section,
    nav,
    footer {
      position: relative;
      z-index: 1;
    }

    /* ════════════════ NAVBAR ════════════════ */
    .navbar {
      background: rgba(238, 243, 250, .92);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: box-shadow .3s;
    }

    .navbar.scrolled {
      box-shadow: 0 4px 30px rgba(0, 153, 204, .1);
    }

    .navbar.scrolled {
      box-shadow: 0 4px 30px rgba(0, 212, 255, .08);
    }

    .navbar-brand {
      font-family: "Roboto", sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white) !important;
      letter-spacing: -.02em;
    }

    .navbar-brand span {
      color: var(--cyan);
    }

    .navbar-brand small {
      display: block;
      font-size: .55rem;
      letter-spacing: .25em;
      color: var(--muted);
      text-transform: uppercase;
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      margin-top: -.15rem;
    }

    .nav-link {
      color: var(--muted) !important;
      font-size: .875rem;
      font-weight: 500;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: .5rem 1rem !important;
      transition: color .2s;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 1rem;
      right: 1rem;
      height: 1px;
      background: var(--cyan);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--white) !important;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      transform: scaleX(1);
    }

    .btn-nav {
      background: transparent;
      border: 1px solid var(--cyan);
      color: var(--cyan) !important;
      border-radius: 4px;
      padding: .45rem 1.2rem !important;
      font-size: .8rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: background .2s, color .2s;
    }

    .btn-nav:hover {
      background: var(--cyan);
      color: #fff !important;
    }

    .navbar-toggler {
      border-color: var(--border);
    }

    .navbar-toggler-icon {
      filter: none;
    }

    /* ════════════════ HERO ════════════════ */
    #home {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 7rem 0 5rem;
      overflow: hidden;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(0, 153, 204, .08);
      border: 1px solid rgba(0, 153, 204, .25);
      border-radius: 100px;
      padding: .3rem 1rem;
      font-size: .75rem;
      color: var(--cyan);
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .hero-tag span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--cyan);
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .4;
        transform: scale(1.4);
      }
    }

    .hero-title {
      font-family: "Roboto", sans-serif;
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -.03em;
      margin-bottom: 1.5rem;
    }

    .hero-title .accent {
      color: var(--cyan);
    }

    .hero-title .accent-2 {
      color: var(--teal);
    }

    .hero-sub {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 520px;
      margin-bottom: 2.5rem;
    }

    .btn-primary-cta {
      background: var(--cyan);
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: .8rem 2rem;
      font-weight: 700;
      font-size: .875rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
      transition: transform .2s, box-shadow .2s;
    }

    .btn-primary-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 153, 204, .3);
      color: #fff;
    }

    .btn-ghost {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--white);
      border-radius: 4px;
      padding: .8rem 2rem;
      font-weight: 500;
      font-size: .875rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
      transition: border-color .2s, color .2s;
    }

    .btn-ghost:hover {
      border-color: var(--cyan);
      color: var(--cyan);
    }

    /* Hero visual */
    .hero-visual {
      position: relative;
    }

    .terminal-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 24px 54px rgba(15, 23, 42, .1);
      animation: floatY 6s ease-in-out infinite;
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    .term-bar {
      background: #F8FAFC;
      padding: .6rem 1rem;
      display: flex;
      align-items: center;
      gap: .5rem;
      border-bottom: 1px solid var(--border);
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .dot.r {
      background: #FF5F57;
    }

    .dot.y {
      background: #FEBC2E;
    }

    .dot.g {
      background: #28C840;
    }

    .term-title {
      margin-left: auto;
      font-size: .68rem;
      color: var(--muted);
      font-family: "Roboto", sans-serif;
      letter-spacing: .05em;
    }

    .term-body {
      padding: 1.2rem 1.5rem;
      font-family: "Roboto", sans-serif;
      font-size: .76rem;
      line-height: 1.9;
      background: #fff;
    }

    .term-line {
      display: flex;
      gap: .5rem;
    }

    .term-prompt {
      color: var(--teal);
    }

    .term-cmd {
      color: var(--white);
    }

    .term-out {
      color: var(--muted);
      margin-left: 1.1rem;
    }

    .term-out.ok {
      color: var(--lime);
    }

    .term-out.info {
      color: var(--cyan);
    }

    .term-cursor {
      display: inline-block;
      width: 8px;
      height: 1em;
      background: var(--cyan);
      vertical-align: text-bottom;
      animation: blink 1s step-end infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0
      }
    }

    /* Stats */
    .stats-row {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--border);
    }

    .stat-item {}

    .stat-num {
      font-family: "Roboto", sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--cyan);
    }

    .stat-label {
      font-size: .78rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    /* ════════════════ SECTIONS common ════════════════ */
    section {
      padding: 6rem 0;
    }

    .section-tag {
      display: inline-block;
      font-size: .7rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--cyan);
      font-family: "Roboto", sans-serif;
      margin-bottom: .75rem;
    }

    .section-title {
      font-family: "Roboto", sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -.02em;
      margin-bottom: 1rem;
    }

    .section-title .accent {
      color: var(--cyan);
    }

    .section-lead {
      color: var(--muted);
      max-width: 580px;
      font-size: 1rem;
    }

    /* Divider */
    .divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 0;
    }

    /* ════════════════ SOLUTIONS ════════════════ */
    #solutions {
      background: var(--dark);
    }

    .sol-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .sol-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2rem;
      transition: border-color .3s, transform .3s, box-shadow .3s;
      position: relative;
      overflow: hidden;
    }

    .sol-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--cyan), var(--teal));
      opacity: 0;
      transition: opacity .3s;
    }

    .sol-card:hover {
      border-color: rgba(0, 153, 204, .35);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    }

    .sol-card:hover::before {
      opacity: 1;
    }

    .sol-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-bottom: 1.25rem;
    }

    .ic-cyan {
      background: rgba(0, 212, 255, .12);
      color: var(--cyan);
    }

    .ic-teal {
      background: rgba(0, 180, 160, .12);
      color: var(--teal);
    }

    .ic-lime {
      background: rgba(163, 230, 53, .12);
      color: var(--lime);
    }

    .sol-card h4 {
      font-family: "Roboto", sans-serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: .5rem;
      letter-spacing: -.01em;
    }

    .sol-card p {
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
    }

    .tag {
      font-size: .7rem;
      padding: .2rem .65rem;
      border-radius: 100px;
      border: 1px solid var(--border);
      color: var(--muted);
      font-family: "Roboto", sans-serif;
    }

    /* ════════════════ PRODUCTS ════════════════ */
    #products {}

    .prod-tabs {
      display: flex;
      gap: .4rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
      padding: .35rem;
      width: fit-content;
      max-width: 100%;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--card-bg);
      box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    }

    .prod-tab {
      min-height: 40px;
      padding: 0 1rem;
      border: 1px solid transparent;
      border-radius: 11px;
      background: transparent;
      color: var(--muted);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .02em;
      cursor: pointer;
      transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
    }

    .prod-tab:hover {
      background: rgba(0, 153, 204, .07);
      border-color: rgba(0, 153, 204, .18);
      color: var(--cyan);
    }

    .prod-tab.active {
      background: rgba(0, 153, 204, .1);
      border-color: rgba(0, 153, 204, .28);
      color: var(--cyan);
      box-shadow: inset 0 -2px 0 var(--cyan);
    }

    .prod-tab:focus-visible {
      outline: 0;
      box-shadow: 0 0 0 3px rgba(0, 153, 204, .16);
    }

    .prod-showcase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    #tab-lims,
    #tab-iso,
    #tab-chem {
      padding: 1.2rem;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--card-bg);
      box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
      overflow: hidden;
    }

    #tab-lims .prod-info,
    #tab-iso .prod-info,
    #tab-chem .prod-info {
      min-width: 0;
    }

    #tab-lims .prod-info h3,
    #tab-iso .prod-info h3,
    #tab-chem .prod-info h3 {
      color: var(--white);
    }

    #tab-lims .feature-list,
    #tab-iso .feature-list,
    #tab-chem .feature-list {
      margin-bottom: 1.5rem;
    }

    #tab-lims .feature-list li,
    #tab-iso .feature-list li,
    #tab-chem .feature-list li {
      padding: .52rem 0;
      border-color: var(--border);
    }

    @media(max-width:768px) {
      .prod-showcase {
        grid-template-columns: 1fr;
      }
    }

    .prod-info h3 {
      font-family: "Roboto", sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: .75rem;
      letter-spacing: -.02em;
    }

    .prod-info p {
      color: var(--muted);
      margin-bottom: 1.5rem;
      font-size: .95rem;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0 0 2rem 0;
    }

    .feature-list li {
      padding: .5rem 0;
      border-bottom: 1px solid var(--border);
      font-size: .9rem;
      display: flex;
      align-items: center;
      gap: .75rem;
      color: var(--muted);
    }

    .feature-list li:last-child {
      border-bottom: none;
    }

    .feature-list li i {
      color: var(--cyan);
      width: 16px;
      flex-shrink: 0;
    }


    .mock-screen {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    }

    .mock-bar {
      background: #F8FAFC;
      padding: .7rem 1rem;
      display: flex;
      align-items: center;
      gap: .5rem;
      border-bottom: 1px solid var(--border);
    }

    .mock-body {
      padding: 1.25rem 1.5rem;
      background: #fff;
    }

    .data-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: .52rem .75rem;
      border-radius: 10px;
      margin-bottom: .35rem;
      border: 1px solid rgba(203, 216, 234, .65);
      background: #F8FAFC;
      font-size: .78rem;
      transition: background .15s, border-color .15s;
    }

    .data-row:hover {
      background: rgba(0, 153, 204, .06);
      border-color: rgba(0, 153, 204, .18);
    }

    .data-label {
      color: var(--muted);
      font-family: "Roboto", sans-serif;
      font-size: .72rem;
    }

    .data-badge {
      font-size: .62rem;
      padding: .13rem .52rem;
      border-radius: 4px;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
    }

    .badge-ok {
      background: rgba(163, 230, 53, .12);
      color: #A3E635;
    }

    .badge-warn {
      background: rgba(251, 191, 36, .12);
      color: #FBBF24;
    }

    .badge-err {
      background: rgba(239, 68, 68, .12);
      color: #EF4444;
    }

    .badge-info {
      background: rgba(0, 212, 255, .12);
      color: var(--cyan);
    }


    .mini-chart {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 46px;
      margin-top: 1rem;
      padding-top: .5rem;
      border-top: 1px solid var(--border);
    }

    .bar {
      flex: 1;
      border-radius: 3px 3px 0 0;
      background: var(--dark);
      transition: background .25s;
      cursor: pointer;
    }

    .bar.active {
      background: linear-gradient(to top, var(--teal), var(--cyan));
    }

    .bar:hover {
      background: #00D4FF;
      opacity: .85;
    }

    /* ════════════════ FEATURES HIGHLIGHTS ════════════════ */
    #features {
      background: var(--dark);
    }

    .feat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.25rem;
      margin-top: 3rem;
    }

    .feat-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.5rem;
      transition: border-color .25s, box-shadow .25s;
    }

    .feat-card:hover {
      border-color: rgba(0, 153, 204, .3);
      box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    }

    .feat-icon {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: var(--cyan);
    }

    .feat-card h5 {
      font-size: .9rem;
      font-weight: 700;
      margin-bottom: .4rem;
      font-family: "Roboto", sans-serif;
    }

    .feat-card p {
      font-size: .82rem;
      color: var(--muted);
      margin: 0;
      line-height: 1.6;
    }

    /* ════════════════ ABOUT ════════════════ */
    #about {}

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    @media(max-width:768px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    .about-visual {
      position: relative;
    }

    .hexgrid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: .75rem;
    }

    .hex-item {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1rem .75rem;
      text-align: center;
      font-size: .75rem;
      color: var(--muted);
      transition: border-color .2s, color .2s;
      cursor: default;
    }

    .hex-item:hover {
      border-color: var(--cyan);
      color: var(--white);
    }

    .hex-item i {
      display: block;
      font-size: 1.2rem;
      margin-bottom: .4rem;
      color: var(--cyan);
    }

    .value-list {
      margin-top: 2rem;
    }

    .value-item {
      display: flex;
      gap: 1rem;
      padding: 1.2rem 0;
      border-bottom: 1px solid var(--border);
    }

    .value-item:last-child {
      border-bottom: none;
    }

    .value-num {
      font-family: "Roboto", sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--cyan);
      min-width: 2rem;
    }

    .value-item h5 {
      font-size: .9rem;
      font-weight: 700;
      margin-bottom: .2rem;
    }

    .value-item p {
      font-size: .83rem;
      color: var(--muted);
      margin: 0;
    }

    /* ════════════════ CONTACT ════════════════ */
    #contact {
      background: var(--dark);
    }

    .contact-wrap {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 3rem;
      max-width: 720px;
      margin: 3rem auto 0;
    }

    .form-label {
      font-size: .8rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: .4rem;
      font-weight: 500;
    }

    .form-control,
    .form-select {
      background: #F4F7FB;
      border: 1px solid var(--border);
      border-radius: 6px;
      color: var(--white);
      font-size: .9rem;
      padding: .75rem 1rem;
      transition: border-color .2s;
    }

    .form-control:focus,
    .form-select:focus {
      background: #fff;
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px rgba(0, 153, 204, .12);
      color: var(--white);
    }

    .form-control::placeholder {
      color: var(--muted);
      opacity: .5;
    }

    .form-select option {
      background: #fff;
      color: var(--white);
    }

    /* ════════════════ FOOTER ════════════════ */
    footer {
      background: #1B2B44;
      border-top: 1px solid #243850;
      padding: 3rem 0 1.5rem;
    }

    .footer-brand {
      font-family: "Roboto", sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: #F0F6FF;
      margin-bottom: .5rem;
    }

    .footer-brand span {
      color: var(--cyan);
    }

    .footer-slogan {
      font-size: .78rem;
      color: rgba(240, 246, 255, .5);
      letter-spacing: .15em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: .4rem;
      color: rgba(240, 246, 255, .55);
    }

    .footer-links a {
      color: rgba(240, 246, 255, .55);
      text-decoration: none;
      font-size: .85rem;
      transition: color .2s;
    }


    .footer-links a:hover {
      color: var(--cyan);
    }


    .footer-h {
      font-size: .7rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(240, 246, 255, .4);
      margin-bottom: 1rem;
      font-weight: 700;
    }


    .social-row {
      display: flex;
      gap: .75rem;
      margin-top: 1rem;
    }

    .social-btn {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(240, 246, 255, .5);
      text-decoration: none;
      font-size: .85rem;
      transition: border-color .2s, color .2s;
    }

    .social-btn:hover {
      border-color: var(--cyan);
      color: var(--cyan);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      font-size: .78rem;
      color: rgba(240, 246, 255, .4);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    /* ── Animations ── */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive misc */
    @media(max-width:576px) {
      .stats-row {
        gap: 1.5rem;
      }

      .contact-wrap {
        padding: 1.75rem;
      }
    }

    .pagination {
      display: flex;
      gap: .45rem;
      flex-wrap: wrap;
      margin-bottom: 0;
    }

    .pagination .page-item {
      margin: 0;
    }

    .pagination .page-link {
      min-width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: .7rem .95rem;
      border-radius: 14px;
      border: 1px solid rgba(15, 34, 57, .08);
      background: #fff;
      color: #43576b;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
      transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
    }

    .pagination .page-link:hover {
      background: #f8fbff;
      border-color: rgba(15, 111, 214, .22);
      color: #0f6fd6;
      box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
    }

    .pagination .page-item.active .page-link {
      background: #0f6fd6;
      border-color: #0f6fd6;
      color: #fff;
      box-shadow: 0 14px 28px rgba(15, 111, 214, .2);
    }

    .pagination .page-item.disabled .page-link {
      background: #f8fbff;
      color: #94a3b8;
      border-color: rgba(15, 34, 57, .05);
      box-shadow: none;
      pointer-events: none;
    }

    @media(max-width:576px) {
      .pagination .page-link {
        min-width: 40px;
        height: 40px;
        padding: .55rem .8rem;
        border-radius: 12px;
      }
    }
