
    /* ═══════════════════════════════════════════════════════════════
       BRAND TOKENS — amber removed; purple is now the accent
    ═══════════════════════════════════════════════════════════════ */
    :root {
      --brand-dark:   #28282B;
      --brand-darker: #222222;
      --brand-purple: #4d4e96;
      --brand-purple2:#3b3c76;
      --accent:       #4d4e96;   /* replaces amber everywhere */
      --accent-light: rgba(77,78,150,.12);
      --surface:      #ffffff;
      --surface-2:    #f8f9fa;
      --border-light: #f0f0f0;
      --border:       #e5e5e8;
      --text:         #222222;
      --text-muted:   #666666;
      --radius-card:  15px;
      --radius-pill:  50px;
      --ease:         all 0.3s ease;
    }

    body           { font-family: 'Space Grotesk', sans-serif; color: var(--text); }
    h1,h2,h3,h4,h5 { font-family: 'Space Grotesk', sans-serif; }

    /* ── Shared buttons ──────────────────────────────────────────── */
    .btn-brand {
      background: var(--brand-dark); color: #fff;
      border: none; border-radius: var(--radius-pill);
      padding: 11px 26px; font-size: 14px; font-weight: 600;
      font-family: 'Space Grotesk', sans-serif;;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; transition: var(--ease); white-space: nowrap;
    }
    .btn-brand:hover { background: var(--brand-purple); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(77,78,150,.25); }

    .btn-brand-outline {
      background: transparent; color: var(--brand-dark);
      border: 2px solid var(--brand-dark);
      border-radius: var(--radius-pill);
      padding: 9px 24px; font-size: 14px; font-weight: 600;
      font-family: 'Space Grotesk', sans-serif;;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; transition: var(--ease); white-space: nowrap;
    }
    .btn-brand-outline:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); }

    .view-all-btn {
      background: var(--brand-dark); color: #fff;
      font-weight: 600; border-radius: var(--radius-pill);
      padding: 12px 28px; font-size: 14px;
      font-family: 'Space Grotesk', sans-serif;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; transition: var(--ease); white-space: nowrap;
    }
    .view-all-btn:hover { background: var(--brand-purple); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(77,78,150,.2); }
    .view-all-btn i { font-size: 12px; }

    .btn-read-more {
      background: var(--brand-dark); color: #fff;
      font-weight: 600; border-radius: var(--radius-pill);
      padding: 9px 20px; font-size: 14px; border: none;
      font-family: 'Space Grotesk', sans-serif;;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; transition: var(--ease); white-space: nowrap;
    }
    .btn-read-more:hover { background: var(--brand-purple); color: #fff; transform: translateY(-2px); }
    .btn-read-more i { font-size: 12px; transition: transform 0.3s ease; }
    .btn-read-more:hover i { transform: translateX(3px); }

    /* ── Section labels ──────────────────────────────────────────── */
    .section-tag {
      display: inline-block;
      background: var(--brand-dark); color: #fff;
      font-size: 11px; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; padding: 4px 14px;
      border-radius: var(--radius-pill); margin-bottom: 12px;
    }
    .section-tag.purple { background: var(--brand-purple); }

    /* ── Section spacing ─────────────────────────────────────────── */
    .page-section { padding: 80px 0; }
    @media(max-width:767px){ .page-section { padding: 52px 0; } }
    @media(max-width:575px){ .page-section { padding: 40px 0; } }

    /* ═══════════════════════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════════════════════ */
    .hero.section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 110px 0 80px;
      overflow: hidden; position: relative;
    }
    .hero.section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(40,40,43,.06) 1px, transparent 1px);
      background-size: 28px 28px; pointer-events: none;
    }

    .hero-container {
      display: grid;
      max-width: 1280px; margin: 0 auto;
      padding: 0 16px; position: relative; z-index: 1;
    }

    .hero-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800; line-height: 1.1;
      color: var(--brand-dark); margin-bottom: 1.3rem;
    }
    .hero-title span { color: var(--brand-purple); }

    .hero-description {
      font-size: clamp(14px, 1.8vw, 16px);
      line-height: 1.8; color: #555;
      margin-bottom: 2rem; max-width: 540px;
    }

    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.2rem; }

    /* Hero action buttons — match screenshot style */
    .hero-actions .btn-primary {
      background: var(--brand-dark); color: #fff;
      border: none; border-radius: var(--radius-pill);
      padding: 11px 26px; font-size: 14px; font-weight: 600;
      font-family: 'Space Grotesk', sans-serif;;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; transition: var(--ease); white-space: nowrap;
    }
    .hero-actions .btn-primary:hover { background: var(--brand-purple); color: #fff; transform: translateY(-2px); }

    .hero-actions .btn-secondary {
      background: transparent; color: var(--brand-dark);
      border: 2px solid var(--brand-dark);
      border-radius: var(--radius-pill);
      padding: 9px 24px; font-size: 14px; font-weight: 600;
      font-family: 'Space Grotesk', sans-serif;;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; transition: var(--ease); white-space: nowrap;
    }
    .hero-actions .btn-secondary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); }

    .features-list { display: flex; flex-wrap: wrap; gap: 14px 28px; }
    .feature-item  { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: #444; }
    .feature-item i { font-size: 1.5rem; color: var(--brand-purple); }

    /* Showcase */
    .vehicle-showcase-card {
      background: #fff; border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,.1); overflow: hidden;
    }
    .cruiser-swiper { height: 340px; }
    .cruiser-swiper .swiper-slide img {
      width: 100%; height: 100%;
      object-fit: contain; object-position: center; padding: 24px;
    }
    .vehicle-card-footer {
      padding: 14px 20px; border-top: 1px solid var(--border-light); text-align: center;
    }
    .vehicle-card-footer h6 { font-weight: 700; font-size: 14px; color: var(--brand-dark); margin: 0; }

    /* Product card in hero */
    .product-showcase .product-card {
      background: #fff; border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,.1); overflow: hidden;
    }
    .product-showcase .product-info {
      padding: 14px 20px; border-top: 1px solid var(--border-light);
    }
    .product-showcase .product-info h5 {
      margin: 0; font-size: 14px; color: var(--brand-dark);
    }

    .product-grid { display: flex; gap: 14px; margin-top: 18px; justify-content: center; }
    .product-mini {
      background: #fff; border-radius: 12px;
      padding: 18px 22px; box-shadow: 0 8px 24px rgba(0,0,0,.07);
      text-align: center; flex: 1;
    }
    .product-mini i      { color: var(--brand-purple); margin-bottom: 8px; display: block; }
    .product-mini .label,
    .product-mini .mini-price { font-weight: 600; font-size: 13px; color: #555; }

    /* Hero responsive */
    @media(max-width:991px){
      .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
      .hero-description { margin: 0 auto 2rem; }
      .hero-actions { justify-content: center; }
      .features-list { justify-content: center; }
      .hero-visuals { max-width: 300px; margin: 0 auto; }
    }
    @media(max-width:575px){
      .hero.section { padding: 80px 0 48px; }
      .hero-title { font-size: 1.75rem; }
      .hero-description { font-size: 14px; }
      .hero-actions { flex-direction: column; align-items: center; }
      .hero-actions a { width: 100%; max-width: 300px; justify-content: center; }
      .cruiser-swiper { height: 220px; }
      .product-grid { gap: 10px; width:400px; justify-content: center; padding-left: 100px; }
      .product-mini { padding: 12px 14px; }
      .features-list { gap: 10px 20px; }
      .feature-item { font-size: 13px; }
      .feature-item i { font-size: 1.3rem; }
    }

    /* Floating elements — keep from original */
    .floating-elements { position: relative; }
    .floating-icon {
      position: absolute;
      background: var(--brand-purple); color: #fff;
      border-radius: 50%; width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 18px rgba(77,78,150,.3);
      font-size: 18px;
    }
    .floating-icon.location { top: -20px; right: -10px; }
    .floating-icon.support  { bottom: 10px; left: -10px; }

    /* ═══════════════════════════════════════════════════════════════
       PURPLE TICKER  (was amber, now purple)
    ═══════════════════════════════════════════════════════════════ */
    .nk-ticker {
      background: var(--brand-dark);
      padding: 12px 0; overflow: hidden;
    }
    .nk-ticker-track {
      display: flex;
      animation: tickerScroll 36s linear infinite;
      width: max-content;
    }
    @media(prefers-reduced-motion:reduce){ .nk-ticker-track { animation: none; } }
    .nk-ticker-item {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase;
      color: #fff; white-space: nowrap;
      padding: 0 26px; display: inline-flex; align-items: center; gap: 10px;
    }
    .nk-ticker-item::after { content: '✦'; font-size: 9px; color: rgba(255,255,255,.4); margin-left: 10px; }
    @keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ═══════════════════════════════════════════════════════════════
       FLEET PLATFORM  (dark section — accent now purple)
    ═══════════════════════════════════════════════════════════════ */
  /* .future-tech-section {
    color: #ffffff;
  } */
    .future-tech-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.6);
      pointer-events: none;
    }
    .future-tech-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.04) 1.2px, transparent 1.2px);
      background-size: 28px 28px; pointer-events: none;
    }

    .platform-label {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--brand-purple); margin-bottom: 14px;
    }
    /* was amber line, now purple */
    .platform-label::before { content: ''; width: 22px; height: 2px; background: var(--brand-purple); flex-shrink: 0; }

    .fleet-title {
      font-size: clamp(1.8rem, 3.2vw, 2.8rem);
      font-weight: 800; color: #050505; line-height: 1.1; margin-bottom: 0;
    }
    /* was amber divider, now purple */
    .platform-divider { width: 44px; height: 3px; background: var(--brand-purple); margin: 16px 0 20px; }

    .fleet-description {
      font-size: 15px; color: rgba(255,255,255,.65);
      line-height: 1.8; max-width: 520px;
    }

    .platform-cta {
      background: var(--brand-purple); color: #fff;
      border: none; border-radius: var(--radius-pill);
      padding: 13px 28px; font-size: 14px; font-weight: 700;
      font-family: 'Space Grotesk', sans-serif;;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      transition: var(--ease); margin-top: 26px;
    }
    .platform-cta:hover { background: var(--brand-purple2); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(77,78,150,.35); }

    /* 3×3 chips grid */
    .platform-chips {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    @media(max-width:767px)  { .platform-chips { grid-template-columns: repeat(2,1fr); } }
    @media(max-width:400px)  { .platform-chips { grid-template-columns: 1fr; } }

    .platform-chip {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px; padding: 16px 14px;
      display: flex; align-items: center; gap: 12px;
      transition: var(--ease);
    }
    /* hover accent now purple */
    .platform-chip:hover { background: rgba(255,255,255,.1); border-color: rgba(77,78,150,.55); transform: translateY(-2px); }
    .platform-chip i    { font-size: 20px; color: var(--brand-purple); flex-shrink: 0; }
    .platform-chip span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); line-height: 1.3; }

    @media(max-width:991px){ .future-tech-section .fleet-description { max-width: 100%; } }
    @media(max-width:575px){
      .future-tech-section { padding: 52px 0; }
      .platform-chips { gap: 8px; }
      .platform-chip { padding: 12px 10px; }
      .platform-chip i { font-size: 18px; }
      .platform-chip span { font-size: 12px; }
    }

    /* ═══════════════════════════════════════════════════════════════
       SERVICES
    ═══════════════════════════════════════════════════════════════ */
    .services-section { background: var(--surface-2); }

    .service-card {
      background: #fff; border-radius: var(--radius-card);
      border: 1px solid var(--border-light); padding: 28px 22px;
      height: 100%; transition: var(--ease); position: relative; overflow: hidden;
    }
    .service-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--brand-purple);
      transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,.08); border-color: rgba(77,78,150,.2); }
    .service-card:hover::after { transform: scaleX(1); }

    .service-icon {
      width: 50px; height: 50px; border-radius: 12px;
      background: rgba(77,78,150,.1);
      display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
    }
    .service-icon i { font-size: 22px; color: var(--brand-purple); }
    .service-card h5 { font-weight: 700; font-size: 16.5px; margin-bottom: 10px; color: var(--brand-dark); }
    .service-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

    /* ═══════════════════════════════════════════════════════════════
       SOLUTIONS / PRODUCTS
    ═══════════════════════════════════════════════════════════════ */
    .solutions-section { background: var(--surface); }

    .product-card {
      background: #fff; border-radius: var(--radius-card);
      border: 1px solid var(--border-light);
      transition: var(--ease); position: relative; overflow: hidden;
      height: 100%; display: flex; flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0,0,0,.08);
      border-color: var(--brand-purple);
    }
    .product-img-wrapper {
      height: 210px; background: #fdfdfd;
      display: flex; align-items: center; justify-content: center;
      padding: 20px; overflow: hidden;
    }
    .product-img-wrapper img {
      max-height: 100%; max-width: 100%; object-fit: contain;
      transition: transform .45s ease;
    }
    .product-card:hover .product-img-wrapper img { transform: scale(1.07); }
    .no-image-placeholder {
      width: 100%; height: 100%; background: var(--surface-2);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted); font-size: 13px; border-radius: 8px;
    }

    .product-info-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }

    .product-tag {
      font-size: 10px; font-weight: 700; padding: 3px 12px;
      border-radius: var(--radius-pill); width: fit-content; margin-bottom: 10px;
      text-transform: uppercase; letter-spacing: .04em;
    }
    .product-tag.product-badge { background: rgba(40,40,43,.08); color: var(--brand-dark); }
    .product-tag.service-badge { background: rgba(77,78,150,.1); color: var(--brand-purple); border: 1px solid rgba(77,78,150,.2); }

    .badge-type { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
    .badge-product-type { background: var(--brand-dark); color: #fff; }
    .badge-service-type { background: var(--brand-purple2); color: #fff; }

    .product-name { font-weight: 700; font-size: 16px; color: var(--brand-dark); margin-bottom: 8px; }
    .product-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex-grow: 1; margin-bottom: 14px; }
    .price-tag    { font-size: 1.1rem; font-weight: 700; color: var(--brand-dark); }
    .stock-label  { font-size: 12px; font-weight: 500; }

    .duration-badge {
      background: var(--surface-2); border: 1px solid var(--border);
      color: #495057; font-size: 11px; padding: 3px 8px; border-radius: 4px;
      display: inline-flex; align-items: center; gap: 4px;
    }

    .btn-add-cart {
      background: var(--brand-dark); color: #fff;
      border: none; border-radius: var(--radius-pill);
      padding: 10px 18px; font-size: 13px; font-weight: 600;
      font-family: 'Space Grotesk', sans-serif;; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 6px;
      transition: var(--ease); width: 100%;
    }
    .btn-add-cart:hover      { background: var(--brand-purple); color: #fff; }
    .btn-add-cart:disabled   { background: #6c757d; cursor: not-allowed; opacity: .6; }
    .btn-add-cart.svc-btn    { background: var(--brand-purple2); }
    .btn-add-cart.svc-btn:hover { background: var(--brand-dark); }

    /* Ribbons */
    .product-ribbon { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
    .product-ribbon-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 3px 9px; border-radius: var(--radius-pill); line-height: 1.5; }
    /* was amber, now purple accent */
    .ribbon-featured { background: var(--brand-purple); color: #fff; }
    .ribbon-new      { background: var(--brand-dark);   color: #fff; }
    .ribbon-disc     { background: #c93030;               color: #fff; }

    /* Spinner */
    .spin { animation: spin 1s linear infinite; }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ═══════════════════════════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════════════════════════ */
    .testimonials-section { background: var(--surface); }

    .testimonial-card {
      background: #fff; border-radius: var(--radius-card);
      padding: 28px 24px; box-shadow: 0 8px 25px rgba(0,0,0,.06);
      border: 1px solid var(--border-light); height: 100%;
    }
    /* stars keep gold — it's semantically appropriate for ratings */
    .testimonial-stars  { color: #f7a835; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
    .testimonial-text   { font-size: 14px; color: var(--text-muted); line-height: 1.8; font-style: italic; margin-bottom: 18px; }
    .testimonial-name   { font-weight: 700; font-size: 14px; color: var(--brand-dark); }
    .testimonial-role   { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    .testimonials-slider { padding: 10px 0 44px; }
    .testimonials-slider .swiper-pagination-bullet        { background: var(--brand-purple); opacity: .35; }
    .testimonials-slider .swiper-pagination-bullet-active { opacity: 1; }

    /* ═══════════════════════════════════════════════════════════════
       PORTFOLIO / CASE STUDIES
    ═══════════════════════════════════════════════════════════════ */
    .portfolio-section { background: var(--surface-2); }

    .portfolio-item {
      background: #fff; border-radius: var(--radius-card); overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.06);
      height: 100%; display: flex; flex-direction: column;
      transition: var(--ease);
    }
    .portfolio-item:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }

    .portfolio-img { overflow: hidden; position: relative; }
    .portfolio-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .45s ease; }
    .portfolio-item:hover .portfolio-img img { transform: scale(1.05); }

    .portfolio-img-fallback {
      width: 100%; height: 200px;
      background: linear-gradient(135deg, var(--brand-dark) 0%, #3a3a3e 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .portfolio-img-fallback i { font-size: 52px; color: rgba(255,255,255,.18); }

    /* badge now purple */
    .portfolio-badge {
      position: absolute; bottom: 12px; left: 12px;
      background: var(--brand-purple); color: #fff;
      font-size: 10px; font-weight: 700; text-transform: uppercase;
      letter-spacing: .06em; padding: 4px 12px; border-radius: var(--radius-pill);
    }

    .portfolio-info { padding: 22px 20px 20px; flex-grow: 1; display: flex; flex-direction: column; }
    .portfolio-info h4 { font-weight: 700; font-size: 17px; margin-bottom: 10px; color: var(--brand-dark); }
    .portfolio-info p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; flex-grow: 1; margin-bottom: 18px; }

    /* ═══════════════════════════════════════════════════════════════
       CTA
    ═══════════════════════════════════════════════════════════════ */
    .call-to-action.section {
      background: linear-gradient(135deg, var(--surface-2) 0%, #e7e7e7 100%);
      padding: 80px 0;
    }


    .btn-cta-primary {
      background: var(--brand-purple); color: #fff;
      border: none; border-radius: var(--radius-pill);
      padding: 14px 30px; font-size: 15px; font-weight: 700;
      font-family: 'Space Grotesk', sans-serif;;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      transition: var(--ease);
    }
    .btn-cta-primary:hover { background: var(--brand-purple2); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(77,78,150,.4); }

    .btn-cta-outline {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,.4);
      border-radius: var(--radius-pill);
      padding: 12px 26px; font-size: 15px; font-weight: 600;
      font-family: 'Space Grotesk', sans-serif;;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      transition: var(--ease);
    }
    .btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

    .action-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
    @media(max-width:575px){
      .action-buttons { flex-direction: column; align-items: center; }
      .btn-cta-primary, .btn-cta-outline { width: 100%; max-width: 280px; justify-content: center; }
      .btn-read-more, .view-all-btn { padding: 8px 16px; font-size: 13px; }
      .call-to-action.section { padding: 52px 0; }
    }

    /* ═══════════════════════════════════════════════════════════════
       MOBILE-SPECIFIC FIXES
    ═══════════════════════════════════════════════════════════════ */
    @media(max-width:767px){
      /* Solutions section: stack product cards */
      .solutions-section .row.gy-4 { --bs-gutter-y: 1.25rem; }

      /* Portfolio: ensure consistent card height on mobile */
      .portfolio-item { min-height: unset; }

      /* Testimonials pagination dot spacing */
      .testimonials-slider .swiper-pagination { bottom: 6px; }

      /* Platform section column spacing */
      .future-tech-section .row.g-5 { --bs-gutter-y: 2rem; }

      /* Section header: stack title + button neatly */
      .row.justify-content-between.align-items-end { flex-direction: column; align-items: flex-start !important; }
      .row.justify-content-between.align-items-end .col-auto { margin-top: 12px !important; }
    }

    @media(max-width:480px){
      /* Ticker font size for very small screens */
      .nk-ticker-item { font-size: 11px; padding: 0 16px; }

      /* CTA footer note */
      .call-to-action .footer-note { font-size: 12px; }

      /* Portfolio badges */
      .portfolio-badge { font-size: 9px; padding: 3px 10px; }

      /* Product ribbon on small screens */
      .product-ribbon-badge { font-size: 9px; padding: 2px 7px; }
    }