

/* =========================================================
   FITVIBE PLUS — BASE
========================================================= */
.fv-plus-page{
  background: var(--main-white-color);
  color: var(--main-blueblack-color);
}

/* containers */
.fv-plus-container{
  width: min(1250px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

/* typography */
.fv-plus-h2{
  font-size: 34px; /* κρατάμε το τελικό override */
  line-height: var(--lh-sm);
  margin: 0;
  font-weight: var(--fw-semibold);
  text-align: center;
  color: #2D2D2D;
  font-weight: 600;
  margin: 0 0 30px;
}
.fv-plus-h2--center{
  text-align: center;
  /* margin-bottom: 60px; */
}

.fv-plus-p{
  margin: 0;
  color: #0B3558;
  font-size: var(--fs-xsm);
  line-height: var(--lh-md);
}
.fv-plus-p--center{
  text-align: center;
  max-width: 550px;
  margin: 0 auto 45px;
  font-weight: 400;
}

.fv-plus-accent{ color: var(--main-primary-color); }

/* buttons */
.fv-plus-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border-silver-color);
  background: var(--main-white-pure-color);
  color: var(--main-blueblack-color);
  text-decoration: none;
  font-size: var(--fs-xxs);
  font-weight: var(--fw-semibold);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
}
.fv-plus-btn:hover{
  transform: translateY(-1px) scale(1.01);
  border-color: #325DE633;
}
.fv-plus-btn--primary{
  border-color: #325DE633;
  background: var(--main-primary-color);
  color: var(--main-white-pure-color);
  font-weight: 600;
  margin-top: 20px;
}
.fv-plus-btn--primary:hover{ background: var(--main-primary-hover-color); }


/* =========================================================
   HERO
========================================================= */
.fv-plus-hero{ padding: 46px 0 28px; }

.fv-plus-hero-inner{
  width: min(1250px, 100%);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.fv-plus-hero-head{
  display: grid;
  justify-items: center;
  gap: 18px;
}

.fv-plus-hero-kicker{
  color: var(--main-primary-color);
  font-weight: var(--fw-regular);
  text-align: center;
  color: #818181;
  font-weight: 500;
  font-size: 24px;
  max-width: 700px;
}

.fv-plus-hero-logo{
  display: grid;
  place-items: center;
  min-height: 66px;
  grid-gap: 25px;
}

.fv-plus-hero-logo-placeholder{
  width: 220px;
  height: 58px;
  border-radius: 14px;
  border: 1px dashed #325DE633;
  background: #FFFFFF;
}

/* =========================
   HERO HP images (PHP img) — responsive swap
========================= */
.fv-plus-collage.fv-plus-collage--hp{
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  height: auto;
  display: grid;
  place-items: center;
}

/* οι εικόνες “stack” μία πάνω στην άλλη, αλλά δείχνουμε 1 κάθε φορά */
.fv-plus-collage--hp .fv-plus-hp-img{
  margin: 0;
  width: 100%;
  display: none;
}

/* το img σου */
.fv-plus-collage--hp .fv-plus-img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* DEFAULT: Desktop */
.fv-plus-collage--hp .fv-plus-hp-img--desktop{ display: block; }

/* Tablet */
@media (max-width: 1024px){
  .fv-plus-collage--hp .fv-plus-hp-img--desktop{ display: none; }
  .fv-plus-collage--hp .fv-plus-hp-img--tablet{ display: block; }
}

@media (max-width: 768px){
  .fv-plus-collage--hp .fv-plus-img{
    display: block;
    object-fit: contain;
    height: 400px;
  }

  .fv-plus-hero-inner{
    width: min(1250px, 100%);
    margin: 0 auto;
    padding: 0 18px;
    display: grid;
    gap: 18px;
    row-gap: 10px;
    column-gap: 18px;
    justify-items: center;
  }

  .fv-plus-hero-head{
    display: grid;
    justify-items: center;
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 600px){
  .fv-plus-collage--hp .fv-plus-hp-img--tablet{ display: none; }
  .fv-plus-collage--hp .fv-plus-hp-img--mobile{ display: block; }

  .fv-plus-hero-kicker{
    /* color: var(--main-primary-color); */
    font-size: 16px;
    font-weight: var(--fw-regular);
  }

  .fv-plus-hero{
    padding: 15px 0 28px;
  }
}


/* =========================================================
   FEATURES
========================================================= */
.fv-plus-features{ padding: 50px 0 26px; }

.fv-plus-feature-block{
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 50px;
}

.fv-plus-feature-media{
  position: relative;
  border-radius: 18px;
  min-height: 280px;
  background: #F5ECF0;
}

.fv-plus-feature-overlay{
  width: 60%;
  height: 90%;
  position: absolute;
  margin: 0 auto;
  inset: 25px;
  border-radius: 20px;
  /* background: #FFFFFF; */
  /* box-shadow: 0 22px 60px #000F1E14; */
  overflow: hidden;
  display: grid;
}

.fv-plus-feature-img{
  width: 100%;
  height: 100%;
  object-fit: none;
  display: block;
}

/* shimmer */
.fv-plus-skeleton{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #F2F2F2 0%, #FFFFFF 45%, #F2F2F2 100%);
  transform: translateX(-50%);
  animation: fvPlusShimmer 1.25s infinite ease;
  opacity: .55;
}
.fv-plus-feature-overlay:not(.is-loading) .fv-plus-skeleton{ display: none; }
@keyframes fvPlusShimmer{
  0%{ transform: translateX(-60%); }
  100%{ transform: translateX(60%); }
}

/* feature list */
.fv-plus-feature-list{
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 10px;
}
.fv-plus-feature-item{
  all: unset;
  cursor: pointer;
  border-radius: 14px;
  padding: 12px 12px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.fv-plus-feature-item:hover{
  transform: translateY(-1px);
  border-color: #325DE626;
  box-shadow: 0 16px 40px #000F1E10;
}
.fv-plus-feature-item.is-active{
  background: #D2E1F766;
}
.fv-plus-fi-title{
  font-weight: var(--fw-semibold);
  color: #0B3558;
  font-size: var(--fs-md);
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 24px;
}
.fv-plus-fi-desc{
  color: #5F6E95;
  font-size: 14px; /* κρατάμε το τελικό override */
  line-height: var(--lh-md);
  font-weight: 600;
}

@media (max-width: 1150px){
  .fv-plus-feature-overlay{
    width: auto;
    height: auto;
    position: absolute;
    margin: 0 auto;
    inset: 25px;
    border-radius: 20px;
    /* background: #FFFFFF; */
    /* box-shadow: 0 22px 60px #000F1E14; */
    overflow: hidden;
    display: grid;
  }
}

@media (max-width: 768px){
  .fv-plus-features{
    padding: 20px 0 26px;
  }

  .fv-plus-fi-title{
    font-weight: var(--fw-semibold);
    color: #0B3558;
    font-size: var(--fs-md);
    margin-bottom: 4px;
    font-size: 18px;
  }

  .fv-plus-fi-desc{
    color: #5F6E95;
    font-size: 14px;
    line-height: var(--lh-md);
  }
}

/* reverse block order is handled in responsive */


/* =========================================================
   PRICING
========================================================= */
.fv-pricing-section{ padding: 80px 0 100px; }

.fv-pricing-container{
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 24px;
}

.fv-pricing-header{text-align: center;margin-bottom: 25px;}
.fv-pricing-header h2{
  font-size: 32px;
  font-weight: 700;
  color: #1d2340;
  margin-bottom: 8px;
}
.fv-pricing-header p{ font-size: 15px; color: #727894; }

/* Toggle */
.fv-billing-toggle{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px;
  padding: 4px;
  border-radius: 999px;
  background: #e4e7ff;
  box-shadow: 0 14px 40px rgba(43, 74, 255, 0.12);
}
.fv-billing-toggle .fv-billing-btn{
  border: none;
  background: transparent;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  color: #3d4a7a;
  transition: all 0.2s ease;
  font-weight: 500;
}
.fv-billing-toggle .fv-billing-btn.is-active{
  background: #3d6afb;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(61, 106, 251, 0.35);
}

/* Grid default (desktop) */
.fv-pricing-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: flex-start;
}

.fv-pricing-card{
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 24px 30px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.fv-pricing-card--featured{ transform: none; border: 2px solid #3d6afb; }
.fv-pricing-card--ghost{
  background: transparent;
  border: 1px dashed rgba(61, 106, 251, 0.4);
  box-shadow: none;
}

/* Badge */
.fv-card-badge{
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f5f6ff;
  color: #3d6afb;
  font-weight: 600;
}
.fv-card-badge--recommended{background: #faca2f;color: #2b1d02;font-weight: 700;}
.fv-card-badge--free{background: #e9f9ff;background: #eef0ff;/* color: #0077b6; */background: #7CA4E5;font-weight: 700;color: #efefef;background: #3d6afb;color: #ffffff;}

/* Titles */
.fv-card-title{
  font-size: 20px;
  font-weight: 700;
  color: #1d2340;
  margin-bottom: 4px;
}
.fv-card-subtitle{
  font-size: 13px;
  color: #7b819b;
  margin-bottom: 18px;
  font-weight: 600;
}

/* Price */
.fv-card-price{ margin-bottom: 18px; }
.fv-card-price--no-toggle{ margin-bottom: 18px; }

.fv-price-amount{
  font-size: 26px;
  font-weight: 700;
  color: #151827;
  margin-right: 4px;
}
.fv-price-period{font-size: 13px;color: #7b819b;font-weight: 600;}
.fv-price-note{font-size: 12px;color: #9a9fb8;margin-top: 4px;font-weight: 600;}

/* Features */
.fv-card-features{
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 13px;
  color: #50556d;
}
.fv-card-features li{
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px;
  font-weight: 600;
}
.fv-card-features li::before{
  content: "•";
  font-size: 14px;
  line-height: 1;
  margin-top: 2px;
  color: #3d6afb;
}
.fv-card-features em{ font-style: italic; color: #8a8fad; }

/* AI Banner */
.fv-ai-banner{
  background: #f4f7ff;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #283155;
  border: 1px dashed rgba(61, 106, 251, 0.35);
  margin-bottom: 18px;
  font-weight: 600;
}
.fv-ai-banner span{
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 999px;
  background: #3d6afb;
  color: #ffffff;
  margin-left: 4px;
}
.fv-ai-banner--subtle{ background: #f8f9ff; }

/* Buttons */
.fv-card-cta{
  margin-top: auto;
  border-radius: 999px;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  background: #eef0ff;
  color: #3d4a7a;
  transition: all 0.2s ease;
}
.fv-card-cta:hover{ background: #e0e3ff; }
.fv-card-cta--primary{ background: #3d6afb; color: #ffffff; }
.fv-card-cta--primary:hover{ background: #3256d4; }
.fv-card-cta--outline{
  background: transparent;
  border: 1px solid rgba(61, 106, 251, 0.6);
  color: #3d6afb;
}
.fv-card-cta--outline:hover{ background: rgba(61, 106, 251, 0.06); }

.fv-pricing-footnote{
  margin-top: 28px;
  font-size: 13px;
  text-align: center;
  color: #9a9fb8;
}

/* Swiper wrapper hidden by default (enabled via media + JS) */
.fv-plus-pricing-swiperwrap{ display: none; }

/* Expand/collapse */
.fv-pricing-card[data-expanded="false"] .fv-card-features li:nth-child(n+6){ display: none; }

.fv-card-more{
  font-size: 12px;
  font-weight: 500;
  color: #3d6afb;
  cursor: pointer;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}
.fv-card-more::after{
  content: "▼";
  font-size: 10px;
  transform: translateY(1px);
}
.fv-pricing-card[data-expanded="true"] .fv-card-more::after{ content: "▲"; }

/* Pricing section “Plus page” wrapper */
.fv-plus-page .fv-pricing-section{
  background: #FFFFFF;
  padding: 70px 0;
  border-radius: 70px;
}
.fv-plus-page .fv-pricing-container{
  width: min(1650px, 100%);
  margin: 0 auto;
  padding: 0 18px;
}
.fv-plus-page .fv-pricing-header h2{
  margin: 0 0 10px;
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--main-blueblack-color);
}
.fv-plus-page .fv-pricing-header p{
  margin: 0 0 16px;
  color: var(--main-darkgray-color);
  font-weight: 500;
}

h2.fv-plus-h2.fv-sub-price{
  /* margin-top: 130px; */
  margin-bottom: 15px;
}

@media (max-width: 980px){
  .fv-plus-page .fv-pricing-section{
    background: #FFFFFF;
    padding: 40px 0;
    border-radius: 70px;
  }

  h2.fv-plus-h2.fv-sub-price{
    /* margin-top: 130px; */
    margin-bottom: 10px;
    text-align: center;
  }

  .fv-billing-toggle .fv-billing-btn{
    border: none;
    background: transparent;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    color: #3d4a7a;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 600;
  }

  .fv-card-title{
    font-size: 18px;
    font-weight: 700;
    color: #1d2340;
    margin-bottom: 4px;
  }

  .fv-billing-toggle{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    padding: 4px;
    border-radius: 999px;
    background: #e4e7ff;
    box-shadow: 0 14px 40px rgba(43, 74, 255, 0.12);
  }

  .fv-card-subtitle{
    font-size: 13px;
    color: #7b819b;
    margin-bottom: 8px;
  }

  .fv-card-price{
    margin-bottom: 12px;
  }

  .fv-price-amount{
    font-size: 24px;
    font-weight: 700;
    color: #151827;
    margin-right: 4px;
  }

  .fv-card-features li{
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 5px;
  }

  .fv-ai-banner{
    background: #f4f7ff;
    border-radius: 14px;
    padding: 6px 12px;
    font-size: 11px;
    line-height: 1.5;
    color: #283155;
    border: 1px dashed rgba(61, 106, 251, 0.35);
    margin-bottom: 18px;
  }

  .fv-pricing-footnote{
    margin-top: 0px;
    font-size: 11px;
    text-align: center;
    color: #9a9fb8;
    font-weight: 600;
  }
}

div#fv-plus-pricing{
  display: grid;
  height: 40px;
}


/* =========================================================
   INTELLIGENCE — SINGLE SOURCE OF TRUTH
========================================================= */
.fv-plus-intel{
  padding: 75px 0 40px;
  background: var(--main-white-color);
}

/* rail: desktop default (>=1251 shows 3, no dots) */
.fv-plus-intel-rail{
  margin-top: 18px;
  display: flex;
  gap: 65px;
  align-items: stretch;
  margin-bottom: 80px;
}

/* each card: stack svg + text */
.fv-plus-intel-card-inner{
  flex: 1 1 0%;
  display: grid;
  grid-template-areas: "stack";
  align-items: stretch;
  justify-items: stretch;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.fv-plus-intel-card-inner > *{ grid-area: stack; }

/* svg layer */
.fv-plus-intel-shape{
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* text layer */
.fv-plus-intel-text{
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 10px 40px;
  color: #FFFFFF;
  margin-bottom: 5px;
  margin-left: 20px;
}

.fv-plus-intel-title{
  margin: 0 27px;
  font-weight: 400;
  font-size: 24px;
  color: #EEF0F7;
  font-weight: 600;
}
.fv-plus-intel-desc{
  margin: 0 27px;
  font-weight: 300;
  line-height: 1.45;
  font-size: 14px;
  color: #ADB5DB;
  max-width: 30ch;
  font-weight: 300;
  color: #efefef;
}

/* dots (intel) */
.fv-plus-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 10px;
}
.fv-plus-dotbtn{
  all: unset;
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #325DE626;
  transition: transform .18s ease, background .18s ease;
  outline: none;
  width: 40px;
  height: 6px;
  opacity: 1;
  background: #0b122014;
  margin: 0 ;
}
.fv-plus-dotbtn.is-active{
  background: #325DE6;
  transform: scale(1.2);
}

/* title row */
.fv-plus-title{
  display: grid;
  justify-content: center;
  grid-template-columns: 115px auto;
  align-items: center;
  align-self: center;
}
h2.fv-plus-h2.fv-plus-h2--center.inteligence {
    text-align: left;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.fv-plus-testimonials{
  padding: 60px 0 60px;
  background: #FFFFFF;
  border-radius: 70px;
}

.fv-plus-testimonial-rail{
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.fv-plus-testimonial-card{
  border-radius: 22px;
  padding: 18px;
  display: grid;
  grid-template-columns: 600px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.fv-plus-testimonial-media{
  position: relative;
  min-height: 200px;
  display: grid;
  /* place-items:center; */
}

.fv-plus-testimonial-avatar{
  border-radius: 50px 135px 135px 50px;
  overflow: hidden;
  background: #FFFFFF;
  z-index: 2;
  margin: 0;
}

.fv-plus-testimonial-body{ padding: 6px 0; }

.fv-plus-testimonial-name{
  font-weight: var(--fw-light);
  color: #0B3558;
  font-size: 34px;
  font-weight: 600;
}

.fv-plus-testimonial-role{
  color: var(--main-primary-color);
  font-size: var(--fs-xxs);
  margin-top: 0px;
  margin-bottom: 10px;
  font-weight: 600;
}

.fv-plus-testimonial-text{
  margin: 10px 0 25px;
  color: #5F6E95;
  font-size: var(--fs-xsm);
  line-height: var(--lh-md);
  font-weight: 400;
  font-size: 16px;
}

.fv-plus-testimonial-logo{
  height: 50px;
  width: auto;
  opacity: .75;
}


/* =========================================================
   FEATURES media background overrides
========================================================= */
.fv-plus-feature-media,
.fv-plus-benefits-media{
  background: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fv-plus-feature-bg,
.fv-plus-benefits-bg{ display: none !important; }

@media (max-width: 860px){
  .fv-plus-intel{
    padding: 50px 0 40px;
    background: var(--main-white-color);
  }

  img.fv-testim-img{width: 100%;height: auto;width: 220px;}

  .fv-plus-testimonial-avatar{
    /* border-radius: 50px 135px 135px 50px; */
    overflow: hidden;
    background: #FFFFFF;
    z-index: 2;
    margin: 0;
    margin-right: 35px;
  }

  .fv-plus-testimonial-name{
    font-weight: var(--fw-light);
    color: #0B3558;
    font-size: 24px;
    font-weight: 400;
  }

  .fv-plus-testimonial-text{
    margin: 10px 0 25px;
    color: #5F6E95;
    font-size: var(--fs-xsm);
    line-height: var(--lh-md);
    font-weight: 400;
    font-size: 14px;
  }

  .fv-plus-testimonials{
    padding: 60px 0 10px;
    background: #FFFFFF;
    border-radius: 70px;
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

/* 500px specific (button/card tweaks) */
@media (max-width: 500px){
  img.fv-plus-cover-img{ width: 100%; }

  .fv-plus-btn{
    height: 52px;
    width: 327px;
    font-size: 13px;
    /* background: var(--main-white-pure-color); */
    /* color: var(--main-blueblack-color); */
    border-radius: 999px;
    padding: 23px 15px;
    font-size: 16px;
    background: #2f5cff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    color: #ffffff;
    font-weight: 400;
    margin-top: 5px;
    font-weight: 600;
  }

  .fv-pricing-card{
    background: #ffffff;
    border-radius: 28px;
    padding: 20px 28px 30px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    background: content-box;
  }
}

@media (max-width: 480px){
  h2.fv-plus-h2.fv-plus-h2--center{font-size: 24px;text-align: center;}

  .fv-plus-title{
    display: grid;
    justify-content: center;
    grid-template-columns: 130px auto;
    align-items: center;
    align-self: center;
  }

  .fv-plus-page .fv-pricing-card{
    scroll-snap-align: start;
    box-shadow: 0px 5px 30px 0px rgba(15, 23, 42, 0.08);
    box-shadow: unset;
    box-shadow: 0px 0px 15px 0px rgba(15, 23, 42, 0.08);
  }

  h2.fv-plus-h2.fv-plus-h2--center.inteligence{
    text-align: left;
  }
}

@media (max-width: 485px){
  .fv-plus-intel-card-inner{
    scroll-snap-align: start;
    flex: 0 0 calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
    padding: 40px;
  }

  .fv-plus-intel-text{
    display: grid;
    align-content: center;
    gap: 18px;
    padding: 10px 40px;
    color: #FFFFFF;
    margin-bottom: 5px;
  }

  .fv-plus-dots{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 10px;
  }
}


/* feature reverse order + a bunch of 860 overrides */
@media (max-width: 860px){
  /* feature reverse order */
  .fv-plus-feature-block{ grid-template-columns: 1fr; }
  .fv-plus-feature-block.fv-plus-feature-block--reverse{ grid-template-columns: 1fr; }
  .fv-plus-feature-block.fv-plus-feature-block--reverse .fv-plus-feature-media{ order: 1; }
  .fv-plus-feature-block.fv-plus-feature-block--reverse .fv-plus-feature-list{ order: 2; }

  /* hero responsive (legacy collage positions you had) */
  .fv-plus-collage{ height: 300px; }
  .fv-plus-shot--laptop{ left: 11%; top: -28px; width: 160px; height: 150px; border-radius: 34px; }
  .fv-plus-shot--gym{ left: 10%; top: 165px; width: 145px; height: 130px; }
  .fv-plus-shot--yoga{ left: 53%; top: 165px; width: 175px; height: 132px; }
  .fv-plus-shot--trainer{ left: 60%; top: -11px; width: 125px; height: 125px; }

  .fv-plus-feature-media{ min-height: 260px; }
  .fv-plus-feature-overlay{ inset: 14px; }

  .fv-plus-blob--yellow{ left: -2%; top: 52px; }
  img.yellow-big-vec{ height: 70px; }

  .fv-plus-blob--red{ left: 175px; top: 140px; }
  img.red-vec{ height: 55px; }

  .fv-plus-blob--yellow-sm{ right: 4%; top: 278px; }
  .fv-plus-blob--blue-sm{ right: 0px; top: 100px; }
  img.blue-vec{ height: 42px; }

  /* header/logo/h2 tweaks you had */
  .fv-plus-hero-logo{
    display: grid;
    place-items: center;
    min-height: 66px;
    grid-gap: 15px;
  }

  .plus-logo{width: 230px;}

  .fv-plus-h2{
    font-size: 24px;
    line-height: var(--lh-sm);
    margin: 0;
    font-weight: var(--fw-semibold);
    /* text-align: left; */
    color: #2D2D2D;
  }

  .fv-plus-title{
    display: grid;
    justify-content: center;
    grid-template-columns: 110px auto;
    align-items: center;
    align-self: center;
  }

  /* pricing: mobile scroll-mode (your existing) */
  .fv-plus-page .fv-pricing-grid{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(86%, 360px);
    gap: 14px;
    overflow-x: auto;
    padding: 6px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .fv-plus-page .fv-pricing-grid::-webkit-scrollbar{ height: 10px; }
  .fv-plus-page .fv-pricing-grid::-webkit-scrollbar-thumb{ background: #325DE61A; border-radius: 999px; }
  .fv-plus-page .fv-pricing-card{scroll-snap-align: start;border: 1px solid #3d6afb;}

  /* pricing dots — keep same style as mobile */
  .fv-plus-pricing-swiperwrap{ display: block; }

  /* testimonials responsive */
  .fv-plus-testimonial-card{
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* intel rail mobile (merged from your duplicates) */
  .fv-plus-intel-rail{
    gap: 75px;
    padding: 0 30px;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    margin-left: 20px;
  }

  .fv-plus-intel-card-inner{
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .fv-plus-intel,
  .fv-plus-intel .fv-plus-container{
    overflow: hidden;
  }

  .fv-plus-p--center{
    text-align: center;
    max-width: 550px;
    margin: 5px auto 10px;
  }

  img.fv-plus-ai{
    height: auto;
    width: 100%;
  }

  .fv-plus-intel-title{
    margin: 0 27px;
    font-weight: 400;
    font-size: 20px;
    color: #EEF0F7;
  }

  .fv-plus-intel-desc{
    margin: 0 27px;
    font-weight: 300;
    line-height: 1.45;
    font-size: 13px;
    max-width: 30ch;
  }

  .fv-plus-feature-list{
    border-radius: 18px;
    padding: 14px;
    display: grid;
    gap: 2px;
  }
  .fv-plus-feature-block{
    margin-top: 25px;
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 10px;
    align-items: stretch;
    margin-bottom: 20px;
  }

  /* =========================================================
     SAFETY: prevent horizontal overflow
  ========================================================== */
  .fv-plus-page{
    overflow-x: hidden;
  }
  .fv-plus-feature-block,
  .fv-plus-feature-block > *{
    min-width: 0;
  }

  /* =========================================================
     LIST SWIPER (feature cards)
  ========================================================== */
  .fv-plus-feature-list.fv-plus-feature-swiper{
    display: block; /* override grid */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
  }
  .fv-plus-feature-list.fv-plus-feature-swiper .swiper-wrapper{
    width: 100%;
    align-items: stretch;
  }
  .fv-plus-feature-list.fv-plus-feature-swiper .swiper-slide{
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .fv-plus-feature-list.fv-plus-feature-swiper .fv-plus-feature-item{
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border-radius: 18px;
    padding: 14px;
    /* background: #FFFFFF; */
    /* box-shadow: 0 16px 40px #000F1E10; */
    border: 1px solid #0B35580F;
  }

  .fv-plus-feature-list.fv-plus-feature-swiper .fv-plus-feature-item.is-active{
    background: #D2E1F766;
    border-color: #325DE626;
  }

  /* Dots: always visible, centered, per block (so 2nd tetada has its own) */
  .fv-plus-feature-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    width: 100%;
  }
  .fv-plus-feature-dots .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    border-radius: 999px;
    opacity: 0.35;
    transition: transform .18s ease, opacity .18s ease, background .18s ease;
    outline: none;
    width: 40px;
    height: 6px;
    opacity: 1;
    background: #0b122014;
    margin: 0 !important;
  }
  .fv-plus-feature-dots .swiper-pagination-bullet-active{
    opacity: 1;
    background: var(--main-primary-color);
    transform: scale(1.08);
  }

  /* =========================================================
     MEDIA SWIPER (overlay screenshot) — MUST stay ABSOLUTE
     (Swiper adds position:relative, so we override it here)
  ========================================================== */
  .fv-plus-feature-overlay.fv-plus-feature-media-swiper{
    position: absolute;
    inset: 0px;
    width: 33%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    /* background: #FFFFFF; */
    /* box-shadow: 0 22px 60px #000F1E14; */
  }

  .fv-plus-feature-overlay.fv-plus-feature-media-swiper .swiper-wrapper,
  .fv-plus-feature-overlay.fv-plus-feature-media-swiper .swiper-slide{
    height: 100%;
  }

  .fv-plus-feature-overlay.fv-plus-feature-media-swiper .fv-plus-feature-img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  /* =========================================================
     ARROWS on image (optional but clear)
  ========================================================== */
  .fv-plus-feature-media{
    position: relative; /* anchor arrows */
  }

  .fv-plus-feature-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #0B35581A;
    background: #FFFFFFCC;
    box-shadow: 0 16px 40px #000F1E10;
    z-index: 6;
    display: grid;
    place-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .fv-plus-feature-nav--prev{ left: 10px; }
  .fv-plus-feature-nav--next{ right: 10px; }

  .fv-plus-feature-nav::before{
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #0B3558;
    border-bottom: 2px solid #0B3558;
    transform: rotate(135deg);
    opacity: .85;
  }
  .fv-plus-feature-nav--next::before{
    transform: rotate(-45deg);
  }

  /* =========================================================
     Text safety (Greek long strings)
  ========================================================== */
  .fv-plus-fi-title,
  .fv-plus-fi-desc{
    overflow-wrap: anywhere;
  }

  /* κάνουμε το feature block column layout */
  .fv-plus-feature-block{
    display: flex;
    flex-direction: column;
  }

  /* σειρά στοιχείων */
  .fv-plus-feature-media{ order: 1; }
  .fv-plus-feature-list{ order: 2; }
  .fv-plus-feature-dots{ order: 3; }

  /* ensure dots are visible and centered */
  .fv-plus-feature-dots{
    width: 100%;
    margin-top: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 1451px){
  .fv-plus-pricing-dots{ display: none; } /* keep as you had */
}

@media (max-width: 1450px){
  .fv-plus-page .fv-pricing-grid{ display: none; }
  .fv-plus-pricing-swiperwrap{ display: block; }
  .fv-plus-pricing-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    margin-bottom: 14px;
  }
  .fv-plus-pricing-dots .swiper-pagination-bullet{
    width: 40px;
    height: 6px;
    border-radius: 999px;
    opacity: 1;
    background: #0b122014;
    transition: transform .18s ease, opacity .18s ease, background .18s ease;
    outline: none;
    margin: 0 !important;
  }
  .fv-plus-pricing-dots .swiper-pagination-bullet-active{
    opacity: 1;
    background: var(--main-primary-color);
    transform: scale(1.08);
  }
}

/* pricing: tablet/desktop scroll-mode (your logic) */
@media (min-width: 861px) and (max-width: 1450px){
  .fv-pricing-grid{
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 24px;
    padding: 6px 2px 16px;
    scroll-snap-type: none;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #325DE633 transparent;
  }
  .fv-pricing-grid::-webkit-scrollbar{ height: 10px; }
  .fv-pricing-grid::-webkit-scrollbar-thumb{ background: #325DE633; border-radius: 999px; }
  .fv-pricing-card{scroll-snap-align: start;border: 1px solid #3d6afb;}
}

@media (min-width: 1251px) and (max-width: 1450px){
  .fv-pricing-card{ flex: 0 0 calc((100% - (24px * 3)) / 4); }
}
@media (min-width: 1001px) and (max-width: 1250px){
  .fv-pricing-card{ flex: 0 0 calc((100% - (24px * 2)) / 3); }
}
@media (min-width: 861px) and (max-width: 1000px){
  .fv-pricing-card{ flex: 0 0 calc((100% - 24px) / 2); }
}

/* intel dots visibility */
@media (min-width: 1451px){
  .fv-plus-dots{ display: none; }
}
@media (max-width: 1450px) and (min-width: 860px){
  .fv-plus-dotbtn[data-intel-dot="2"]{ display: none; } /* 2 dots mode */
}

/* intel rail responsive: <=1450 show 2 cards */
@media (max-width: 1450px){
  .fv-plus-intel-rail{
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 14px;
    padding: 0 14px;
    gap: 0px;
    scrollbar-width: none;
    margin-bottom: 20px;
  }
  .fv-plus-intel-rail::-webkit-scrollbar{ display: none; }

  .fv-plus-intel-card-inner{
    scroll-snap-align: start;
    flex: 0 0 calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
    padding: 0px 80px 10px 50px;
  }
  .fv-plus-intel-rail.is-dragging{
    cursor: grabbing;
    user-select: none;
  }
}
@media (max-width: 650px){


 .fv-plus-feature-overlay.fv-plus-feature-media-swiper{
    position: absolute;
    inset: 0px;
    width: 40%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    /* background: #FFFFFF; */
    /* box-shadow: 0 22px 60px #000F1E14; */
  }

}
/* INTEL: force 2-up μέχρι και 480px */
@media (max-width: 860px){
  .fv-plus-intel-card-inner{
    flex: 0 0 calc((100% - 18px) / 2);
    min-width: 0;
    max-width: calc((100% - 18px) / 2);
  }

  .fv-plus-intel-title{
    margin: 0 27px;
    font-weight: 400;
    font-size: 20px;
    color: #EEF0F7;
  }

  .fv-plus-intel-desc{
    margin: 0 27px;
    font-weight: 300;
    line-height: 1.45;
    font-size: 11px;
    max-width: 30ch;
  }

  .fv-plus-intel-text{
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px 20px;
    color: #FFFFFF;
    margin-bottom: 5px;
    margin-left: unset;
  }
}

/* INTEL: κάτω από 480 -> 1-up */
@media (max-width: 860px){
  .fv-plus-intel-card-inner{
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  img.fv-plus-ai{
    height: auto;
    width: 100%;
    width: 310px;
  }

  .fv-plus-intel-desc{
    margin: 0 27px;
    font-weight: 300;
    line-height: 1.45;
    font-size: 12px;
    max-width: 30ch;
  }
}

@media (max-width: 490px){
  .fv-plus-intel-card-inner{
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    justify-content: unset;
  }

  img.fv-plus-ai{
    height: auto;
    width: 100%;
    width: 310px;
  }

  img.fv-plus-ai-title{
    width: 90%;
    height: 100%;
  }

  .fv-plus-intel-rail{
    gap: 75px;
    padding: 5px 30px 5px 0px;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    margin-left: 5px;
    margin-bottom: 8px;
  }

  .fv-plus-intel-title{
    margin: 5px 27px;
    font-weight: 400;
    font-size: 20px;
    color: #EEF0F7;
  }

  .fv-plus-intel-desc{
    margin: 0 27px;
    font-weight: 300;
    line-height: 1.45;
    font-size: 13px;
    color: #efefef;
    max-width: 30ch;
  }

  .fv-pricing-card{
    background: #ffffff;
    border-radius: 28px;
    padding: 28px 24px 30px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #3d6afb;
  }

 .fv-plus-feature-overlay.fv-plus-feature-media-swiper{
    position: absolute;
    inset: 0px;
    width: 60%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    /* background: #FFFFFF; */
    /* box-shadow: 0 22px 60px #000F1E14; */
  }
  .fv-plus-intel-text{
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px 35px;
    color: #FFFFFF;
    margin-bottom: 5px;
  }
.fv-plus-page .fv-pricing-section{
  background: #FFFFFF;
  padding: 30px 0;
  border-radius: 30px;
}

    .fv-plus-testimonials {
        padding: 60px 0 10px;
        background: #FFFFFF;
        border-radius: 30px;
  }
}




@media (max-width: 425px){
  .fv-plus-intel-rail{
    gap: 75px;
    padding: 0 30px;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    margin-left: -30px;
    margin-bottom: 10px;
  }
}

@media (max-height: 700px){
  .fv-plus-collage--hp .fv-plus-img{
    display: block;
    object-fit: contain;
    height: 350px;
  }

  .plus-logo{
    width: 200px;
  }

  .fv-plus-hero-kicker{
    /* color: var(--main-primary-color); */
    font-size: 15px;
    font-weight: var(--fw-regular);
  }
}

/* ===
   FEATURES — lock background image + keep overlay on top */
.fv-plus-feature-media{
  overflow: hidden;
}

img.fv-plus-cover-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* overlay πάντα πάνω από bg */
.fv-plus-feature-overlay{
  z-index: 2;
}
