@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --main-font-family: "Poppins", sans-serif;
}
/*
▄▀▀ ██▀ ▄▀▀ ▀█▀ █ ▄▀▄ █▄ █    █▄█ ██▀ ▄▀▄ █▀▄ ██▀ █▀▄ 
▄█▀ █▄▄ ▀▄▄  █  █ ▀▄▀ █ ▀█    █ █ █▄▄ █▀█ █▄▀ █▄▄ █▀▄ 
*/

.c-section-header {
    position: relative;
}

.c-section-header__title {
    font-family: var(--main-font-family);
    color: white;
    font-size: 72px;
    text-align: center;
    max-width: 1050px;
    line-height: 80px;
    margin: auto;
    font-weight: 600;
}

.c-section-header__title span {
    font-family: var(--main-font-family);
    color: #D1AA34;

    background: linear-gradient(135deg, #BF9B30 0%, #D1AA34 65%, #AA8517 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.c-section-header__desc {
    font-family: var(--main-font-family);
    font-size: 18px;
    line-height: 26px;
    color: white;
    max-width: 1050px;
    margin: 30px auto 0;
    text-align: center;
    font-weight: 400;
}

.c-section-header__actions {
    display: flex;
    margin: 50px auto 0;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.c-section-header__actions a {
    text-decoration: none;
    color: white;
    border-radius: 50px;
    height: 60px;
    padding: 0 30px;
    background-color: #BF9B30;
    background: linear-gradient(135deg, #BF9B30 0%, #D1AA34 65%, #AA8517 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
}

.c-section-header__actions a svg {
    fill: white;
    margin-left: 10px;
    display: block;
}

.c-section-header__actions a.c-btn--secondary {
    background: transparent;
    border: 1px solid #D1AA34;
}

/*
█ █ ██▀ █▀▄ ▄▀▀ █   ▀▄▀    █▀ ██▀ ▄▀▄ ▀█▀ █ █ █▀▄ ██▀    █▄ ▄█ ▄▀▄ █▀▄ ▄▀▄ █ █ ██▀ ██▀ 
▀▄▀ █▄▄ █▀▄ ▀▄▄ █▄▄  █     █▀ █▄▄ █▀█  █  ▀▄█ █▀▄ █▄▄    █ ▀ █ █▀█ █▀▄ ▀▄█ ▀▄█ █▄▄ █▄▄ 
*/

.c-vercly-feature-marquee {
    background-color: white;
    border-radius: 50px;
    max-width: 1355px;
    width: calc(100% - 50px);
    margin: 110px auto 70px;
}

/* TOP layout */
.c-vfm__top{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 60px;
}

.c-vfm__left {
    padding-top: 50px;
}

.c-vfm__title {
    font-family: var(--main-font-family);
    font-size: 32px;
    line-height: 40px;
    color: black;
    font-weight: 600;
}

.c-vfm__title span {
    font-family: var(--main-font-family);
    color: #D1AA34;

    background: linear-gradient(135deg, #BF9B30 0%, #D1AA34 65%, #AA8517 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.c-vfm__content {
    background-color: rgba(65, 65, 65, 0.7);
    height: calc(100% + 40px);
    transform: translateY(-40px);
    border-radius: 25px;
    backdrop-filter: blur(20px);
}

.c-vfm__content h2,
.c-vfm__content h3,
.c-vfm__content h4,
.c-vfm__content h5 {
    font-family: var(--main-font-family);
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.c-vfm__image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* BOTTOM */
.c-vfm__bottom{
  margin-top: 56px;
}

.c-vfm__bottom-title{
  margin: 0 0 18px 0;
}

/* Swiper cards */
.c-vfm__swiper{
  width: 100%;
}

.c-vfm__card{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06); /* szare boxy na czarnym tle */
  border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}

.c-vfm__icon svg{
  width: 18px;
  height: 18px;
  display: block;
}

.c-vfm__text{
  margin: 0;
}

/* Mobile */
@media (max-width: 980px){
  .c-vfm__top{
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
