/* Apprista Typography System */
/* =========================================================
   Apprista Typography (ported to Dashcore)
   ========================================================= */

/* Override Dashcore "system" defaults */
:root{
  --dc-font-sans-serif: "Jost", sans-serif;
  --dc-body-font-family: "Jost", sans-serif;
  --dc-body-font-weight: 400;
  --dc-body-line-height: 1.5;
}
html, body {
  scroll-behavior: smooth;
}

/* Apprista base */
body{
  font-family: "Jost", sans-serif;               /* Apprista body default */
  font-weight: 400;
}

/* Apprista heading scale */
h1, .h1{ font-family:"Jost",sans-serif; font-size:57px; line-height:65px; font-weight:600; }
h2, .h2{ font-family:"Jost",sans-serif; font-size:45px; line-height:53px; font-weight:600; letter-spacing:-0.4px; }
h3, .h3{ font-family:"Jost",sans-serif; font-size:30px; line-height:35px; font-weight:500; }
h4, .h4{ font-family:"Jost",sans-serif; font-size:28px; line-height:34px; font-weight:500; }
h5, .h5{ font-family:"Jost",sans-serif; font-size:26px; line-height:32px; font-weight:400; }
h6, .h6{ font-family:"Jost",sans-serif; font-size:24px; line-height:30px; font-weight:500; }

/* Apprista paragraph scale */
p{
  font-family:"Nunito", sans-serif;
  font-size:20px;
  line-height:34px;
  font-weight:400;
}

/* Apprista utility */
.text-size-18{
  font-family:"Nunito", sans-serif;
  font-size:18px;
  line-height:26px;
  font-weight:400;
}

/* Dashcore helpers that appear in your HTML */
.lead{
  font-family:"Nunito", sans-serif;
  font-size:20px;        /* keep Apprista body size */
  line-height:34px;
  font-weight:400;       /* you already add fw-semibold where needed */
}

/* =========================================================
   Dashcore → Apprista typography mapping (site-wide)
   ========================================================= */

/* Dashcore display sizes (often used in hero sections) */
.display-1, .display-2, .display-3, .display-4{
  font-family: "Jost", sans-serif;
  font-weight: 600;
}
.display-1{ font-size:57px; line-height:65px; }
.display-2{ font-size:45px; line-height:53px; }
.display-3{ font-size:30px; line-height:35px; }
.display-4{ font-size:28px; line-height:34px; }

/* Common headings inside cards/sections */
.section-title, .title, .card-title, .accordion-title{
  font-family:"Jost",sans-serif;
}

/* Common body text helpers */
.small, small, .text-small, .fs-sm{
  font-family:"Nunito",sans-serif;
}

/* Buttons (Dashcore sometimes changes font-weight/letter-spacing) */
.btn, .button, button{
  font-family:"Jost",sans-serif;
  font-weight:600;
}

/* Links in footer/nav lists often shrink too much */
footer a, .footer a{
  font-family:"Nunito",sans-serif;
}

:root{
  --conveenio-color-primary: #741EC4;
  --conveenio-color-secondary: #FFB588;

  /* “Lavender haze” system (used for FAQ + footer blending) */
  --conveenio-lavender: #d7cfff;           /* your chosen lavender */
  --conveenio-haze-1: rgba(215,207,255,.55);
  --conveenio-haze-2: rgba(116, 30,196,.10); /* brand purple haze */
  --conveenio-surface: #ffffff;
  --conveenio-ink: #0f1020;
  --conveenio-text: #5c5f7a;

  --conveenio-card-shadow: 0 10px 30px rgba(20, 20, 43, 0.06);
}
/* Initial hidden state */
.fade-in-up{
  opacity: 0;
  transition: opacity 3.6s ease;
}

/* When visible */
.fade-in-up.is-visible{
  opacity: 1;
}
.fade-in-delay{
  transition-delay: 0.15s;
}
/* =========================================
   Conveenio Hero (Dashcore)
   ========================================= */
/* Never sticky */
#main-nav,
#main-nav.fixed-top,
#main-nav.st-nav-fixed,
#main-nav.sticky,
#main-nav.is-fixed {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  transform: none !important;
}
/* Logo sizing */
#main-nav .logo{
  height: 40px;   /* adjust 36–44 */
  width: auto;
}
/* Add breathing space after logo */
#main-nav .st-nav-menu{
  align-items: center;
}
#main-nav .st-nav-section:first-child{
  margin-right: 160px;  /* pushes the rest of the nav right */
}
.conveenio-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent !important;
  box-shadow: none !important;
}

.conveenio-nav .navbar-brand img.logo {
  height: 38px;
  width: auto;
}
/* Brighter nav links */
.conveenio-nav .st-nav-primary .nav-link{
  color: rgba(255,255,255,0.92) !important;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400; /* Apprista */
}

.conveenio-nav .st-nav-primary .nav-link:hover{
  color: #fff !important;
  opacity: 1;
}

/* Navbar CTA: coral/orange like original */
.conveenio-nav .btn.btn-primary{
  background: #ff794f !important;
  border-color: #ff794f !important;
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(255,121,79,0.25) !important;
}

.conveenio-nav .btn.btn-primary:hover{
  filter: brightness(1.05);
}

.conveenio-hero {
  border-top: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(900px 520px at 78% 38%, rgba(255,181,136,0.10) 0%, rgba(255,181,136,0) 60%),
    radial-gradient(720px 520px at 18% 78%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(135deg, #741EC4 0%, #6A24CF 45%, #4B2BE6 100%);
  padding-top: 110px; /* space for non-sticky nav */
  padding-bottom: 70px;
  overflow: hidden;
}


/* Controlled H1 sizing + keep 2nd line unbroken */
.conveenio-h1{
  font-size: clamp(2.15rem, 3.1vw, 57px); /* caps at Apprista h1 */
  line-height: 65px;                      /* Apprista */
  font-weight: 600;                       /* Apprista */
  letter-spacing: -0.02em;
  max-width: 560px;
  margin-bottom: 32px !important;
}

.hero-nowrap{
  white-space: nowrap;
}
.conveenio-hero .conveenio-h1{
  overflow-wrap: anywhere;
}
.conveenio-hero .subhead {
  opacity: 0.9;
  margin-top: 10px;
  margin-bottom: 16px !important;
}

.conveenio-hero .microcopy {
  opacity: 0.85;
  margin-top: 0;
  margin-bottom: 22px !important;
}

.conveenio-hero__art {
  position: relative;
  min-height: 520px;
}

.conveenio-hero__phones {
  position: absolute;
  right: -30px;
  top: -30px;
  width: min(760px, 120%);
  height: auto;
  transform: rotate(0deg);
}


.conveenio-hero__triangle {
  position: absolute;
  right: 50px;
  top: -40px;
  width: 520px;
  height: auto;
  opacity: 0.55;
}

/* CTA row */
.conveenio-cta {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  align-items: center;
}
/* Hero CTA buttons */
.conveenio-cta .btn-warning{
  background: rgb(254, 123, 83) !important;
  border-color: rgb(254, 123, 83) !important;
  color: #ffffff !important;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.conveenio-cta .btn-warning:hover,
.conveenio-cta .btn-warning:focus{
  background: rgb(224, 84, 53) !important;
  border-color: rgb(224, 84, 53) !important;
}

.conveenio-cta .btn-outline-light{
  border-color: rgba(255,255,255,0.35) !important;
  color: #fff !important;
  background: rgba(255,255,255,0.06);
}

.conveenio-cta .btn-outline-light:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.55) !important;
}

@media (min-width: 992px){
  .conveenio-hero__phones{
    right: -60px;   /* more to the right */
    top: -95px;     /* a bit higher */
    width: min(720px, 118%);
  }
  .conveenio-hero__art{
    min-height: 480px; /* was ~520 */
  }
  .conveenio-hero .col-lg-6:first-child{
    padding-top: 36px;
  }
}

/* Mobile behavior: center CTAs + stack art */
@media (max-width: 991.98px) {
  /* Ensure narrow blocks are centered as blocks (not only text) */
  .conveenio-h1,
  .conveenio-hero .subhead,
  .conveenio-hero .microcopy {
    margin-left: auto;
    margin-right: auto;
  }
  .conveenio-hero {
    padding-top: 96px;
    padding-bottom: 40px;
    text-align: center;
  }

  .conveenio-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .conveenio-hero__art {
    min-height: 420px;
    margin-top: 30px;
  }

  .conveenio-hero__phones {
    position: relative;
    right: auto;
    top: auto;
    width: min(520px, 92%);
    margin: 0 auto;
    display: block;
  }

  .conveenio-hero__triangle {
    right: 50%;
    transform: translateX(50%);
    top: -18px;
    width: clamp(260px, 58vw, 360px); /* scales smoothly, never tiny */
  }
}
/* Tablet / small desktop tuning (keeps triangle + phones stable) */
@media (min-width: 768px) and (max-width: 991.98px) {

  .conveenio-hero__art{
    min-height: 520px;
  }

  .conveenio-hero__phones{
    
    top: -15px;
    width: min(640px, 100%); /* 680/106% is a bit "pushy" */
  }

  .conveenio-hero__triangle{
    width: 480px;            /* slightly bigger so it doesn't feel tiny */
    top: -15px;
    right: 22%;              /* keep same anchoring approach as mid desktop */
    transform: none;
  }
}

/* Fix the one awkward mid width where triangle drifts into text */
@media (min-width: 992px) and (max-width: 1199.98px){

  .conveenio-hero__art{
    min-height: 560px;
  }
  .conveenio-hero__triangle{
    width: 460px;      /* smaller so it can't invade left column */
    right: 20px;       /* keep it anchored to the art side */
    top: -40px;
    opacity: 0.45;
  }

  .conveenio-hero__phones{
    width: min(620px, 112%);
    right: -10px;
    top: -35px;
  }
}
@media (max-width: 767.98px) {
  .conveenio-hero {
    padding-top: 80px;     /* adjust to taste */
    padding-bottom: 0px;  /* this reduces the big gap */
  }
  header.conveenio-hero {
    min-height: 0 !important;
    height: auto !important;
  }
  .conveenio-hero .hero-nowrap{
    white-space: normal !important;
    display: block;               /* forces it to its own line */
  }
  .conveenio-hero .container{
    padding-left: 16px;
    padding-right: 16px;
  }
  .conveenio-hero .conveenio-h1{
    font-size: clamp(2.1rem, 8.5vw, 3rem);
    line-height: 1.05;
  }
}
/* =========================================================
   Conveenio Feature Sections — isolated spacing & layout
   ========================================================= */

/* Override Dashcore's: section [class^=container] { padding: 45/90px } */
section.conveenio-feature-section > .conveenio-feature-container{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  position: relative; /* keep safe if Dashcore expects it */
}

.conveenio-feature-section{
  background: #f9f9fc;
  padding-top: 90px;
  padding-bottom: 90px;
}

/* Extra separation from surrounding sections */
.conveenio-feature-section.is-first{
  padding-top: 125px;   /* more space from hero/previous section */
}
.conveenio-feature-section.is-last{
  padding-bottom: 125px; /* more space before the next section */
}

/* Keep feature sections close (no massive gaps between them) */
.conveenio-feature-section + .conveenio-feature-section{
  padding-top: 75px;  /* second section top padding slightly smaller */
}

/* Text column readability */
.conveenio-feature-textcol{
  max-width: 520px;   /* keeps paragraphs from going too wide */
}

/* Media sizing */
.conveenio-feature-media{
  position: relative;
  max-width: 650px;   /* allows the "breakdowns" image to be as big as the first */
  margin: 0 auto;
}
.conveenio-feature-media img{
  display: block;
}

/* Typography */
.conveenio-feature-title{
  font-size: clamp(2.0rem, 2.6vw, 45px); /* Apprista h2 max */
  line-height: 53px;                      /* Apprista h2 */
  font-weight: 600;                       /* Apprista h2 */
  letter-spacing: -0.4px;                 /* Apprista h2 */
  color: #1f1f3a;
}
.conveenio-feature-text{
  font-family:"Nunito", sans-serif;
  font-size:20px;        /* Apprista p */
  line-height:34px;      /* Apprista p */
  font-weight:400;
  color:#5c5f7a;
}
/* Mobile / tablet behavior */
@media (max-width: 991.98px){
  .conveenio-feature-section{
    text-align: center;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .conveenio-feature-section.is-first{
    padding-top: 100px;   /* more separation from previous section on mobile */
  }
  .conveenio-feature-section.is-last{
    padding-bottom: 100px; /* more separation to next section on mobile */
  }

  .conveenio-feature-section + .conveenio-feature-section{
    padding-top: 60px;
  }

  /* add separation between text and image when stacked */
  .conveenio-feature-imgcol{
    margin-top: 28px;
  }

  .conveenio-feature-section .btn{
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px){
  .conveenio-feature-section{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .conveenio-feature-imgcol{
    margin-top: 32px;
  }
}

/* =========================================
   Conveenio Purple Button (Brand Accurate)
   ========================================= */

.btn-conveenio {
  background-color: #741EC4;
  border-color: #741EC4;
  color: #ffffff !important;

  font-weight: 600;
  /*box-shadow: 0 14px 34px rgba(116, 30, 196, 0.28);*/
  transition: all 0.2s ease;
}

.btn-conveenio:hover,
.btn-conveenio:focus {
  background-color: #6117A4;
  border-color: #6117A4;
  color: #ffffff !important;

  /*box-shadow: 0 18px 38px rgba(97, 23, 164, 0.38);*/

}

/* =========================
   FRICTION (purple) SECTION
   ========================= */

/* Remove DashCore container padding ONLY inside friction */
#friction .container,
#friction .friction-container{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Section styling */
#friction.conveenio-friction-section{
  background: var(--conveenio-color-primary);
  padding: 80px 0 !important;
}

/* Control column spacing (Bootstrap-friendly) */
#friction .row{
  --dc-gutter-x: 0.75rem; /* try 1.5rem if you want tighter */
}

/* Left side */
#friction .friction-content h4{
  color: var(--conveenio-color-secondary);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

#friction .friction-content h2{
  color: #fff;
  font-weight: 600;
  line-height: 1.05;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
}

/* Right side – vertically center on desktop */
#friction .friction-text{
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 34px;
}

#friction .friction-text p{
  color: rgba(255,255,255,0.78);
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 58ch;
}

/* Mobile */
@media (max-width: 767.98px){
  #friction.conveenio-friction-section{
    padding: 46px 0 !important;
    text-align: center;
  }

  #friction .friction-text{
    margin-top: 14px;
    padding-left: 0;
    justify-content: center;
  }

  #friction .friction-text p{
    margin-left: auto;
    margin-right: auto;
  }
}
/* =========================
   Conveenio – Benefits Section
   ========================= */

/* override Dashcore container padding ONLY here */
section.conveenio-benefits-section > .container{
  padding-top: 64px !important;
  padding-bottom: 0 !important;
}

/* section spacing (desktop default) */
.conveenio-benefits-section{
  background: #f9f9fc;
  padding: 64px 0 !important; /* a touch more breathing room */
}
/* better visual alignment */
.conveenio-benefits-section .row {
  align-items: flex-start;
}

/* slight controlled lift */
.conveenio-benefits-section .conveenio-benefits-header {
  margin-top: -30px;
}
/* easy scale knob for the left image */
.conveenio-benefits-media{
  --benefits-media-max: 520px; /* tweak this (ex: 520px to shrink) */
  max-width: var(--benefits-media-max);
  margin: 0 auto;
}

.conveenio-benefits-media img{
  display: block;
}

/* header styling */
.conveenio-kicker{
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1f1f3a;
  opacity: 0.75;
  margin-bottom: 10px;
}

.conveenio-benefit{
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.conveenio-benefit-icon{
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 72px;
}

/* default text */
.conveenio-benefit-body h5{
  margin: 0 0 8px 0;
  color: #1f1f3a;
  font-size: 26px;     /* Apprista h5 */
  line-height: 32px;   /* Apprista h5 */
  font-weight: 400;    /* Apprista h5 */
}
.conveenio-benefit-body p{
  margin: 0;
  color: #5c5f7a;
  line-height: 1.6;
}

/* MOBILE: centriraj sve */
@media (max-width: 767.98px){
  .conveenio-benefit{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  /* or if you want it very explicit */
  .conveenio-feature-section .col-md-6:last-child{
    margin-bottom: 60px;
  }
}

.conveenio-benefit-icon svg{ width: 40px; height: 40px; }
.icon-peach{ background: rgba(255, 140, 120, 0.18); color: #ff7a5f; }
.icon-mint { background: rgba( 80, 220, 180, 0.18); color: #19b58b; }
.icon-lilac{ background: rgba(140, 120, 255, 0.16); color: #7c3aed; }
.icon-sky  { background: rgba(110, 170, 255, 0.16); color: #3b82f6; }

/* =========================================================
   EARLY ACCESS – Conveenio (Bootstrap 5 / Dashcore-safe)
   Paste this and REMOVE your older Early Access CSS block
   ========================================================= */

#early-access{
  --ea-violet: var(--conveenio-color-primary);
  --ea-violet-hover: #6219A8; /* slightly darker than #741EC4 */
  --ea-ink: #1f1f3a;
  --ea-muted: rgba(31,31,58,0.72);
  --ea-muted-2: rgba(31,31,58,0.62);
  --ea-border: rgba(31,31,58,0.10);
}

#early-access.conveenio-earlyaccess-section{
  position: relative;
  isolation: isolate;
  padding: 96px 0;

  background:
    linear-gradient(180deg, rgba(63,85,216,0.05) 0%, transparent 120px),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 52%, #ffffff 100%);

  border-top: 1px solid rgba(31,31,58,0.06);
}

/* Always keep content above blobs */
#early-access.conveenio-earlyaccess-section > .container{
  position: relative;
  z-index: 2;
}

/* Decorative blobs (more reliable than background gradients) */
#early-access.conveenio-earlyaccess-section::before,
#early-access.conveenio-earlyaccess-section::after{
  content: "";
  position: absolute;
  inset: -120px -120px auto -120px;
  height: 520px;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  filter: blur(0px);
}

/*#early-access.conveenio-earlyaccess-section::before{
  /* top-right violet glow */
/*  right: -180px;
  top: -160px;
  width: 780px;
  height: 520px;
  background: radial-gradient(closest-side,
    rgba(106,36,207,0.18) 0%,
    rgba(106,36,207,0.10) 35%,
    rgba(106,36,207,0.00) 70%
  );
}*/

#early-access.conveenio-earlyaccess-section::after{
  /* bottom-left warm glow */
  left: -220px;
  top: auto;
  bottom: -240px;
  width: 820px;
  height: 620px;
  background: radial-gradient(closest-side,
    rgba(255,126,84,0.14) 0%,
    rgba(255,126,84,0.08) 38%,
    rgba(255,126,84,0.00) 72%
  );
}

/* Extra gentle top wash to separate from section above */
#early-access.conveenio-earlyaccess-section{
  background:
    linear-gradient(180deg, rgba(63,85,216,0.06) 0%, #ffffff 55%, #ffffff 100%);
}

/* ---------------------------------------------------------
   LEFT SIDE – TYPOGRAPHY
   --------------------------------------------------------- */

#early-access .conveenio-kicker{
  letter-spacing: 0.12em;
  font-weight: 800;
  color: rgba(31,31,58,0.52);
}

#early-access .conveenio-earlyaccess-title{
  color: var(--ea-ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

#early-access .conveenio-earlyaccess-lead{
  color: var(--ea-muted);
  line-height: 1.75;
  max-width: 56ch;
}

#early-access .conveenio-earlyaccess-footnote{
  color: var(--ea-muted-2);
  line-height: 1.6;
  max-width: 60ch;
  margin-top: 1.75rem; /* makes it breathe */
}

#early-access .conveenio-earlyaccess-cta-note{
  color: var(--ea-muted);
  font-weight: 700;
  margin-top: 1.25rem;  /* fixes “too close” */
  margin-bottom: 0.9rem;
}

/* ---------------------------------------------------------
   RIGHT SIDE – STEP CARDS
   --------------------------------------------------------- */

/* Defensively remove any “dark theme dimming”/filters */
#early-access .conveenio-step-card,
#early-access .conveenio-step-card *{
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

#early-access .conveenio-step-card{
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(106,36,207,0.14); /* subtle violet edge */
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(31,31,58,0.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

#early-access .conveenio-step-inner{
  padding: 28px 30px;
}

/* Slight highlight on first step */
#early-access .conveenio-step-card:first-of-type{
  border-color: rgba(106,36,207,0.26);
  box-shadow: 0 22px 60px rgba(106,36,207,0.10);
}

#early-access .conveenio-step-card:hover{
  transform: translateY(-3px);
  border-color: rgba(106,36,207,0.34);
  box-shadow: 0 28px 74px rgba(31,31,58,0.12);
}

/* Step title/text */
#early-access .conveenio-step-title{
  color: var(--ea-ink) !important;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

#early-access .conveenio-step-text{
  color: rgba(31,31,58,0.70) !important;
  line-height: 1.7;
}

/* Badge – brand violet */
#early-access .conveenio-step-badge{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;

  font-weight: 900;
  color: var(--ea-violet);

  border: 1px solid rgba(106,36,207,0.28);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.96), rgba(255,255,255,0.70)),
    linear-gradient(135deg, rgba(106,36,207,0.20), rgba(255,126,84,0.10));
  box-shadow: 0 12px 26px rgba(31,31,58,0.10);
}

/* Connector line (desktop only) */
@media (min-width: 992px){
  #early-access .conveenio-step-badge{
    position: relative;
  }

  #early-access .conveenio-step-card:not(:last-of-type) .conveenio-step-badge::after{
    content:"";
    position:absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 10px);
    width: 2px;
    height: 34px;
    background: linear-gradient(180deg, rgba(106,36,207,0.34), rgba(106,36,207,0.00));
    border-radius: 2px;
    pointer-events: none;
  }

  /* CTAs aligned left on desktop */
  #early-access .conveenio-earlyaccess-cta{
    justify-content: flex-start;
  }
}

/* ---------------------------------------------------------
   CTA BUTTONS
   --------------------------------------------------------- */

#early-access .conveenio-earlyaccess-cta .btn{
  height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Solid violet */
#early-access .conveenio-btn-violet{
  background: var(--ea-violet) !important;
  border-color: var(--ea-violet) !important;
  /*box-shadow: 0 14px 34px rgba(106,36,207,0.22);*/
}

#early-access .conveenio-btn-violet:hover{
  background: var(--ea-violet-hover) !important;
  border-color: var(--ea-violet-hover) !important;
  /*box-shadow: 0 18px 46px rgba(106,36,207,0.28);*/
}

/* Outline violet */
#early-access .conveenio-btn-violet-outline{
  background: rgba(255,255,255,0.80) !important;
  border-color: rgba(106,36,207,0.38) !important;
  color: var(--ea-violet) !important;
}

#early-access .conveenio-btn-violet-outline:hover{
  background: rgba(106,36,207,0.08) !important;
  border-color: rgba(106,36,207,0.58) !important;
  color: var(--ea-violet) !important;
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 991.98px){
  #early-access.conveenio-earlyaccess-section{
    padding: 56px 0;
    text-align: center;
  }

  #early-access .conveenio-earlyaccess-lead,
  #early-access .conveenio-earlyaccess-footnote{
    margin-left: auto;
    margin-right: auto;
  }

  #early-access .conveenio-earlyaccess-cta{
    justify-content: center;
  }

  #early-access .conveenio-step-inner{
    padding: 22px 20px;
  }

  #early-access .conveenio-step-card .conveenio-step-inner{
    text-align: left;
  }
}

/* =========================================================
   TRUST SECTION (Apprista-style, but Dashcore-safe)
   ========================================================= */
#trust .conveenio-trust-title,
#trust .conveenio-trust-kicker,
#trust .conveenio-trust-lead,
#trust .conveenio-trust-footnote{
  color: #ffffff !important;
}
#trust.conveenio-trust-section{
  /* tune these once and forget */
  --trust-purple-1: #741EC4;
  --trust-purple-2: #6A24CF;
  --trust-purple-3: #4B2BE6;

  position: relative;
  overflow: hidden;
  padding: 64px 0;                 /* <- narrower strip (original feel) */
  color: #fff;

  background:
    linear-gradient(135deg,
      var(--trust-purple-1) 0%,
      var(--trust-purple-2) 45%,
      var(--trust-purple-3) 100%);
}

/* Diagonal overlay layer (this is what your “new” version is missing) */
#trust.conveenio-trust-section::before{
  content: "";
  position: absolute;
  inset: -80px -120px auto -120px;
  height: 320px;
  background: rgba(255,255,255,0.08);
  transform: rotate(-10deg);
  transform-origin: left top;
  pointer-events: none;
  z-index: 0;
}

/* Soft glow blobs (subtle, like the original) */
#trust.conveenio-trust-section::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 25% 35%, rgba(255,255,255,0.12), rgba(255,255,255,0) 60%),
    radial-gradient(700px 520px at 75% 20%, rgba(0,0,0,0.12), rgba(0,0,0,0) 55%);
  pointer-events:none;
  z-index: 0;
}

/* Background image (statistics-sidelayer.png) */
#trust .conveenio-trust-sidelayer{
  position: absolute;
  left: -90px;          /* <- makes it “peek in” from the left like Apprista */
  top: 120px;
  width: 520px;
  max-width: 65vw;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

#trust .conveenio-trust-sidelayer img{
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.05);
}

/* Content stack */
#trust .conveenio-trust-content{
  position: relative;
  z-index: 1;
  max-width: 1180px;     /* <- keeps lines similar to original */
  margin: 0 auto;
}

/* Kicker */
#trust .conveenio-trust-kicker{
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: none; /* original is not shouty-uppercase */
  opacity: 0.95;
  font-size: 20px;
}

/* Big headline (match original scale) */
#trust .conveenio-trust-title{
  font-weight: 900;
  line-height: 1.12;
  /* smaller, more refined */
  font-size: clamp(28px, 3.2vw, 44px);
  max-width: 1280px;      /* wider */
  letter-spacing: -0.005em; /* a touch less tight */
  margin-left: auto;
  margin-right: auto;
}

/* Main paragraph */
#trust .conveenio-trust-lead{
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* “Unfair advantage” line */
#trust .conveenio-trust-footnote{
  font-size: 20px;
  line-height: 1.85;
  opacity: 0.92;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

#trust .conveenio-trust-footnote strong{
  font-weight: 900;
}

/* Mobile tweaks */
@media (max-width: 991.98px){
  #trust.conveenio-trust-section{
    padding: 64px 0;
  }

  #trust .conveenio-trust-sidelayer{
    left: -140px;
    top: 140px;
    opacity: 0.22;
    width: 520px;
  }

  #trust .conveenio-trust-kicker{
    font-size: 18px;
  }

  #trust .conveenio-trust-lead,
  #trust .conveenio-trust-footnote{
    font-size: 18px;
  }
}

/* =========================================================
   CONVEENIO — FAQ + FOOTER 
   ========================================================= */

.bg-light-soft{
  /* soft neutral base + lavender haze so it connects to footer */
  background:
    radial-gradient(900px 420px at 50% 0%,
      var(--conveenio-haze-1) 0%,
      rgba(215,207,255,.18) 38%,
      rgba(255,255,255,0) 75%),
    radial-gradient(700px 520px at 95% 30%,
      var(--conveenio-haze-2) 0%,
      rgba(116,30,196,0) 72%),
    #fbfbfe;
  padding-top: 72px;
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
}

/* Gentle “fade down” so FAQ flows into footer (no harsh seam) */
.bg-light-soft::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(251,251,254,0) 0%,
    rgba(215,207,255,.22) 55%,
    rgba(215,207,255,.34) 100%
  );
  pointer-events:none;
}

/* Cards (keep your vibe, slightly refined edges) */
.faq-card{
  border: none;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: var(--conveenio-card-shadow);
  overflow: hidden;
  background: var(--conveenio-surface);
}

/* Header button */
.faq-card .accordion-button{
  position: relative;
  padding: 26px 78px 26px 32px;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: var(--conveenio-color-primary);
  background: #fff;
  box-shadow: none;
}

/* Collapsed title color */
.faq-card .accordion-button.collapsed{
  color: #111111;
}

/* Divider ONLY when expanded */
.faq-card .accordion-button:not(.collapsed)::before{
  content:"";
  position:absolute;
  left:32px;
  right:32px;
  bottom:12px;
  height:1px;
  background: rgba(15,16,32,0.08);
}

/* Remove default bootstrap icon */
.faq-card .accordion-button::after{
  background-image: none !important;
}

/* Custom chevron (uses brand purple) */
.faq-card .accordion-button::after{
  content:"";
  width: 28px;
  height: 28px;
  position:absolute;
  right:28px;
  top:50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .2s ease;
  background-color: var(--conveenio-color-primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 15.5a1 1 0 0 1-.7-.29l-6-6a1 1 0 1 1 1.4-1.42L12 13.1l5.3-5.31a1 1 0 0 1 1.4 1.42l-6 6a1 1 0 0 1-.7.29z'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 15.5a1 1 0 0 1-.7-.29l-6-6a1 1 0 1 1 1.4-1.42L12 13.1l5.3-5.31a1 1 0 0 1 1.4 1.42l-6 6a1 1 0 0 1-.7.29z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Collapsed chevron */
.faq-card .accordion-button.collapsed::after{
  background-color: #111111;
}

/* Rotate when open */
.faq-card .accordion-button:not(.collapsed)::after{
  transform: translateY(-50%) rotate(180deg);
}

.faq-card .accordion-body{
  padding: 22px 32px 32px 32px;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
  color: var(--conveenio-text);
}

.faq-kicker{ color:#fe7b53; }

/* =========================
   Footer (blends with FAQ haze)
   ========================= */

.footer-section.footer-conveenio{
  /* starts from the same haze tone and settles into a clean surface */
  background:
    radial-gradient(900px 420px at 50% 0%,
      rgba(215,207,255,.40) 0%,
      rgba(215,207,255,.14) 38%,
      rgba(255,255,255,0) 78%),
    #f6f7fd;
  padding: 56px 0 12px;
  position: relative;
  overflow: hidden;

  /* subtle separation without a “line” */
  box-shadow: 0 -1px 0 rgba(116,30,196,0.06);
}

/* Optional: add a very soft top border “glow” so it feels intentional */
.footer-section.footer-conveenio::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 1px;
  background: rgba(116,30,196,0.10);
  pointer-events:none;
}

.footer-section.footer-conveenio .container{ max-width: 1140px; }
.footer-section.footer-conveenio .footer-block{ height: 100%; }

.footer-section.footer-conveenio .footer-logo-img{
  height: 34px;
  width: auto;
}

.footer-section.footer-conveenio h3.heading{
  font-family: "Jost", sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  color: var(--conveenio-ink);
  margin-bottom: 18px;
}

.footer-section.footer-conveenio .footer-text{
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  line-height: 28px;
  color: var(--conveenio-text);
  margin-bottom: 14px;
}

.footer-section.footer-conveenio strong{
  color: #2b2d42;
  font-weight: 700;
}
/* Slightly constrain the long blurb so it doesn't feel like a wall of text */
.footer-section.footer-conveenio .footer-blurb {
  max-width: 36ch;              /* nicer reading width on desktop */
}

.footer-section.footer-conveenio .footer-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--conveenio-color-primary);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.footer-section.footer-conveenio .footer-link:hover{
  color: #fe7b53;
  transform: translateX(2px);
}

.footer-section.footer-conveenio .footer-links li{ margin-bottom: 12px; }

.footer-section.footer-conveenio .footer-links a{
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: var(--conveenio-color-primary);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-section.footer-conveenio .footer-links a:hover{
  color: #fe7b53;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Social icons */
.footer-section.footer-conveenio .footer-social{
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.footer-section.footer-conveenio .footer-social a{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: var(--conveenio-card-shadow);
  color: var(--conveenio-color-primary);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.footer-section.footer-conveenio .footer-social a:hover{
  transform: translateY(-2px);
  background: rgba(116,30,196,0.10);
  color: var(--conveenio-color-primary);
}

/* Lower bar */
.footer-section.footer-conveenio .footer-lower{
  margin-top: 36px;
  padding-top: 14px;
  border-top: 1px solid rgba(116,30,196,0.10);
}
.footer-section.footer-conveenio .footer-lower p{
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--conveenio-text);
}
.footer-section.footer-conveenio > .container{
  padding-top: 30px !important;
  padding-bottom: 36px !important;
}
/* Responsive tweaks */
@media (max-width: 991.98px){
  .footer-section.footer-conveenio{
    padding: 64px 0 24px;
    text-align: center;
  }
  .footer-section.footer-conveenio .footer-social{
    justify-content: center;
  }
  .footer-section.footer-conveenio .footer-links{
    padding-left: 0;
  }
  .footer-section.footer-conveenio .footer-lower .row{
    justify-content: center;
    text-align: center;
  }
  .footer-section.footer-conveenio .footer-blurb {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* =========================
   Conveenio – Mobile Menu
   ========================= */

/* FULL SCREEN OVERLAY */
#main-nav .st-nav-mobile .st-popup{
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding: 18px;
  padding-top: calc(18px + env(safe-area-inset-top));

  /* Light dim (adjust 0.30–0.45 to taste) */
  background: rgba(10, 6, 30, 0.42);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}

/* SHOW WHEN ACTIVE */
#main-nav .st-nav-mobile.st-popup-active .st-popup{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* POPUP CARD */
#main-nav .st-popup-container.conveenio-mobile-popup{
  width: min(560px, 100%);
  margin-top: 8px;

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);

  /* Fully opaque violet */
  background: #6A24CF;

  max-height: calc(100vh - 36px - env(safe-area-inset-top));
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  position: relative;
}


/* CLOSE BUTTON */

/* Remove Dashcore pseudo elements */
#main-nav .st-popup-close-button::before,
#main-nav .st-popup-close-button::after{
  content: none !important;
  display: none !important;
}

/* Close button styling */
#main-nav .st-popup-container.conveenio-mobile-popup .st-popup-close-button{
  position: absolute;
  top: 14px;
  right: 14px;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);

  color: #fff;
  cursor: pointer;
  z-index: 5;
}

#main-nav .st-popup-container.conveenio-mobile-popup .st-close-x{
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
}


/* CONTENT PADDING */
#main-nav .st-popup-container.conveenio-mobile-popup .st-dropdown-content-group{
  padding: 18px 22px 22px;
}


/* MENU TITLE */
#main-nav .st-popup-container.conveenio-mobile-popup .st-dropdown-content-group h4{
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin: 6px 0 18px;

  color: rgba(255,255,255,0.92);

  position: relative;
  padding-right: 70px; /* reserve space for close button */
}

/* Divider that stops before close button */
#main-nav .st-popup-container.conveenio-mobile-popup .st-dropdown-content-group h4::after{
  content: "";
  position: absolute;
  left: 0;
  right: 70px;
  bottom: -8px;
  height: 1px;
  background: rgba(255,255,255,0.10);
}


/* MENU LINKS */
#main-nav .st-popup-container.conveenio-mobile-popup a.st-mobile-link{
  display: block;
  padding: 16px 12px;

  border-radius: 14px;

  color: rgba(255,255,255,0.85);
  text-decoration: none;

  font-size: 20px;
  font-weight: 600;

  transition: background .15s ease, color .15s ease;
}

/* Prasware-style hover */
#main-nav .st-popup-container.conveenio-mobile-popup a.st-mobile-link:hover,
#main-nav .st-popup-container.conveenio-mobile-popup a.st-mobile-link:focus{
  background: rgba(255,255,255,0.12);
  color: #fff;
}
/* =========================================
   Conveenio – Scroll To Top Button
   ========================================= */

.scroll-to-top {
  background-color: #D7CFFF !important;
  border: none !important;

  width: 50px;
  height: 50px;

  box-shadow: 0 6px 16px rgba(74, 29, 179, 0.12);
  transition: all 0.2s ease;
}

/* Feather icon */
.scroll-to-top svg {
  stroke: #4A1DB3;
  stroke-width: 2.5;
}

/* Hover – subtle, not CTA-like */
.scroll-to-top:hover {
  background-color: #C9BFFF !important;  /* slightly deeper lavender */
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(74, 29, 179, 0.18);
}

/* Optional: slightly smaller on mobile */
@media (max-width: 576px) {
  .scroll-to-top {
    width: 46px;
    height: 46px;
  }
}
/* optional: tiny “lift” (comment out if you don’t want motion) */
/*
#main-nav .st-popup-container.conveenio-mobile-popup a.st-mobile-link:hover{
  transform: translateX(2px);
}
*/