@charset "UTF-8";
/* CSS Document */

.container{
  max-width: 1400px;
}

.display-5 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}


<!-- ==== PAGE-SPECIFIC STYLES ==== -->

  /* Wider max-width for large screens */
  @media (min-width: 1200px) {
    .container {
      max-width: 1440px;
    }
  }

  /* Global gradient background – spans hero + next sections */
  body {
    font-family: 'Poppins', sans-serif;
    background:
      radial-gradient(1200px 800px at 20% 30%, rgba(242, 89, 56, 0.08), transparent 60%),
      radial-gradient(1200px 900px at 80% 55%, rgba(242, 89, 56, 0.18), transparent 70%),
      #fff;
    background-attachment: fixed, fixed, fixed;
  }

  /* Keep footer solid white so gradient doesn't interfere with text */
  footer {
    background-color: #fff;
  }

  .navbar { 
    z-index: 1000;
  }

  /* Transparent navbar before scroll */
  .navbar-transparent {
    background-color: transparent !important;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  /* When scrolled */
  .navbar-scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }

  /* Accent color */
  .text-accent { color: #F25938; }

  /* Hero section now transparent so the body gradient shows */
  .hero-section {
    position: relative;
    overflow: visible;
    min-height: 100vh;
    padding-top: 200px; /* sit below navbar */
    background: transparent;
  }
	


/* Constrain text column nicely */
/* Match left padding of all sections (180px) */
.hero-text-wrap {
  padding-left: 180px !important;
}

@media (max-width: 1199px) {
  .hero-text-wrap {
    padding-left: 60px !important; /* reasonable for tablets */
  }
}

@media (max-width: 767px) {
  .hero-text-wrap {
    padding-left: 24px !important; /* mobile-friendly */
  }
}


/* Image column: full height to right edge but responsive */
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;    /* or 'contain' if you prefer */
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 110px; /* a bit less on smaller screens if desired */
  }

  .hero-text-wrap {
    max-width: 100%;
  }
}


  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
  }
  @media (min-width: 992px) {
    .hero-content h1 { font-size: 3.75rem; }
  }

  /* Buttons */
  .btn-primary {
    background-color: #F25938;
    border-color: #F25938;
  }
  .btn-primary:hover {
    background-color: #d94f32;
    border-color: #d94f32;
  }

  .btn-outline-primary {
    color: #F25938 !important;
    border-color: #F25938 !important;
  }
  .btn-outline-primary:hover,
  .btn-outline-primary:focus,
  .btn-outline-primary:active {
    color: #fff !important;
    background-color: #F25938 !important;
    border-color: #F25938 !important;
    box-shadow: none !important;
  }

  /* Hero graphic */
  .hero-graphic {
    max-width: 100%;
    height: auto;
    opacity: 0.95;
  }

  /* Floating Thumbnails */
  .floating-thumb {
    position: absolute;
    border-radius: 10px;
    animation: float 6s ease-in-out infinite;
  }
  .thumb-a { top: 5%; right: 8%; width: 100px; animation-delay: .3s; }
  .thumb-b { top: 20%; right: 35%; width: 150px; animation-delay: .6s; }
  .thumb-c { bottom: 20%; right: 25%; width: 180px; animation-delay: .9s; }
  .thumb-d { bottom: 10%; right: 5%;  width: 140px; animation-delay: 1.2s; }
  .thumb-e { top: 50%; right: 10%;  width: 120px; animation-delay: 1.5s; }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* Partner logos */
  .partner-logos {
    background: transparent;
  }
  .partner-logos .d-flex {
    width: 100%;
    flex-wrap: wrap;
  }
  /*.partner-logo {
    flex: 1 1 0;
    max-height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin: 10px;
  }*/
  .partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
  }
  @media (min-width: 992px) {
    .partner-logo {
      max-width: 160px;
    }
  }
  @media (max-width: 767.98px) {
    .partner-logo {
      flex: 1 1 33%;
      max-height: 40px;
      max-width: 120px;
    }
  }

  /* Nav underline styling */
  :root{
    --ceivo-accent: #F25938;
    --ceivo-cta:    #e85c3f;
  }

  .navbar .nav-link{
    position: relative;
    padding: .5rem 0;
    color: #1a1a1a;
    font-weight: 500;
  }
  .navbar .nav-link:hover,
  .navbar .nav-link:focus { color:#000; }

  .navbar .nav-link::after{
    content:"";
    position:absolute;
    left:0; right:0;
    bottom:-6px;
    height:3px;
    background:var(--ceivo-accent);
    opacity:0;
    transform:scaleX(0);
    transition:transform .2s ease, opacity .2s ease;
  }
  .navbar .nav-link:hover::after{ opacity:1; transform:scaleX(1); }
  .navbar .nav-link.active{ color:#0f8f99; }
  .navbar .nav-link.active::after{ opacity:1; transform:scaleX(1); }
	
	
/* Markets section layout (no background – uses global page bg) */
.markets-section {
  padding: 0 4rem 5rem 4rem;
}

/* Kicker + title */
.markets-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F25938;
}

.markets-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .markets-title {
    font-size: 2.8rem;
  }
}


.markets-intro {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
}

/* Cards */
.market-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.market-card-topbar {
  height: 8px;
  background: #F25938;
}

.market-card-body {
  padding: 26px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.market-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* List reset (removes the browser bullet) */
.market-card-list{
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 0 1.5rem 0;
}

/* Item layout */
.market-card-list li{
  position: relative;
  padding-left: 1.25rem;  /* space for custom bullet */
  line-height: 1.35;      /* tighter lines inside item */
}

/* Space BETWEEN items (kept consistent) */
.market-card-list li + li{
  margin-top: 0.5rem;
}

/* Custom bullet */
.market-card-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0.15em;
}


/* Card button */
.market-card-btn {
  align-self: flex-start;
  padding: 0.55rem 1.6rem;
  font-weight: 600;
}

/* Bottom CTA */
.markets-cta {
  padding: 0.9rem 2.6rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

/* ---------------- CTA FINAL BLOCK ---------------- */

.cta-final {
  padding-bottom: 60px;
	padding-top: 0;
}

/* Main CTA container */
.cta-box {
  position: relative;
  overflow: hidden;
  padding: 50px 60px;
  border-radius: 32px;
  color: #fff;
  background-color: #030b16; /* dark base */
}

/* Animated bokeh / particles layer */
.cta-box::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(200px 200px at 15% 25%, rgba(255,255,255,0.35), transparent 65%),
    radial-gradient(180px 180px at 45% 70%, rgba(242,89,56,0.45), transparent 60%),
    radial-gradient(220px 220px at 78% 35%, rgba(80,140,255,0.40), transparent 65%),
    radial-gradient(160px 160px at 90% 90%, rgba(255,255,255,0.30), transparent 60%);
  
  opacity: 0.85;     /* brighter overall */
  filter: blur(20px); /* soft atmospheric glow */
  
  animation: ctaGlowDrift 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}


/* Make sure actual content sits above the animated layer */
.cta-text,
.cta-buttons {
  position: relative;
  z-index: 1;
}

/* Text */
.cta-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #ffffff;
}

.cta-heading .text-accent {
  color: #F25938;
}

.cta-subtext {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
}

/* Buttons */
.cta-buttons .btn {
  min-width: 150px;
}

/* Animation keyframes – deliberately big motion so you SEE it */
@keyframes ctaGlowDrift {
  0% {
    transform: translate3d(-12%, -6%, 0) scale(1.02);
  }
  50% {
    transform: translate3d(8%, 4%, 0) scale(1.05);
  }
  100% {
    transform: translate3d(-6%, 10%, 0) scale(1.03);
  }
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .cta-box {
    text-align: center;
    padding: 40px 24px;
    flex-direction: column;
  }

  .cta-buttons {
    margin-top: 20px;
    justify-content: center;
  }

  .cta-buttons .btn:first-child {
    margin-right: 10px;
  }
}
	
.rounded-images {
	border-radius: 25px;
}


/* ============ CEIVO FOOTER (SAFE / SELF-CONTAINED) ============ */

.ceivo-footer{
  position: relative;
  display: block;
  background: #0b1220; /* Dark mode baseline so it always renders */
  color: rgba(255,255,255,0.85);
  padding: 32px 0 40px;
  overflow: hidden; /* safe if your gradient animation uses blur */
}

/* IMPORTANT:
   This is ONLY a hook.
   Paste your existing animated gradient background code to target `.footer-gradient`
   (do NOT paste CTA sizing/margins/min-height rules). */
.footer-gradient {}

/* content stays above any animated layers you add later */
.ceivo-footer__inner{
  position: relative;
  z-index: 2;
}

/* Brand */
.ceivo-footer__brand{
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  color: #fff;
}

.ceivo-footer__tagline{
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 34rem;
}

/* Nav */
.ceivo-footer__nav{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px 28px;
}

@media (min-width: 992px){
  .ceivo-footer__nav{ justify-content: flex-end; }
}

.ceivo-footer__nav a{
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color .2s ease, opacity .2s ease;
}

.ceivo-footer__nav a:hover{
  color: #fff;
}

/* Divider */
.ceivo-footer__divider{
  height: 1px;
  background: rgba(255,255,255,0.14);
  margin: 28px 0 18px;
}

/* Bottom row */
.ceivo-footer__bottom{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 768px){
  .ceivo-footer__bottom{
    flex-direction: row;
    align-items: center;
  }
}

.ceivo-footer__meta{
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.ceivo-footer__legal{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.ceivo-footer__legal a{
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .2s ease;
}

.ceivo-footer__legal a:hover{
  color: #fff;
}

/* ===============================
   SAFE FOOTER GRADIENT (CTA-STYLE)
   =============================== */

.ceivo-footer.footer-gradient {
  position: relative;
  overflow: hidden;
  background: #0b1220;
}

/* Gradient layer (BEHIND content) */
.ceivo-footer.footer-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(800px 300px at 15% 50%, rgba(255,96,60,0.25), transparent 60%),
    radial-gradient(700px 350px at 85% 50%, rgba(64,120,255,0.25), transparent 65%);
  animation: footerGradientFloat 26s ease-in-out infinite;
}

/* Content ALWAYS above gradient */
.ceivo-footer__inner,
.ceivo-footer * {
  position: relative;
  z-index: 1;
}

/* Motion is subtle (footer ≠ hero) */
@keyframes footerGradientFloat {
  0%   { background-position: 15% 50%, 85% 50%; }
  50%  { background-position: 20% 55%, 80% 45%; }
  100% { background-position: 15% 50%, 85% 50%; }
}



/* =========================================================
       HERO SECTION BACKGROUND (KEEP IT SIMPLE + RELIABLE)
    ========================================================= */
    .hero-section{
      position: relative;
      min-height: 100vh;
      width: 100%;
      background-image: url("../../images/bgnd-hero-lg.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

      /* CSS Parallax (desktop only - safe fallback if mobile ignores it) */
      background-attachment: scroll;

      overflow: hidden;
      padding: 0;
    }



    /* Keep text above everything */
    .hero-content{
      position: relative;
      z-index: 5;
    }
	  
/* mobile adjustments */  
	 @media (max-width: 991.98px){
	  .hero-section{
		  position: relative;
		  min-height: 100vh;
		  width: 100%;
		  background-image: none;
		  background-size: cover;
		  background-position: center;
		  background-repeat: no-repeat;

		  /* CSS Parallax (desktop only - safe fallback if mobile ignores it) */
		  background-attachment: scroll;

		  overflow: hidden;
		  padding: 0;
		}
		 
	.hero-content{
      margin-top:120px;
    }
		 

}

    /* Accent (use your existing accent class if you already have one) */
    .text-accent{
      color: #ff6a3d; /* match your orange */
    }

   /* Make sure the right column provides enough vertical space for all 5 phones */
.hero-right{
  position: relative;
  min-height: 920px;           /* KEY: prevents clipping */
}

/* phones layer confined to right column */
.hero-float-layer{
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* wrapper handles scroll parallax (JS sets --sx/--sy) */
.float-wrap{
  position: absolute;
  left: var(--x);
  top:  var(--y);
  width: var(--w);

  transform: translate(-50%, -50%) translate3d(var(--sx, 0px), var(--sy, 0px), 0);
  will-change: transform;
}

/* image handles idle float (no fighting with JS) */
.float-item{
  display: block;
  width: 100%;
  height: auto;
  max-width: none;            /* IMPORTANT: stop Bootstrap/img rules from shrinking */
  transform: rotate(var(--rot));
  transform-origin: 50% 50%;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.28));
  will-change: transform;
}

/* subtle idle float */
@media (prefers-reduced-motion: no-preference){
  .float-item[data-float="1"]{ animation: floatA 7.5s ease-in-out infinite; }
  .float-item[data-float="2"]{ animation: floatB 9.5s ease-in-out infinite; }
  .float-item[data-float="3"]{ animation: floatC 10.5s ease-in-out infinite; }
  .float-item[data-float="4"]{ animation: floatA 8.5s ease-in-out infinite; }
  .float-item[data-float="5"]{ animation: floatB 11.5s ease-in-out infinite; }
}

@keyframes floatA{
  0%,100%{ transform: rotate(var(--rot)) translate3d(0,0,0); }
  50%    { transform: rotate(var(--rot)) translate3d(0,-10px,0); }
}
@keyframes floatB{
  0%,100%{ transform: rotate(var(--rot)) translate3d(0,0,0); }
  50%    { transform: rotate(var(--rot)) translate3d(0,12px,0); }
}
@keyframes floatC{
  0%,100%{ transform: rotate(var(--rot)) translate3d(0,0,0); }
  50%    { transform: rotate(var(--rot)) translate3d(-6px,-8px,0); }
}

/* Mobile/tablet adjustments so phones don't explode outside the hero */
@media (max-width: 991.98px){
  .hero-right{ min-height: 640px; }
  .float-wrap{ width: calc(var(--w) * 0.70); }
}

/* =========================================================
       PRODUCT HERO SECTION BACKGROUND 
    ========================================================= */
    .hero-section{
      position: relative;
      min-height: 100vh;
      width: 100%;
      background-image: url("../../images/bgnd-product.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

      /* CSS Parallax (desktop only - safe fallback if mobile ignores it) */
      background-attachment: scroll;

      overflow: hidden;
      padding: 0;
    }

/* ===== PRODUCT - MARKETS SECTION ===== */
  :root{
    --si-bg: #0b1220;
    --si-card: rgba(255,255,255,.06);
    --si-border: rgba(255,255,255,.12);
    --si-text: rgba(255,255,255,.86);
    --si-muted: rgba(255,255,255,.62);
    --si-accent: #ff5a3c; /* Ceivo-ish orange */
    --si-glow: rgba(255,90,60,.25);
  }

  #mcp-process{
    background:
      radial-gradient(1200px 600px at 20% 15%, rgba(255,90,60,.14), transparent 60%),
      radial-gradient(900px 500px at 85% 25%, rgba(88,156,255,.12), transparent 55%),
      linear-gradient(180deg, #0b1220 0%, #070c16 100%);
    color: var(--si-text);
    overflow: hidden;
  }

  #mcp-process h2{ color: #fff; letter-spacing: -0.02em; }
  #mcp-process .text-muted{ color: var(--si-muted) !important; }

  .step-card{
    position: relative;
    padding: 22px 18px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
    border: 1px solid var(--si-border);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    backdrop-filter: blur(8px);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    height: 100%;
  }

  .step-card::after{
    content:"";
    position:absolute;
    inset:-1px;
    border-radius: 18px;
    pointer-events:none;
    background: radial-gradient(600px 120px at 30% 0%, rgba(255,90,60,.14), transparent 60%);
    opacity: .0;
    transition: opacity .18s ease;
  }

  .step-card:hover{
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 24px 55px rgba(0,0,0,.45);
  }
  .step-card:hover::after{ opacity: 1; }

  .step-top{
    display:flex;
    align-items:center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .step-badge{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display:grid;
    place-items:center;
    font-weight: 800;
    color: #111;
    background: linear-gradient(180deg, #ff7a62, #ff5a3c);
    box-shadow: 0 10px 22px var(--si-glow);
    flex: 0 0 auto;
  }

  .step-kicker{
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.65);
    font-weight: 700;
  }

  .step-title{
    color:#fff;
    font-weight: 800;
    letter-spacing: -0.015em;
    margin: 0 0 8px;
    font-size: 1.02rem;
    line-height: 1.25;
  }

  .step-desc{
    margin: 0;
    color: var(--si-muted);
    font-size: .92rem;
    line-height: 1.45;
  }

  /* Make the 6-up grid feel good on wide screens */
  @media (min-width: 1200px){
    #mcp-process .col-xl-2{ flex: 0 0 auto; width: 16.6666667%; }
    .step-card{ padding: 24px 18px 18px; }
  }


 /* PRODUCT - FLOATING LOGOS */
    .connect-section{
      padding: 40px 0 70px;
    }

    /* Left panel */
    .connect-logo-panel{
                 /* replace later with your real treatment */
      min-height: 720px;
      border-radius: 8px;
      overflow: hidden;
    }

    /* Logo layer */
    .ai-logo-layer{
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    /* wrapper moves on scroll via --sx/--sy; scale via --s */
    .ai-logo-wrap{
      position: absolute;
      left: var(--x);
      top: var(--y);

      transform:
        translate(-50%, -50%)
        translate3d(var(--sx, 0px), var(--sy, 0px), 0)
        scale(var(--s, 1));

      will-change: transform;
      z-index: 2;
    }

    /* logo styling */
    .ai-logo{
      display: block;
      width: 140px;                /* base size; scale handled by --s */
      height: auto;
      max-width: none;

      opacity: 0.95;
      filter:
        drop-shadow(0 18px 26px rgba(0,0,0,0.20))
        drop-shadow(0 6px 10px rgba(0,0,0,0.12));

      transform: translateZ(0);
      will-change: transform;
    }

    /* Subtle idle float (each gets its own flavor) */
    @media (prefers-reduced-motion: no-preference){
      .ai-logo-wrap[data-float="1"] .ai-logo{ animation: logoFloatA 8s ease-in-out infinite; }
      .ai-logo-wrap[data-float="2"] .ai-logo{ animation: logoFloatB 10s ease-in-out infinite; }
      .ai-logo-wrap[data-float="3"] .ai-logo{ animation: logoFloatC 11.5s ease-in-out infinite; }
      .ai-logo-wrap[data-float="4"] .ai-logo{ animation: logoFloatA 9.5s ease-in-out infinite; }
      .ai-logo-wrap[data-float="5"] .ai-logo{ animation: logoFloatB 12s ease-in-out infinite; }
    }

    @keyframes logoFloatA{
      0%,100%{ transform: translate3d(0,0,0); }
      50%    { transform: translate3d(0,-10px,0); }
    }
    @keyframes logoFloatB{
      0%,100%{ transform: translate3d(0,0,0); }
      50%    { transform: translate3d(0,12px,0); }
    }
    @keyframes logoFloatC{
      0%,100%{ transform: translate3d(0,0,0); }
      50%    { transform: translate3d(-8px,-8px,0); }
    }

    /* Optional fade at the bottom */
    .connect-fade{
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 160px;
      
      z-index: 3;
      pointer-events: none;
    }

    /* Mobile: scale down + reduce clutter */
    @media (max-width: 991.98px){
      .connect-logo-panel{ min-height: 520px; }
      .ai-logo{ width: 110px; }
      .ai-logo-wrap{ transform: translate(-50%, -50%) translate3d(var(--sx, 0px), var(--sy, 0px), 0) scale(calc(var(--s, 1) * 0.85)); }
    }


/* PRODUCT OPAGE BOTTOM HOVER SELECT*/
:root{
      --accent:#F25938;
      --ink:#0b0b0f;
      --muted: rgba(10,10,15,.62);
      --line: rgba(20,20,30,.12);
      --card: rgba(255,255,255,.72);
      --shadow: 0 16px 40px rgba(12,12,20,.10);
    }

    /* LEFT: compact list rail */
    .ef-list{
      display:flex;
      flex-direction:column;
      gap:8px;
      border-left: 2px solid rgba(242,89,56,.18);
      padding-left: 12px;
    }

    .ef-item{
      width:100%;
      text-align:left;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.55);
      border-radius: 14px;
      padding: 11px 12px;
      display:grid;
      grid-template-columns: 10px 1fr 14px;
      align-items:center;
      gap: 10px;
      box-shadow: 0 10px 24px rgba(10,10,20,.06);
      transition: background .14s ease, border-color .14s ease, box-shadow .14s ease;
      color: var(--ink);
    }

    .ef-item:hover{
      background: rgba(242,89,56,.06);
      border-color: rgba(242,89,56,.28);
      box-shadow: 0 14px 30px rgba(10,10,20,.09);
    }

    .ef-item.is-active{
      background: rgba(242,89,56,.10);
      border-color: rgba(242,89,56,.45);
    }

    .ef-dot{
      width: 8px; height: 8px;
      border-radius: 99px;
      background: rgba(242,89,56,.35);
      box-shadow: 0 0 0 6px rgba(242,89,56,.10);
    }

    .ef-item.is-active .ef-dot{
      background: var(--accent);
      box-shadow: 0 0 0 8px rgba(242,89,56,.12);
    }

    .ef-label{
      font-weight: 600;   /* not super bold */
      letter-spacing: -0.01em;
      color: rgba(10,10,15,.90);
      line-height: 1.2;
    }

    .ef-arrow{
      color: rgba(10,10,15,.35);
      font-size: 1.25rem;
      line-height: 1;
      justify-self:end;
    }

    .ef-item.is-active .ef-label{
      color: rgba(10,10,15,.98);
    }

    /* RIGHT: detail card */
    .ef-detail-card{
      border: 1px solid var(--line);
      background: var(--card);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow:hidden;
    }

    .ef-panel{
      display:none;
      padding: 18px 20px 18px;
      animation: efFade .15s ease both;
    }
    .ef-panel.is-active{ display:block; }

    @keyframes efFade{
      from{ opacity:0; transform: translateY(6px); }
      to{ opacity:1; transform: translateY(0); }
    }

    .ef-panel-head{
      display:flex;
      gap: 12px;
      align-items:flex-start;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(20,20,30,.08);
    }

    .ef-icon{
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display:grid;
      place-items:center;
      background: rgba(242,89,56,.10);
      color: var(--accent);
      flex: 0 0 auto;
      margin-top: 1px;
    }
    .ef-icon svg{ width: 20px; height: 20px; }

    .ef-title{
      font-weight: 650; /* softer than fw-bold */
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      color: rgba(10,10,15,.95);
      margin-bottom: 4px;
    }

    .ef-sub{
      color: rgba(10,10,15,.56);
      font-weight: 500;
      line-height: 1.35;
    }

    .ef-body{
      padding-top: 14px;
    }

    .ef-copy{
      color: var(--muted);
      margin: 0 0 14px;
      line-height: 1.55;
    }

    .ef-metrics{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .ef-metric{
      border: 1px solid rgba(20,20,30,.10);
      background: rgba(255,255,255,.68);
      border-radius: 16px;
      padding: 12px 12px;
    }

    .ef-metric .k{
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(10,10,15,.45);
      font-weight: 650;
      margin-bottom: 6px;
    }
    .ef-metric .v{
      color: rgba(10,10,15,.82);
      font-weight: 600;  /* not heavy */
      line-height: 1.25;
    }

    .ef-footer{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      padding: 14px 18px;
      border-top: 1px solid rgba(20,20,30,.08);
      background: rgba(255,255,255,.60);
    }

    .ef-tip{
      color: rgba(10,10,15,.55);
      font-size: .9rem;
    }

    /* Responsive */
    @media (max-width: 991.98px){
      .ef-metrics{ grid-template-columns: 1fr; }
      .ef-footer{ flex-direction:column; align-items:flex-start; }
    }

/* ========= Ceivo Contact ========= */
    :root{
      --accent:#F25938;
      --ink:#0b0b0f;
      --muted: rgba(12,12,20,.62);
      --muted2: rgba(12,12,20,.52);
      --line: rgba(20,20,30,.10);
      --card: rgba(255,255,255,.72);
      --card2: rgba(255,255,255,.62);
      --shadow: 0 22px 64px rgba(12,12,20,.12);
      --shadow2: 0 14px 40px rgba(12,12,20,.10);
      --radius: 22px;
    }

    .text-accent{ color: var(--accent); }

    .ce-contact{
      /* no background color so your body background shows through */
      position: relative;
    }

    .ce-contact__top{
      max-width: 920px;
      margin: 0 auto;
    }

    .ce-contact__lead{
      color: var(--muted);
      font-size: 1.1rem;
      line-height: 1.55;
    }

    /* Left side */
    .ce-contact__side{
      border: 1px solid rgba(20,20,30,.08);
      background: rgba(255,255,255,.35);
      border-radius: var(--radius);
      padding: 22px 22px;
      box-shadow: 0 10px 30px rgba(12,12,20,.06);
    }

    .ce-contact__sideTitle{
      font-weight: 700;
      letter-spacing: -0.02em;
      color: rgba(10,10,15,.92);
      margin: 0;
      font-size: 1.35rem;
    }

    .ce-contact__sideText{
      color: var(--muted);
      line-height: 1.6;
      margin: 0;
    }

    .ce-contact__points{
      display: grid;
      gap: 14px;
    }

    .ce-point{
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 12px 12px;
      border: 1px solid rgba(20,20,30,.08);
      background: rgba(255,255,255,.60);
      border-radius: 18px;
      box-shadow: var(--shadow2);
    }

    .ce-point__dot{
      width: 10px;
      height: 10px;
      border-radius: 99px;
      background: rgba(242,89,56,.70);
      box-shadow: 0 0 0 6px rgba(242,89,56,.12);
      margin-top: 6px;
      flex: 0 0 auto;
    }

    .ce-point__title{
      font-weight: 650;
      color: rgba(10,10,15,.90);
      letter-spacing: -0.01em;
      margin-bottom: 2px;
    }

    .ce-point__sub{
      color: var(--muted2);
      line-height: 1.5;
      font-size: .98rem;
    }

    .ce-contact__note{
      color: var(--muted2);
      font-size: .98rem;
    }
    .ce-contact__note a{
      color: rgba(10,10,15,.85);
      text-decoration: none;
      border-bottom: 1px dashed rgba(242,89,56,.35);
    }
    .ce-contact__note a:hover{
      border-bottom-color: rgba(242,89,56,.70);
    }

    /* Form card */
    .ce-formCard{
      border: 1px solid rgba(20,20,30,.10);
      background: var(--card);
      backdrop-filter: blur(10px);
      border-radius: 26px;
      box-shadow: var(--shadow);
      padding: 24px 24px;
    }

    .ce-label{
      font-weight: 600;
      color: rgba(10,10,15,.78);
      font-size: .92rem;
      margin-bottom: 6px;
    }

    .ce-input{
      border-radius: 14px;
      border: 1px solid rgba(20,20,30,.14);
      padding: 12px 14px;
      box-shadow: none;
    }

    .ce-input:focus{
      border-color: rgba(242,89,56,.55);
      box-shadow: 0 0 0 .22rem rgba(242,89,56,.14);
    }

    .ce-help{
      color: rgba(12,12,20,.52);
      font-size: .92rem;
      line-height: 1.45;
    }

    /* Security row */
    .ce-security{
      border-top: 1px solid rgba(20,20,30,.08);
      padding-top: 14px;
      margin-top: 6px;
    }
    .ce-security__label{
      font-weight: 650;
      color: rgba(10,10,15,.80);
      margin-bottom: 10px;
      font-size: .92rem;
    }
    .ce-security__row{
      display: grid;
      grid-template-columns: 140px 1fr auto;
      gap: 10px;
      align-items: center;
    }
    .ce-captchaBox{
      height: 44px;
      border-radius: 12px;
      border: 1px dashed rgba(20,20,30,.18);
      background: rgba(255,255,255,.55);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight: 700;
      letter-spacing: .12em;
      color: rgba(10,10,15,.55);
      user-select: none;
    }
    .ce-refresh{
      border-radius: 12px;
      padding: 10px 14px;
      white-space: nowrap;
    }

    /* Submit */
    .ce-submit{
      background: linear-gradient(180deg, rgba(242,89,56,1) 0%, rgba(230,88,55,1) 100%);
      border: none;
      color: #fff;
      border-radius: 14px;
      padding: 12px 16px;
      font-weight: 650;
      letter-spacing: -0.01em;
      box-shadow: 0 14px 34px rgba(242,89,56,.24);
    }
    .ce-submit:hover{
      filter: brightness(0.98);
      transform: translateY(-1px);
      transition: transform .14s ease, filter .14s ease;
    }

    .ce-privacy{
      color: rgba(12,12,20,.52);
      font-size: .9rem;
      line-height: 1.45;
      text-align: center;
    }

    /* Mobile */
    @media (max-width: 991.98px){
      .ce-formCard{ padding: 20px; }
      .ce-contact__side{ padding: 18px; }
      .ce-security__row{
        grid-template-columns: 120px 1fr;
      }
      .ce-refresh{
        grid-column: 1 / -1;
        width: 100%;
      }
    }


/* ========= SOLUTIONS - Ceivo Use Cases ========= */
    :root{
      --accent:#F25938;
      --ink:#0b0b0f;
      --muted: rgba(12,12,20,.62);
      --line: rgba(20,20,30,.10);
      --card: rgba(255,255,255,.72);
      --card2: rgba(255,255,255,.62);
      --shadow: 0 20px 56px rgba(12,12,20,.10);
      --shadow2: 0 14px 38px rgba(12,12,20,.08);
      --radius: 22px;
    }

    /* Section spacing */
    .uc-section{
      /* no background color so your body bg shows */
      padding-top: 4rem !important;
      padding-bottom: 4rem !important;
    }

    /* Card */
    .uc-card{
      border: 1px solid var(--line);
      background: var(--card);
      backdrop-filter: blur(8px);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 26px 26px 24px;
      overflow: hidden;

      /* key: creates breathing room even if grid collapses */
      margin-bottom: 0;
    }

    /* Wide card gets a touch more spacing */
    .uc-card--wide{
      padding: 28px 28px 26px;
    }

    /* Header spacing */
    .uc-header{
      padding-bottom: 16px;
      margin-bottom: 18px;
      border-bottom: 1px solid rgba(20,20,30,.08);
    }

    .uc-title{
      margin: 0 0 6px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: rgba(10,10,15,.92);
      font-size: 1.25rem;
      line-height: 1.2;
    }

    .uc-sub{
      margin: 0;
      color: var(--muted);
      line-height: 1.5;
      font-size: 1rem;
      max-width: 60ch;
    }

    /* List with consistent spacing */
    .uc-list{
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px; /* <— the “breathing room” */
    }

    .uc-list li{
      position: relative;
      padding-left: 18px;
      color: rgba(10,10,15,.70);
      line-height: 1.55;
      font-size: .98rem;
    }

    .uc-list li::before{
      content:"";
      width: 7px;
      height: 7px;
      border-radius: 99px;
      background: rgba(242,89,56,.58);
      position:absolute;
      left: 0;
      top: .65em;
      box-shadow: 0 0 0 6px rgba(242,89,56,.10);
    }

    /* Note text */
    .uc-note{
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px dashed rgba(20,20,30,.14);
      color: rgba(10,10,15,.62);
      line-height: 1.55;
      font-size: .98rem;
    }

    /* Stacked “feature” items */
    .uc-stack{
      display: grid;
      gap: 14px; /* <— more spacing */
      margin-top: 2px;
    }

    .uc-item{
      border: 1px solid rgba(20,20,30,.10);
      background: var(--card2);
      border-radius: 18px;
      padding: 14px 14px;
      box-shadow: var(--shadow2);
    }

    .uc-item-title{
      font-weight: 650;
      letter-spacing: -0.01em;
      color: rgba(10,10,15,.88);
      margin-bottom: 6px;
      font-size: 1rem;
      line-height: 1.25;
    }

    .uc-item-sub{
      color: rgba(10,10,15,.62);
      line-height: 1.55;
      margin: 0;
      font-size: .98rem;
    }

    /* Media ops minis */
    .uc-mini{
      border: 1px solid rgba(20,20,30,.10);
      background: rgba(255,255,255,.60);
      border-radius: 18px;
      padding: 16px 16px;
      box-shadow: var(--shadow2);
    }

    /* Hover polish */
    .uc-card:hover{
      border-color: rgba(242,89,56,.22);
      box-shadow: 0 26px 70px rgba(12,12,20,.12);
      transform: translateY(-2px);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }

    /* Ensure cards don't feel cramped on smaller screens */
    @media (max-width: 991.98px){
      .uc-card{
        padding: 22px 20px 20px;
      }
      .uc-header{
        margin-bottom: 16px;
        padding-bottom: 14px;
      }
      .uc-title{ font-size: 1.2rem; }
      .uc-section{
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
      }
    }



/*****************RESPONSIVE FIXES************************/
@media (max-width: 992px) {
  #govern {
    margin-top:3rem;
  }
	.sm-no-display{ display:none;}
}



