/* ===== Voltina premium cards (minder lomp) ===== */

.fc-section{
  --voltina-pink: #e6007e;
  --voltina-orange: #f08048;
  background: var(--fc-bg);
  color: var(--fc-text);
}

.fc-section::before{ display:none; }

/* Grid spacing (maakt het geheel “luchtiger” zonder HTML aan te passen) */
.fc-section .grid{
  gap: 22px; /* was vaak groot/ruw door defaults */
}

/* Cards */
.fc-card{
  position: relative;
  border-radius: 26px;
  padding: 26px 24px 22px;

  background: rgba(255,255,255,0.98);

  /* subtielere rand (minder “outline”) */
  border: 1px solid rgba(17,17,17,0.06);

  /* premium zachte shadow, minder “zwevend” */
  box-shadow:
    0 10px 24px rgba(0,0,0,0.08),
    0 1px 3px rgba(0,0,0,0.06);

  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.fc-card:hover{
  transform: translateY(-2px);
  border-color: rgba(230, 0, 126, 0.12);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.10),
    0 3px 10px rgba(0,0,0,0.07);
}

/* Accent line: dunner + iets zachter */
.fc-card::before{
  content:"";
  position:absolute;
  left: 22px;
  right: 22px;
  top: 14px;
  height: 2px;                /* was 3px */
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(230, 0, 126, 0.95) 0%,
    rgba(240, 128, 72, 0.95) 100%
  );
}

/* Icon pill: kleiner & cleaner */
.fc-card .rb-5{
  margin-bottom: 18px; /* minder “blok” gevoel */
}

.fc-card .rb-5 img{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  padding: 10px;

  background: rgba(230, 0, 126, 0.05);
  border: 1px solid rgba(230, 0, 126, 0.10);
}

/* Typography: iets verfijnder (minder zwaar) */
.fc-heading{
  color: rgba(17,17,17,0.92);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.fc-desc{
  color: rgba(17,17,17,0.66);
  line-height: 1.55;
}

/* Buttons blijven ok, maar klein beetje subtieler */
.fc-btn--primary{
  padding: .78rem 1.2rem;
  border: 1px solid rgba(230, 0, 126, 0.22);
  box-shadow: 0 10px 20px rgba(230, 0, 126, 0.14);
}

.fc-btn--primary:hover{
  box-shadow: 0 14px 26px rgba(230, 0, 126, 0.18);
}

/* Extra: op grote schermen iets minder “tegels” door min-height */
@media (min-width: 1024px){
  .fc-card{
    min-height: 230px;
  }
}
/* Fix asymmetrische margins bij alignfull */
.fc-section.alignfull .container{
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* Zorg voor perfecte symmetrie */
.fc-section.alignfull .grid{
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px; /* match met je design system */
  padding-left: 5%;
  padding-right: 5%;
}



.fc-section{
  --vt-pink: #E6007E;
  --vt-orange: #F18700; /* enkel voor verloop */
  --vt-black: #000;

  position: relative;
  overflow: hidden;
  color: var(--vt-black);

  /* subtiele sfeer zodat het niet zo vlak wordt */


.fc-section::after{
  content:"";
  position:absolute;
  left: 6%;
  right: 6%;
  top: 0;
  height: 1px;
  pointer-events:none;
  background: linear-gradient(90deg,
    rgba(230, 0, 126, 0.00) 0%,
    rgba(230, 0, 126, 0.28) 35%,
    rgba(241, 135, 0, 0.22) 65%,
    rgba(230, 0, 126, 0.00) 100%);
  opacity: .9;
}

.fc-section .grid{
  gap: 22px;
}

/* Cards */
.fc-card{
  position: relative;
  border-radius: 26px;
  padding: 26px 24px 22px;

  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.08),
    0 1px 3px rgba(0,0,0,0.06);

  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.fc-card:hover{
  transform: translateY(-3px);
  border-color: rgba(230, 0, 126, 0.18);
  box-shadow:
    0 22px 54px rgba(0,0,0,0.10),
    0 4px 14px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.98);
}

/* Accent line */
.fc-card::before{
  content:"";
  position:absolute;
  left: 22px;
  right: 22px;
  top: 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(230,0,126,0.95) 0%, rgba(241,135,0,0.95) 100%);
}

/* Icon pill */
.fc-card .rb-5{
  margin-bottom: 18px;
}

.fc-card .rb-5 img{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  padding: 10px;

  background: rgba(230, 0, 126, 0.05);
  border: 1px solid rgba(230, 0, 126, 0.10);
  box-shadow: 0 10px 22px rgba(230,0,126,0.10);
}

/* Typography */
.fc-heading{
  color: rgba(0,0,0,0.92);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.fc-desc{
  color: rgba(0,0,0,0.68);
  line-height: 1.55;
}

/* Buttons (primary = magenta) */
.fc-btn--primary{
  padding: .78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(230, 0, 126, 0.26);
  background: rgba(230, 0, 126, 1);
  color: #fff;
  box-shadow: 0 14px 28px rgba(230, 0, 126, 0.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.fc-btn--primary:hover{
  transform: translateY(-1px);
  background: rgba(230, 0, 126, 0.92);
  border-color: rgba(230, 0, 126, 0.45);
  box-shadow: 0 18px 36px rgba(230, 0, 126, 0.22);
}

@media (min-width: 1024px){
  .fc-card{ min-height: 230px; }
}

/* Alignfull symmetry fix */
.fc-section.alignfull .container{
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.fc-section.alignfull .grid{
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 5%;
  padding-right: 5%;
}
