/*
Theme Name: Turbine 2026
Theme URI: https://turbine.ai/
Author: @nikola
Description: Artand& Board Studio
Version: 0.1.0
*/

/* --------------------------------------------------------------
   Fonts
-------------------------------------------------------------- */

@font-face {
    font-family: "Pharma";
    src: url("font/Pharma-Regular.woff2") format("woff2"),
         url("font/Pharma-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* --------------------------------------------------------------
   Base
-------------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;

    background: #0F0A26;
    color: #f7f5ff;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover{
    cursor: pointer
} 
button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}


/* --------------------------------------------------------------
   Layout
-------------------------------------------------------------- */

.site {
    width: 100%;
    min-height: 100vh;
    overflow-x: clip;
}

.site-main {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;

    padding-left: 15px;
    padding-right: 15px;
}

.content-container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
  
    box-sizing: border-box;
}


/* --------------------------------------------------------------
   Header
-------------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: 100px;

    background: transparent;
      transition: background-color .25s ease;
}

.site-header.is-scrolled {
    background-color: rgb(15, 9, 37);
}

body.admin-bar .site-header {
    top: 32px;
}

.site-header .container {
    height: 100%;
}

.header__inner {
    display: flex;
    align-items: center;

    width: auto;
    height: 100%;

    margin-left: calc(16.6666667% - 15px);
    margin-right: calc(16.6666667% - 15px);
}

.header__logo {
    display: block;
    flex: 0 0 auto;

    width: 191px;
    height: 47px;
}

.header__logo img {
    display: block;

    width: 191px;
    height: 47px;
}

.header__nav {
    margin-left: auto;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.header__menu li {
    margin: 0;
    padding: 0;
}

.header__menu li:not(:last-child) a {
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
   
    letter-spacing: 0;

    color: #f7f5ff;

    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
}
.header__menu li:not(:last-child) a:hover,
.header__menu li:not(:last-child).current-menu-item  a
{
    color: #33C7CC;
}

.header__menu li.trail_menu a:hover  {
    color: #9E5BA6
}

.header__menu li:last-child {
    
}

.header__menu li:last-child a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 134px;
    height: 36px;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
   
    letter-spacing: 0;

    color: #0f0a26;
    background: #33c7cc;

    white-space: nowrap;
    text-decoration: none;


    border-radius: 10px;
}

.header__menu li:last-child a:hover {
    background-color: #279093;
    
}

/* --------------------------------------------------------------
   Hero - common
-------------------------------------------------------------- */

.hero {
    position: relative;

    width: 100%;
    height: 700px;

    overflow: hidden;
}

.hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;

    width: 100%;
    height: 700px;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    max-width: none;
    height: 700px;

    object-fit: cover;
    object-position: center center;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    max-width: none;
    height: 700px;

    object-fit: cover;
}

.hero__interactive {
    position: absolute;
    top: 130px;
    left: auto;
    right: -120px;
    width: 100%;
    max-width: 850px;
    height: auto;
    pointer-events: none;

    animation: hero-cell-float-in 2.5s ease-out both;
}

@keyframes hero-cell-float-in {
    0% {
        opacity: 0.8;
        transform: translate(50px, 0px) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

.hero > .container {
    position: relative;
    z-index: 2;

    height: 700px;
}

.hero__content {
    position: relative;
    z-index: 2;
}


/* --------------------------------------------------------------
   Hero - Home
-------------------------------------------------------------- */

.hero--home .hero__content {
    width: 618px;
    height: 700px;

    margin-left: calc(16.6666667% - 15px);
}

.hero--home .hero__title {
    position: absolute;
    top: 243px;
    left: 0;

    width: 618px;
    margin: 0;

    font-family: "Pharma", sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: normal;

    color: #f7f5ff;

    text-transform: uppercase;
}

.hero--home .hero__text {
    position: absolute;
    top: 322px;
    left: 0;

    width: 535px;
    margin: 0;

    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;

    color: #f7f5ff;
}

.hero--home .hero__button {
    position: absolute;
    top: 434px;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-left: 60px;
    padding-right: 60px;
    height: 60px;

    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;

    color: #0f0a26;
    background: #33c7cc;

    border-radius: 10px;

    text-decoration: none;
}
.hero--home .hero__button:hover {
    background-color: #279093;
    
}


/* --------------------------------------------------------------
   Footer
-------------------------------------------------------------- */

.site-footer {
    position: relative;
    width: 100%;

  

    overflow: hidden;
}

.site-footer::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    width: 100%;

    background-image: url("assets/images/footer_patter.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;

    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;

    padding-top: 60px;
    padding-bottom: 50px;
}


/* --------------------------------------------------------------
   Footer top
-------------------------------------------------------------- */

.footer__top {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "logo nav"
        ". contact";

    column-gap: 60px;
    row-gap: 105px;

    margin-left: calc(16.6666667% - 15px);
    margin-right: calc(16.6666667% - 15px);
}


/* Logo */

.footer__logo {
    grid-area: logo;

    display: block;
    align-self: start;
}

.footer__logo img {
    display: block;

    width: 191px;
    height: auto;
}


/* Navigation */

.footer__nav {
    grid-area: nav;

    justify-self: end;
    align-self: center;
}

.footer__menu {
    display: flex;
    align-items: center;
    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer__menu li {
    margin: 0;
    padding: 0;
}

.footer__menu a {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;

    color: #f7f5ff;

    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
}
.footer__menu a:hover {
    color: #33C7CC
}
.footer__menu li.trail_menu a:hover {
    color: #9E5BA6
}

/* Contact button */

.footer__contact {
    grid-area: contact;

    justify-self: end;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0px 50px;
    height: 50px;

    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;

    color: #f7f5ff;
    background: transparent;

    border: 1px solid #33c7cc;
    border-radius: 10px;

    white-space: nowrap;
    text-decoration: none;
}
.footer__contact:hover {
    background-color: #279093;color: #0f0a26
}

/* --------------------------------------------------------------
   Footer bottom
-------------------------------------------------------------- */

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 40px;
    margin-left: calc(16.6666667% - 15px);
    margin-right: calc(16.6666667% - 15px);
}


/* Copyright */

.footer__copyright {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;

    color: #425266;
}


/* Social icons */

.footer__socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer__socials a:hover {
    opacity: 0.6
}
.footer__socials img {
    display: block;

    width: 34px;
    height: auto;
}

.trail-bracket {
    color: #9E5BA6;
}


/* --------------------------------------------------------------
   Footer CTA
-------------------------------------------------------------- */

.footer-cta {
    width: 100%;

    padding-top: 65px;
    padding-bottom: 65px;

 
      background: linear-gradient(
        90deg,
        #141e36 0%,
        rgba(51, 199, 204, 0.4) 100%
    );

}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 60px;
}

.footer-cta__text {
    max-width: 740px;

    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.35;

    color: #f7f5ff;

    text-align: right;
}

.footer-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    padding: 0 40px;
height: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;

    color: #110c22;
    background: #31bec5;

    border-radius: 10px;

    white-space: nowrap;
    text-decoration: none;
}

.footer-cta__button:hover {
   background-color: #279093
    
    
}

/* --------------------------------------------------------------
   Home sections
-------------------------------------------------------------- */

.home-section {
    position: relative;
    width: 100%;
 
}

.home-content {
    margin-left: calc(16.6666667% - 15px);
    margin-right: calc(16.6666667% - 15px);
}

.home-section__title {
    margin: 0;
    font-family: "Pharma", sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.05;
    color: #33C7CC;
    text-align: center;
    text-transform: uppercase;
}

.home-section__intro {
    
    margin: 22px auto 0;
    font-size: 20px;

    line-height: 1.6;
 
    text-align: center;
}

.turbine-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 45px;
    height: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 10px;
}

.turbine-button--outline {
    color: #F7F5FF;
    background: transparent;
    border: 1px solid #33C7CC;
}
.turbine-button--outline:hover {
    background-color: #279093;
    border-color: #279093;
    color: #0f0a26
   
}

/* --------------------------------------------------------------
   Partner logos
-------------------------------------------------------------- */

.home-logo-strip {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  background: rgba(20, 30, 54, 1);
    position: relative;
    overflow: hidden;
}

.home-logo-strip .home-content {
    position: relative;
}

.home-logo-strip .home-content::before,
.home-logo-strip .home-content::after {
    content: "";
    position: absolute;
    top: -40px;
    bottom: -40px;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.home-logo-strip .home-content::before {
    left: 0;
    background: linear-gradient(
        90deg,
        rgba(20, 30, 54, 1) 0%,
        rgba(20, 30, 54, 0) 100%
    );
}

.home-logo-strip .home-content::after {
    right: 0;
    background: linear-gradient(
        270deg,
        rgba(20, 30, 54, 1) 0%,
        rgba(20, 30, 54, 0) 100%
    );
}

.home-logo-strip__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}


.home-logo-strip__swiper {
    width: 100%;
    overflow: hidden;
}

.home-logo-strip__swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 36px;
    width: max-content;
    max-width: none;
    will-change: transform;
}

.home-logo-strip__swiper .home-logo-strip__item.swiper-slide {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: auto !important;
    margin-right: 0 !important;
}

.home-logo-strip__image {
    display: block;
    width: auto;
    height: auto;
    max-height: 70px;
}




/* --------------------------------------------------------------
   Key benefits
-------------------------------------------------------------- */

.home-benefits {
    padding-top: 95px;
    padding-bottom:50px;
}

.home-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 80px;
}

.home-benefit {
    position: relative;
    padding-left: 34px;
    padding-right: 34px;
    text-align: center;
}

.home-benefit + .home-benefit {
    border-left: 1px solid #1C485C;
}

.home-benefit__value {
    
    font-family: "Pharma", sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    color: #33C7CC;
     text-align: center;
}



.home-benefit__value--pharma {
    font-family: "Pharma", sans-serif;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 30px;
}

.home-benefit__value--poppins {
    font-family: "Poppins", sans-serif;
    font-size: 142px;
    font-weight: 275;
    line-height: 0.30;
    margin-bottom: 57px;
}



.home-benefit__title {
  
    margin: 0 0 20px;
   
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #F7F5FF;
    text-transform: uppercase;
}


/* --------------------------------------------------------------
   Turbine in action
-------------------------------------------------------------- */

.home-action {
    position: relative;
    padding-top: 90px;
    padding-bottom: 120px;
    overflow: hidden;
}

/* Ennél a blokknál ne szűkítse össze a globális home-content margin */
.home-action .home-content {
    margin-left: 0;
    margin-right: 0;
}


/* --------------------------------------------------------------
   Video / placeholder
-------------------------------------------------------------- */

.home-action__media {
    position: relative;

    width: 100%;
    max-width: 1060px;

    margin: 75px auto 0;

    overflow: visible;
    isolation: isolate;
}


/* --------------------------------------------------------------
   Decorative backgrounds
-------------------------------------------------------------- */

.home-action__media::before,
.home-action__media::after {
    content: "";

    position: absolute;
    top: 50%;

    width: 485px;
    height: calc(100% + 160px);

    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;

    transform: translateY(-50%);

    pointer-events: none;
    z-index: 0;
}

/*
485px teljes SVG szélesség
430px kilóg a videó mellé
= 55px kerül a videó mögé
*/

.home-action__media::before {
    left: -400px;

    background-image: url("assets/images/video_bg_left.svg");
    background-position: right center;
}

.home-action__media::after {
    right: -430px;

    background-image: url("assets/images/video_bg_right.svg");
    background-position: left center;
}


/* --------------------------------------------------------------
   Media foreground
-------------------------------------------------------------- */

.home-action__poster,
.home-action__video,
.home-action__youtube-placeholder,
.home-action__hosted-wrap,
.home-action__embed,
.home-action__placeholder-wrap {
    position: relative;
    z-index: 1;
}

.home-action__poster,
.home-action__video {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 10px;
}


/* --------------------------------------------------------------
   YouTube placeholder
-------------------------------------------------------------- */

.home-action__youtube-placeholder {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;
}


/* --------------------------------------------------------------
   Hosted video / placeholder
-------------------------------------------------------------- */

.home-action__hosted-wrap,
.home-action__placeholder-wrap {
    position: relative;
}

.home-action__hosted-play {
    position: absolute;
    inset: 0;

    width: 100%;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;

    z-index: 2;
}


/* --------------------------------------------------------------
   Play button
-------------------------------------------------------------- */

.home-action__play {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 148px;
    height: 148px;

    background: rgba(15, 10, 38, 0.6);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
    z-index: 3;
}

.home-action__play::after {
    content: "";

    position: absolute;
    top: 41px;
    left: 51px;

    width: 54px;
    height: 65px;

    background-image: url("assets/images/play.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


/* --------------------------------------------------------------
   YouTube embed
-------------------------------------------------------------- */

.home-action__embed {
    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 8px;
}

.home-action__embed iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}

/* --------------------------------------------------------------
   Complete system
-------------------------------------------------------------- */

.home-system {
    padding-top: 110px;
    padding-bottom: 180px;
}

.home-system__title {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.home-system__items {
    display: flex;
    flex-direction: column;
    gap: 56px;
    max-width: 1060px;
    margin: 90px auto 0;
}

.home-system__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 110px;
}

.home-system__item:nth-child(even) .home-system__media {
    order: 2;
}

.home-system__item:nth-child(even) .home-system__content {
    order: 1;
}

.home-system__media {
    overflow: hidden;
    border-radius: 10px;
}

.home-system__video {
    display: block;
    width: 100%;
    height: auto;
}

.home-system__item-title {
    margin: 0 0 25px;
    font-family: "Pharma", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.05;
    color: #31bec5;
    text-transform: uppercase;
}

.home-system__text {
    margin-bottom: 35px;
    max-width: 440px
    
}


/* --------------------------------------------------------------
   Discovery stages
-------------------------------------------------------------- */

.home-stages {
 position: relative;
    padding-top: 75px;
    padding-bottom: 110px;
    overflow: visible;
  
}

.home-stages::before {
    content: "";

    position: absolute;
    top: -180px;
    left: 50%;

    width: min(1600px, 96vw);
    height: calc(100% + 360px);

    background-image: url("assets/images/discovery_hatter.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;

    transform: translateX(-50%);

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 18%,
        #000 82%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 18%,
        #000 82%,
        transparent 100%
    );

    pointer-events: none;
    z-index: 0;
}

.home-stages .container {
    position: relative;
    z-index: 1;
}

.home-stages__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
}

.home-stage {
    padding:50px 35px;
    background: rgba(15, 10, 38, 0.3);
  backdrop-filter: blur(10px);
    text-align: center;
    border-radius: 10px;
      border: 1px solid #33C7CC
}

.home-stage__category {
    margin-bottom: 35px;
 
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #f7f5ff;
    text-transform: uppercase;
}

.home-stage__title {
    margin: 0 0 20px;
    font-family: "Pharma", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    color: #33C7CC;
    text-transform: uppercase;
}

.home-stage__text {

}


/* --------------------------------------------------------------
   Featured publications
-------------------------------------------------------------- */

.home-publications {
    padding-top: 140px;
    padding-bottom: 115px;
}

.home-publications__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
    margin-top: 100px;
}

.home-publication {
    overflow: hidden;
   background: #191833;
    border-radius: 10px;
}

.home-publication__media {
    display: block;
    width: 100%;
    height: 280px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    overflow: hidden;
}


.home-publication__content {
    padding: 20px 25px 30px;
   
    
}

.home-publication__image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 280px;
}


.home-publication__date {
    margin-bottom: 14px;
   
}


.home-publication__text {
    line-height: 1.55;
}

.home-publication__excerpt {
    display: inline;
}

.home-publication__link {
    color: #33C7CC;
    text-decoration: none;
}
/* --------------------------------------------------------------
   Testimonial carousel
-------------------------------------------------------------- */

.testimonial-carousel {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 150px;
    
}

.testimonial-carousel__swiper {
    overflow: hidden;
}

.testimonial-carousel__slide {
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
}

.testimonial-carousel__quote {
    max-width: 860px;
    margin: 0 auto;
   
    font-size: 30px;
 
    font-style: italic;
    line-height: 1.4;
   
}

.testimonial-carousel__quote::before,
.testimonial-carousel__quote::after {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.testimonial-carousel__quote::before {
    width: 32px;
    height: 21px;
    margin-right: 6px;

    background-image: url("assets/images/quote_open.svg");
}

.testimonial-carousel__quote::after {
    width: 32px;
    height: 21px;
    margin-left: 6px;

    background-image: url("assets/images/quote_close.svg");
}

.testimonial-carousel__author {
    margin-top: 35px;
    
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    color: #33C7CC;
}

.testimonial-carousel__role {
    margin-top: 15px;
   
    font-size: 20px;
   
    line-height: 1;
    color: #33C7CC;
}

.testimonial-carousel__pagination.swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.testimonial-carousel__pagination .swiper-pagination-bullet {
    width: 4px;
    height: 26px;
    margin: 0 !important;
    border-radius: 10px;
    background: #216979;
    opacity: 1;
}

.testimonial-carousel__pagination .swiper-pagination-bullet-active {
    background: #33C7CC;
}


.gform_body {
    color: #0F0A26!important;
    font-size: 14px!important
}

.gform-theme--framework input[type=text] {
    color: #0F0A26!important;
}


.contact_categories .gfield_radio {
  display: flex !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  flex-direction: row !important;
  gap: 0 !important
}
.contact_categories .gfield_radio .gchioce {
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  grid-auto-flow: unset !important;
  grid-template: none !important;
  grid-column-gap: 0 !important;
  grid-row-gap: 0 !important;
  /* Ha Gravity Forms inline CSS változókat is használ (pl. minmax), nullázd: */
  --gf-ctrl-choice-size: auto !important;
}
.gform_required_legend, .gfield_required_text {
  display: none !important
}
.gfield_required_asterisk {
  display: none !important
}
.gform-theme--foundation .gform_fields {
  row-gap: 20px !important
}
.gform_validation_errors {
  display: none !important
}
.gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type="hidden"])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus {
  --gf-local-border-color: transparent !important;
  --gf-local-outline-color: transparent !important;
}
.gform-theme--framework ::placeholder {
  color: #A9A9A9 !important;
}
html .gform_button:hover {
  background-color: #0F0A26 !important;
  color: #fff !important
}

.gform_body [type="text"], .gform_body input[type="email"], .gform_body textarea {
  padding: 0 20px !important;
  margin-bottom: 0px !important;
  background-color: transparent !important;
  color: #0F0A26 !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-radius: 10px !important;
  border-color: #0F0A26 !important;
  height: 40px !important;
  width: 100% !important;
  font-size: 12px !important;
}

.gform_body textarea {
  width: 100% !important;
  height: 166px !important;
  padding-top: 10px !important;
     }
.gform_body .ginput_container_consent {
  position: relative;
  align-items: center !important;
}
.gform_body .ginput_container_consent input[type="checkbox"] {
  height: 30px !important;
  width: 30px !important;
  border: 1px solid #0F0A26 !important;
  border-radius: 10px !important;
  background-color: transparent !important;
}
.gform_body .ginput_container_consent input[type="checkbox"]::before {
  content: "" !important;
  display: inline-block !important;
  height: 20px !important;
  width: 20px !important;
  background-color: #0F0A26 !important;
  border-radius: 6px !important;
}
.gform_body .gfield_consent_label {
  color: #0F0A26 !important;
  font-size: 10px !important;
  line-height: 15px !important;
}
.gform_button {
    background-color: #0F0A26!important;
    border-radius: 10px!important;
    color: #F7F5FF!important;
    height: 40px!important;
    padding: 0 60px!important;
    font-size: 14px!important
}
.gform-footer {
padding-top: 20px!important
}
.gform-theme--foundation .gform_fields {
    -moz-column-gap: 30px!important;
    column-gap: 30px!important;
  }
/* --------------------------------------------------------------
   Footer-adjacent Contact us panel (shared by header and footer)
-------------------------------------------------------------- */
.turbine-contact-panel {
 display: none;
    grid-template-rows: 0fr;
    visibility: hidden;
    width: 100%;
    background: #F8F8F8;
    color: #0f0a26;
    transition: grid-template-rows 1s ease, visibility 0s linear 1s;
     overflow: clip;
}

.turbine-contact-panel.is-rendered {
    display: grid;
}

.turbine-contact-panel.is-open {
  
    grid-template-rows: 1fr;
    visibility: visible;
    transition: grid-template-rows 1s ease, visibility 0s;
}


.turbine-contact-panel__clip {
    min-height: 0;
    overflow: hidden;
}

.turbine-contact-panel__content {
    padding-top: clamp(45px, 5vw, 85px);
    padding-bottom: clamp(55px, 6vw, 100px);
}

.turbine-contact-panel__heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(32px, 4vw, 60px);
}

.turbine-contact-panel__heading {
    margin: 0;
    font-family: "Pharma", sans-serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
    color: #0f0a26;
}

.turbine-contact-panel__close {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid #0f0a26;
    border-radius: 10px;
    background: transparent;
    color: #0f0a26;
}

.turbine-contact-panel__close img {
    width: 20px;
    height: 20px;
}

.turbine-contact-panel__close:focus-visible {
    outline: 2px solid #16868c;
    outline-offset: 3px;
}

.turbine-contact-panel__form {
    width: 100%;
}

.turbine-contact-panel__form .gform_wrapper {
    max-width: 100%;
}

.turbine-contact-p.turbine-notice__buttonanel__setup {
    margin: 0;
    font-size: 15px;
    color: #0f0a26;
}

html.turbine-contact-scrolling,
html.turbine-contact-scrolling body {
    overflow-anchor: none;
}

/* --------------------------------------------------------------
   Notification bar (global; responsive rules in /responsive.css)
-------------------------------------------------------------- */
body.turbine-has-notice .site {
    padding-top: 70px;
}

body.turbine-has-notice .site-header {
    top: 70px;
    transition: top .25s ease, background-color .25s ease;
}

body.turbine-has-notice.turbine-notice-hidden .site-header {
    top: 0;
}

body.admin-bar.turbine-has-notice .site-header { top: 102px; }
body.admin-bar.turbine-has-notice.turbine-notice-hidden .site-header { top: 32px; }

.turbine-notice {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 70px;
    background: #ff6666;
    color: #f7f5ff;
    overflow: hidden;
    transition: transform .25s ease, opacity .25s ease;
}

body.admin-bar .turbine-notice { top: 32px; }

body.turbine-notice-hidden .turbine-notice {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.turbine-notice__inner {
    display: flex;
    align-items: center;
    gap: 22px;
    width: 100%;
    height: 100%;
    padding: 0 18px;
}

.turbine-notice__image {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.turbine-notice__viewport {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.turbine-notice__viewport.is-overflowing::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    max-width: 30%;
    background: linear-gradient(to right, rgb(255 102 102 / 0%), #ff6666);
    pointer-events: none;
}

.turbine-notice__track {
    display: flex;
    width: max-content;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #0F0A26;
    white-space: nowrap;
    will-change: auto;
}

.turbine-notice__copy {
    flex: 0 0 auto;
    padding-right: 64px;
}

.turbine-notice__copy--repeat { display: none; }

.turbine-notice__viewport.is-overflowing .turbine-notice__copy--repeat {
    display: block;
}

.turbine-notice__viewport.is-overflowing .turbine-notice__track {
    animation: turbine-notice-marquee var(--turbine-notice-duration, 30s) linear infinite;
    will-change: transform;
}

.turbine-notice:hover .turbine-notice__track,
.turbine-notice:focus-within .turbine-notice__track {
    animation-play-state: paused;
}

@keyframes turbine-notice-marquee {
    to { transform: translate3d(calc(-1 * var(--turbine-notice-distance, 0px)), 0, 0); }
}

.turbine-notice__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 134px;

    height: 36px;
    padding: 0 20px;
    border-radius: 10px;
    background: #0F0A26;
    color: #F7F5FF;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    cursor: pointer
}

.turbine-notice__button:hover {
    background-color: rgba(15, 10, 38, 0.8)
}

.sentenceCase {
    text-transform: none!important
}