
    :root {
      --ubiq-text: #172033;
      --ubiq-muted: #5f6b7a;
      --ubiq-surface: #f7f9fc;
      --ubiq-border: #e7ebf0;
      --ubiq-radius: 1rem;
    }

    a{text-decoration: none;}
    a:hover{opacity: 0.75;}

    body {
      color: var(--ubiq-text);
      line-height: 1.7;
    }

    .navbar-brand {
      font-weight: 700;
      letter-spacing: -0.02em;
      color:#09b109;
      padding:0;
      font-size:1.5rem;
    }

    .section {
      padding: 5rem 0;
    }

    .section-sm {
      padding: 3.5rem 0;
    }

    .section-surface {
      background: var(--ubiq-surface);
    }

    .eyebrow {
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .hero {
      padding: 6rem 0 5rem;
    }

    .hero h1 {
      max-width: 760px;
      font-size: clamp(2.5rem, 6vw, 3.5rem);
      line-height: 1.05;
      letter-spacing: -0.045em;
    }

    .hero-copy {
      max-width: 760px;
      font-size: 1.15rem;
      color: var(--ubiq-muted);
    }

    .check-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .check-list li {
      margin-bottom: .6rem;
    }

    .check-list li::before {
      content: "✓";
      font-weight: 700;
      margin-right: .6rem;
    }

    .product-shot {
      min-height: 320px;
      border: 1px solid var(--ubiq-border);
      border-radius: var(--ubiq-radius);
      background: white;
      box-shadow: 0 1.5rem 4rem rgba(23, 32, 51, .08);
      display: grid;
      place-items: center;
      color: var(--ubiq-muted);
      text-align: center;
      padding: 0.5rem;
    }

    
    

    .feature-card,
    .use-case-card,
    .step-card {
      height: 100%;
      border: 1px solid var(--ubiq-border);
      border-radius: var(--ubiq-radius);
      background: #fff;
      padding: 1.5rem;
    }

    .feature-card h3,
    .use-case-card h3,
    .step-card h3 {
      font-size: 1.1rem;
    }

    .customer-logos {
      border-top: 1px solid var(--ubiq-border);
      border-bottom: 1px solid var(--ubiq-border);
      background: #fff;
    }

    .customer-logo {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: .5 .5 rem;/*.75rem 1rem;*/
    }

    .customer-logo img {
      display: block;
      max-width: 100%;
      max-height: 44px;
      width: auto;
      height: auto;
      object-fit: contain;
    }


	
	.testimonial-card {
      height: 100%;
      border: 1px solid var(--ubiq-border);
      border-radius: var(--ubiq-radius);
      background: #fff;
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
    }

    .testimonial-quote {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .testimonial-person {
      margin-top: auto;
	  flex:1;
    }

    .testimonial-person strong {
      display: block;
    }

    .testimonial-person span {
      color: var(--ubiq-muted);
      font-size: .95rem;
    }
	
	.testimonial-image {
		margin-top: 0px;
		border-radius: 50%;
		max-width: 85px;
	}

    .flow {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      align-items: center;
      font-weight: 600;
    }

    .flow span {
      border: 1px solid var(--ubiq-border);
      border-radius: 999px;
      padding: .55rem .9rem;
      background: #fff;
    }

    .flow .arrow {
      border: 0;
      padding: 0;
      background: transparent;
    }

    .feature-list {
      columns: 2;
      column-gap: 2.5rem;
      padding-left: 1.2rem;
    }

    .feature-list li {
      margin-bottom: .55rem;
      break-inside: avoid;
    }

    .cta-panel {
      border-radius: calc(var(--ubiq-radius) + .25rem);
      padding: 3rem;
      background: var(--ubiq-text);
      color: white;
    }

    .accordion-button:not(.collapsed) {
      background: var(--ubiq-surface);
      color: var(--ubiq-text);
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
    }

    footer {
      border-top: 1px solid var(--ubiq-border);
    }

    @media (max-width: 767.98px) {
      .hero {
        padding: 4rem 0 3.5rem;
      }

      .section {
        padding: 3.75rem 0;
      }

      .feature-list {
        columns: 1;
      }

      .cta-panel {
        padding: 2rem;
      }

      .flow .arrow {
        display: none;
      }
    }
